1 import FWCore.ParameterSet.Config
as cms
8 mvaClassName =
"ElectronMVAEstimatorRun2"
14 mvaProducerModuleLabel =
"electronMVAValueMapProducer"
17 mvaVariablesFile =
"RecoEgamma/ElectronIdentification/data/ElectronMVAEstimatorRun2Variables.txt"
23 EleMVA_3CategoriesCuts = [
24 "abs(superCluster.eta) < 0.800",
25 "abs(superCluster.eta) >= 0.800 && abs(superCluster.eta) < 1.479",
26 "abs(superCluster.eta) >= 1.479"
29 EleMVA_6CategoriesCuts = [
30 "pt < 10. && abs(superCluster.eta) < 0.800",
31 "pt < 10. && abs(superCluster.eta) >= 0.800 && abs(superCluster.eta) < 1.479",
32 "pt < 10. && abs(superCluster.eta) >= 1.479",
33 "pt >= 10. && abs(superCluster.eta) < 0.800",
34 "pt >= 10. && abs(superCluster.eta) >= 0.800 && abs(superCluster.eta) < 1.479",
35 "pt >= 10. && abs(superCluster.eta) >= 1.479",
44 This is a container class to hold MVA cut values for a n-category MVA
45 as well as the names of the value maps that contain the MVA values computed
46 for all particles in a producer upstream.
48 IMPORTANT: the cuts need to be given in alphabetical order, which must
49 be the order in which they are used by the cut class.
58 self.
mvaValueMapName = mvaProducerModuleLabel +
":" + mvaClassName + mvaTag +
"Values"
65 return [self.
cuts[key]
for key
in keylist]
69 This is a container class to hold MVA cut values for a n-category MVA
70 as well as the names of the value maps that contain the MVA values computed
71 for all particles in a producer upstream.
73 IMPORTANT: the cuts need to be given in alphabetical order, which must
74 be the order in which they are used by the cut class.
83 self.
mvaValueMapName = mvaProducerModuleLabel +
":" + mvaClassName + mvaTag +
"RawValues"
90 return [self.
cuts[key]
for key
in keylist]
98 This function configures the full cms.PSet for a VID ID and returns it.
99 The inputs: an object of the class EleMVA_WP or similar
100 that contains all necessary parameters for this MVA.
104 idName = cms.string( mvaWP.idName ),
106 cms.PSet( cutName = cms.string(cutName),
107 mvaCuts = cms.vstring( mvaWP.getCutStrings() ),
108 mvaValueMapName = cms.InputTag( mvaWP.mvaValueMapName ),
109 mvaCategoriesMapName = cms.InputTag( mvaWP.mvaCategoriesMapName ),
110 needsAdditionalProducts = cms.bool(
True),
111 isIgnored = cms.bool(
False)