Hide keyboard shortcuts

Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1import lsst.pex.config as pexConfig 

2 

3 

4__all__ = ['DowntimeModelConfig'] 

5 

6 

7class DowntimeModelConfig(pexConfig.Config): 

8 """A pex_config configuration class for default seeing model parameters. 

9 """ 

10 efd_columns = pexConfig.ListField(doc="List of data required from EFD", 

11 dtype=str, 

12 default=['scheduled_downtimes', 'unscheduled_downtimes']) 

13 efd_delta_time = pexConfig.Field(doc="Length (delta time) of history to request from the EFD (seconds)", 

14 dtype=float, 

15 default=0) 

16 target_columns = pexConfig.ListField(doc="Names of the keys required in the " 

17 "scheduler target maps (time)", 

18 dtype=str, 

19 default=['time'])