|
97 | 97 | Ending q (1/Å) |
98 | 98 | dq : float |
99 | 99 | bin_width (1/Å)""", |
| 100 | + PDF_PARAMETERS="""g1 : MDAnalysis.core.groups.AtomGroup |
| 101 | + First AtomGroup. |
| 102 | +g2 : MDAnalysis.core.groups.AtomGroup |
| 103 | + Second AtomGroup.""", |
| 104 | + BIN_WIDTH_PARAMETER="""bin_width : float |
| 105 | + Width of the bins (in Å).""", |
| 106 | + RADIAL_CLASS_PARAMETERS="""rmin : float |
| 107 | + Minimal radial coordinate relative to the center of mass of the refgroup for |
| 108 | + evaluation (in Å). |
| 109 | +rmax : float |
| 110 | + Maximal radial coordinate relative to the center of mass of the refgroup for |
| 111 | + evaluation (in Å). |
| 112 | +
|
| 113 | + If ``rmax=None``, the box extension is taken.""", |
| 114 | + BIN_METHOD_PARAMETER="""bin_method : {``"com"``, ``"cog"``, ``"coc"``} |
| 115 | + Method for the position binning. |
| 116 | +
|
| 117 | + The possible options are center of mass (``"com"``), center of geometry (``"cog"``), |
| 118 | + and center of charge (``"coc"``).""", |
| 119 | + GROUPING_PARAMETER="""grouping : {``"atoms"``, ``"residues"``, ``"segments"``, ``"molecules"``, ``"fragments"``} |
| 120 | + Atom grouping for the calculations. |
| 121 | +
|
| 122 | + The possible grouping options are the atom positions (in the case where |
| 123 | + ``grouping="atoms"``) or the center of mass of the specified grouping unit (in the |
| 124 | + case where ``grouping="residues"``, ``"segments"``, ``"molecules"`` or |
| 125 | + ``"fragments"``).""", # noqa: E501 |
100 | 126 | ) |
101 | 127 | """Dictionary containing the keys and the actual docstring used by :func:`scatterkit.lib.util.render_docs`. |
102 | 128 |
|
|
0 commit comments