Source code for lsst.sims.ocs.configuration.proposal.selection_list

import lsst.pex.config as pexConfig

__all__ = ["SelectionList"]

[docs]class SelectionList(pexConfig.Config): """Configuration for a time range. """ indexes = pexConfig.ListField('The list of selection indexes.', int)
[docs] def setDefaults(self): """Default specification for a time range. """ self.indexes = []