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 132 of file MetAnalysisConfig.py.
135 setMuonJetEMScale = None,
141 """Create a met analysis algorithm config
143 Note that defining a jet container is mandatory, but all other input
144 containers are optional.
146 Selections on each container can also be defined
149 useFJVT -- Use FJVT decision for the calculation
150 treatPUJets -- Treat pile-up jets in the MET significance calculation
151 setMuonJetEMScale -- Use consituent scale and subtract muon eloss for jets overlapping muons
154 config = MetAnalysisConfig (containerName)
155 config.setOptionValue (
'useFJVT', useFJVT)
156 config.setOptionValue (
'treatPUJets', treatPUJets)
157 config.setOptionValue (
'setMuonJetEMScale', setMuonJetEMScale)
158 config.setOptionValue (
'jets', jets)
159 config.setOptionValue (
'electrons', electrons)
160 config.setOptionValue (
'muons', muons)
161 config.setOptionValue (
'photons', photons)
162 config.setOptionValue (
'taus', taus)