667 def __init__(self):
668 super(EventCutFlowBlock, self).__init__()
669 self.addOption('selectionName', '', type=str,
670 noneAction='error',
671 info="the name of the event selection to generate cutflow histograms for. "
672 "If left blank, all selections on EventInfo will be used.")
673 self.addOption('customSelections', [], type=None,
674 info="explicit list of selection decorations to use for the cutflow. "
675 "If provided, takes precedence over selectionName.")
676 self.addOption('cutFlowHistograms', True, type=bool,
677 info="whether to generate cutflow histograms for the selection cuts.")
678 self.addOption ('streamName', None, type=str,
679 info="name of the output stream to save the cut bookkeeper in.")
680