872 *, postfix=None, selectionName, customSelections=None):
873 """Create an event-level cutflow config
874
875 Keyword arguments:
876 containerName -- name of the container
877 postfix -- a postfix to apply to decorations and algorithm names.
878 selectionName -- the name of the selection to do the cutflow for
879 customSelections -- a list of decorations to use in the cutflow, to override the retrieval of all decorations
880 """
881
882 config = EventCutFlowBlock()
883 config.setOptionValue('containerName', containerName)
884 config.setOptionValue('selectionName', selectionName)
885 config.setOptionValue('postfix', postfix)
886 config.setOptionValue('customSelections', customSelections)
887 seq.append(config)