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