Create a met analysis algorithm config
Note that defining a jet container is mandatory, but all other input
containers are optional.
Selections on each container can also be defined
Keyword arguments:
useFJVT -- Use FJVT decision for the calculation
treatPUJets -- Treat pile-up jets in the MET significance calculation
setMuonJetEMScale -- Use consituent scale and subtract muon eloss for jets overlapping muons
Definition at line 130 of file MetAnalysisConfig.py.
133 setMuonJetEMScale = None,
139 """Create a met analysis algorithm config
141 Note that defining a jet container is mandatory, but all other input
142 containers are optional.
144 Selections on each container can also be defined
147 useFJVT -- Use FJVT decision for the calculation
148 treatPUJets -- Treat pile-up jets in the MET significance calculation
149 setMuonJetEMScale -- Use consituent scale and subtract muon eloss for jets overlapping muons
152 config = MetAnalysisConfig (containerName)
153 config.setOptionValue (
'useFJVT', useFJVT)
154 config.setOptionValue (
'treatPUJets', treatPUJets)
155 config.setOptionValue (
'setMuonJetEMScale', setMuonJetEMScale)
156 config.setOptionValue (
'jets', jets)
157 config.setOptionValue (
'electrons', electrons)
158 config.setOptionValue (
'muons', muons)
159 config.setOptionValue (
'photons', photons)
160 config.setOptionValue (
'taus', taus)