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__ = ['CloudModelConfig'] 

5 

6 

7class CloudModelConfig(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=['cloud']) 

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 for (altitude, azimuth) from the " 

17 "scheduler target maps", 

18 dtype=str, 

19 default=['altitude', 'azimuth'])