887 *, postfix=None, selectionName, customSelections=None):
888 """Create an event-level cutflow config
889
890 Keyword arguments:
891 containerName -- name of the container
892 postfix -- a postfix to apply to decorations and algorithm names.
893 selectionName -- the name of the selection to do the cutflow for
894 customSelections -- a list of decorations to use in the cutflow, to override the retrieval of all decorations
895 """
896
897 config = EventCutFlowBlock()
898 config.setOptionValue('containerName', containerName)
899 config.setOptionValue('selectionName', selectionName)
900 config.setOptionValue('postfix', postfix)
901 config.setOptionValue('customSelections', customSelections)
902 seq.append(config)