File tree Expand file tree Collapse file tree
package/MDAnalysis/analysis Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -174,6 +174,7 @@ def _get_aggregator(self):
174174@dataclass (frozen = True )
175175class RunConfig :
176176 """Stores resolved `run()` configuration with normalized defaults."""
177+
177178 start : Optional [int ] = None
178179 stop : Optional [int ] = None
179180 step : Optional [int ] = None
@@ -188,6 +189,7 @@ class RunConfig:
188189class RunState :
189190 """Stores runtime-generated attributes that can be used
190191 during the analysis."""
192+
191193 slicer : Optional [Union [slice , np .ndarray ]] = None
192194 n_frames : Optional [int ] = None
193195 computation_groups : Optional [List [np .ndarray ]] = None
@@ -975,7 +977,7 @@ def _get_aggregator(self) -> ResultsGroup:
975977 .. versionadded:: 2.8.0
976978 """
977979 return ResultsGroup (lookup = None )
978-
980+
979981 @property
980982 def run_config (self ) -> RunConfig :
981983 """Stores normalized arguments for `run()`.
You can’t perform that action at this time.
0 commit comments