Coverage for python/lsst/sims/featureScheduler/schedulers/filter_scheduler.py : 47%

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
"""A simple way to schedule what filter to load """ pass
pass
""" Returns ------- list of strings for the filters that should be loaded """ pass
self.illum_limit_IR = int_rounded(illum_limit)
if int_rounded(conditions.moonPhase) > self.illum_limit_IR: result = ['g', 'r', 'i', 'z', 'y'] else: result = ['u', 'g', 'r', 'i', 'y'] return result |