Create an event-level cutflow config
Keyword arguments:
containerName -- name of the container
postfix -- a postfix to apply to decorations and algorithm names.
selectionName -- the name of the selection to do the cutflow for
customSelections -- a list of decorations to use in the cutflow, to override the retrieval of all decorations
Definition at line 829 of file AsgAnalysisConfig.py.
830 *, postfix=None, selectionName, customSelections=None):
831 """Create an event-level cutflow config
834 containerName -- name of the container
835 postfix -- a postfix to apply to decorations and algorithm names.
836 selectionName -- the name of the selection to do the cutflow for
837 customSelections -- a list of decorations to use in the cutflow, to override the retrieval of all decorations
840 config = EventCutFlowBlock()
841 config.setOptionValue(
'containerName', containerName)
842 config.setOptionValue(
'selectionName', selectionName)
843 config.setOptionValue(
'postfix', postfix)
844 config.setOptionValue(
'customSelections', customSelections)