Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Classes | Functions
python.AsgAnalysisConfig Namespace Reference

Classes

class  CommonServicesConfig
 
class  EventCutFlowBlock
 
class  GeneratorAnalysisBlock
 
class  IFFLeptonDecorationBlock
 
class  IOStatsBlock
 
class  MCTCLeptonDecorationBlock
 
class  ObjectCutFlowBlock
 
class  OutputThinningBlock
 
class  PerEventSFBlock
 
class  PileupReweightingBlock
 
class  PtEtaSelectionBlock
 
class  SelectionDecorationBlock
 
class  SystematicsCategories
 

Functions

def makeEventCutFlowConfig (seq, containerName, *postfix=None, selectionName, customSelections=None)
 

Function Documentation

◆ makeEventCutFlowConfig()

def python.AsgAnalysisConfig.makeEventCutFlowConfig (   seq,
  containerName,
postfix = None,
  selectionName,
  customSelections = None 
)
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 659 of file AsgAnalysisConfig.py.

659 def makeEventCutFlowConfig(seq, containerName,
660  *, postfix=None, selectionName, customSelections=None):
661  """Create an event-level cutflow config
662 
663  Keyword arguments:
664  containerName -- name of the container
665  postfix -- a postfix to apply to decorations and algorithm names.
666  selectionName -- the name of the selection to do the cutflow for
667  customSelections -- a list of decorations to use in the cutflow, to override the retrieval of all decorations
668  """
669 
670  config = EventCutFlowBlock(containerName, selectionName)
671  config.setOptionValue('postfix', postfix)
672  config.setOptionValue('customSelections', customSelections)
673  seq.append(config)
python.AsgAnalysisConfig.makeEventCutFlowConfig
def makeEventCutFlowConfig(seq, containerName, *postfix=None, selectionName, customSelections=None)
Definition: AsgAnalysisConfig.py:659