Create tau calibration analysis algorithms
This makes all the algorithms that need to be run first befor
all working point specific algorithms and that can be shared
between the working points.
Keyword arguments:
postfix -- a postfix to apply to decorations and algorithm
names. this is mostly used/needed when using this
sequence with multiple working points to ensure all
names are unique.
rerunTruthMatching -- Whether or not to rerun truth matching
Definition at line 301 of file TauAnalysisConfig.py.
302 postfix = None, rerunTruthMatching = None):
303 """Create tau calibration analysis algorithms
305 This makes all the algorithms that need to be run first befor
306 all working point specific algorithms and that can be shared
307 between the working points.
310 postfix -- a postfix to apply to decorations and algorithm
311 names. this is mostly used/needed when using this
312 sequence with multiple working points to ensure all
314 rerunTruthMatching -- Whether or not to rerun truth matching
317 config = TauCalibrationConfig (containerName)
318 config.setOptionValue (
'inputContainer', inputContainer)
319 if postfix
is not None :
320 config.setOptionValue (
'postfix', postfix)
321 if rerunTruthMatching
is not None :
322 config.setOptionValue (
'rerunTruthMatching', rerunTruthMatching)