Coverage for python/lsst/sims/maf/slicers/hourglassSlicer.py : 62%

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
"""Slicer to make the filter hourglass plots """
# Inherits from UniSlicer, so nslice=1 and only one 'slice'. super(HourglassSlicer,self).__init__(verbose=verbose, badval=badval) self.columnsNeeded=[] self.slicerName='HourglassSlicer' self.plotFuncs = [HourglassPlot,]
""" Override base write method: we don't want to save hourglass metric data.
The data volume is too large. """ pass
""" Override base read method to 'pass': we don't save or read hourglass metric data.
The data volume is too large. """ pass |