Create a basic event cleaning analysis algorithm sequence
Keyword arguments:
runPrimaryVertexSelection -- whether to run primary vertex selection
runEventCleaning -- whether to run event cleaning
runGRL -- whether to run GRL selection
userGRLFiles -- a list of GRL files to select data from
GRLDict -- a dictionary of GRL files to determine decoration names
noFilter -- whether to apply event decoration or not
Definition at line 114 of file EventCleaningConfig.py.
115 runPrimaryVertexSelection = None,
116 runEventCleaning = None,
122 """Create a basic event cleaning analysis algorithm sequence
125 runPrimaryVertexSelection -- whether to run primary vertex selection
126 runEventCleaning -- whether to run event cleaning
127 runGRL -- whether to run GRL selection
128 userGRLFiles -- a list of GRL files to select data from
129 GRLDict -- a dictionary of GRL files to determine decoration names
130 noFilter -- whether to apply event decoration or not
133 config = EventCleaningBlock ()
134 config.setOptionValue (
'runPrimaryVertexSelection', runPrimaryVertexSelection)
135 config.setOptionValue (
'runEventCleaning', runEventCleaning)
136 config.setOptionValue (
'runGRL', runGRL)
137 config.setOptionValue (
'userGRLFiles', userGRLFiles)
138 config.setOptionValue (
'GRLDict', GRLDict)
139 config.setOptionValue (
'noFilter', noFilter)