File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
python/lsst/ts/fbs/utils/auxtel Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -173,6 +173,7 @@ def get_scheduler(
173
173
spec_detailers : typing .List [BaseDetailer ],
174
174
image_detailers : typing .List [BaseDetailer ],
175
175
avoid_wind : bool = True ,
176
+ cwfs_time_gap : float = 120.0 ,
176
177
) -> typing .Tuple [int , CoreScheduler ]:
177
178
"""Construct feature based scheduler for spectroscopic survey with
178
179
image survey in the background (with lower priority).
@@ -196,6 +197,11 @@ def get_scheduler(
196
197
List of Detailers used for spectroscopic survey.
197
198
image_detailers : `list` of `BaseDetailer`
198
199
List of Detailers used for image survey.
200
+ avoid_wind : `bool`
201
+ If True, include AvoidDirectWind basis function in spectroscopic
202
+ survey.
203
+ cwfs_time_gap : `int`
204
+ Time gap in minutes for cwfs survey.
199
205
200
206
Returns
201
207
-------
@@ -214,7 +220,7 @@ def get_scheduler(
214
220
cwfs_survey : typing .List [BaseSurvey ] = [
215
221
generate_cwfs_survey (
216
222
nside = nside ,
217
- time_gap_min = 120.0 ,
223
+ time_gap_min = cwfs_time_gap ,
218
224
wind_speed_maximum = wind_speed_maximum ,
219
225
),
220
226
]
You can’t perform that action at this time.
0 commit comments