ATLAS Offline Software
Public Member Functions | List of all members
python.EventSelectionConfig.EventSelectionMergerConfig Class Reference
Inheritance diagram for python.EventSelectionConfig.EventSelectionMergerConfig:
Collaboration diagram for python.EventSelectionConfig.EventSelectionMergerConfig:

Public Member Functions

def __init__ (self)
 
def makeAlgs (self, config)
 

Detailed Description

ConfigBlock for merging the output of various selection streams

Definition at line 6 of file EventSelectionConfig.py.

Constructor & Destructor Documentation

◆ __init__()

def python.EventSelectionConfig.EventSelectionMergerConfig.__init__ (   self)

Definition at line 9 of file EventSelectionConfig.py.

9  def __init__(self):
10  super(EventSelectionMergerConfig, self).__init__()
11  self.addOption('selections', [], type=list,
12  info="the selection decisions (list of strings) to unify into a "
13  "final decision (internally: selection_1 || selection_2 || ...). "
14  "The default is [] (empty list).")
15  self.addOption('noFilter', False, type=bool,
16  info="do not apply an event filter. The default is False, i.e. "
17  "remove events not passing the full list of selection cuts.")
18 

Member Function Documentation

◆ makeAlgs()

def python.EventSelectionConfig.EventSelectionMergerConfig.makeAlgs (   self,
  config 
)

Definition at line 19 of file EventSelectionConfig.py.

19  def makeAlgs(self, config):
20  alg = config.createAlgorithm('CP::SaveFilterAlg', 'EventSelectionMerger')
21  alg.FilterDescription = 'events passing at least one EventSelection algorithm'
22  alg.eventDecisionOutputDecoration = 'ignore_anySelection_%SYS%'
23  alg.selection = '||'.join([sel+',as_char' for sel in self.selections if sel])
24  alg.noFilter = self.noFilter
25  alg.selectionName = 'pass_anySelection_%SYS%'
26  alg.decorationName = 'ntuplepass_anySelection_%SYS%'
27 

The documentation for this class was generated from the following file:
TCS::join
std::string join(const std::vector< std::string > &v, const char c=',')
Definition: Trigger/TrigT1/L1Topo/L1TopoCommon/Root/StringUtils.cxx:10
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18