CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Classes | Public Member Functions | Private Member Functions | Private Attributes
ElectronMVAEstimator Class Reference

#include <ElectronMVAEstimator.h>

Classes

struct  Configuration
 

Public Member Functions

 ElectronMVAEstimator ()
 
 ElectronMVAEstimator (std::string fileName)
 
 ElectronMVAEstimator (const Configuration &)
 
double mva (const reco::GsfElectron &myElectron, int nvertices=0) const
 
 ~ElectronMVAEstimator ()
 

Private Member Functions

void bindVariables (float vars[18]) const
 

Private Attributes

Float_t absdcot
 
Float_t absdist
 
const Configuration cfg_
 
Float_t detaeleout
 
Float_t detain
 
Float_t dphiin
 
Float_t e1x5e5x5
 
Int_t ecalseed
 
Float_t eleopout
 
Float_t eop
 
Float_t eta
 
Float_t fbrem
 
std::vector< std::unique_ptr
< const GBRForest > > 
gbr
 
Float_t hoe
 
Float_t kfchi2
 
Float_t mykfhits
 
Float_t mymishits
 
Float_t myNvtx
 
Float_t pt
 
Float_t sieie
 

Detailed Description

Definition at line 10 of file ElectronMVAEstimator.h.

Constructor & Destructor Documentation

ElectronMVAEstimator::ElectronMVAEstimator ( )

Definition at line 16 of file ElectronMVAEstimator.cc.

16  :
17  cfg_{}
18 {}
const Configuration cfg_
ElectronMVAEstimator::ElectronMVAEstimator ( std::string  fileName)

Definition at line 20 of file ElectronMVAEstimator.cc.

20  :
21  cfg_{}
22 {
23  TMVA::Reader tmvaReader("!Color:Silent");
24  tmvaReader.AddVariable("fbrem",&fbrem);
25  tmvaReader.AddVariable("detain", &detain);
26  tmvaReader.AddVariable("dphiin", &dphiin);
27  tmvaReader.AddVariable("sieie", &sieie);
28  tmvaReader.AddVariable("hoe", &hoe);
29  tmvaReader.AddVariable("eop", &eop);
30  tmvaReader.AddVariable("e1x5e5x5", &e1x5e5x5);
31  tmvaReader.AddVariable("eleopout", &eleopout);
32  tmvaReader.AddVariable("detaeleout", &detaeleout);
33  tmvaReader.AddVariable("kfchi2", &kfchi2);
34  tmvaReader.AddVariable("kfhits", &mykfhits);
35  tmvaReader.AddVariable("mishits",&mymishits);
36  tmvaReader.AddVariable("dist", &absdist);
37  tmvaReader.AddVariable("dcot", &absdcot);
38  tmvaReader.AddVariable("nvtx", &myNvtx);
39 
40  tmvaReader.AddSpectator("eta",&eta);
41  tmvaReader.AddSpectator("pt",&pt);
42  tmvaReader.AddSpectator("ecalseed",&ecalseed);
43 
44  // Taken from Daniele (his mail from the 30/11)
45  // tmvaReader.BookMVA("BDTSimpleCat","../Training/weights_Root527b_3Depth_DanVarConvRej_2PtBins_10Pt_800TPrune5_Min100Events_NoBjets_half/TMVA_BDTSimpleCat.weights.xm");
46  // training of the 7/12 with Nvtx added
47  std::unique_ptr<TMVA::IMethod> temp( tmvaReader.BookMVA(ele_mva_name,fileName.c_str()) );
48  gbr.emplace_back(new GBRForest( dynamic_cast<TMVA::MethodBDT*>( tmvaReader.FindMVA(ele_mva_name) ) ) );
49 }
const Configuration cfg_
std::vector< std::unique_ptr< const GBRForest > > gbr
ElectronMVAEstimator::ElectronMVAEstimator ( const Configuration cfg)

Definition at line 51 of file ElectronMVAEstimator.cc.

References absdcot, absdist, cfg_, detaeleout, detain, dphiin, e1x5e5x5, ecalseed, eleopout, eop, eta, fbrem, contentValuesFiles::fullPath, gbr, hoe, compare_using_db::ifile, kfchi2, mykfhits, mymishits, myNvtx, pt, sieie, AlCaHLTBitMon_QueryRunRegistry::string, groupFilesInBlocks::temp, and ElectronMVAEstimator::Configuration::vweightsfiles.

51  :cfg_(cfg){
52  std::vector<std::string> weightsfiles;
53  std::string path_mvaWeightFileEleID;
54  for(unsigned ifile=0 ; ifile < cfg_.vweightsfiles.size() ; ++ifile) {
55  path_mvaWeightFileEleID = edm::FileInPath ( cfg_.vweightsfiles[ifile].c_str() ).fullPath();
56  weightsfiles.push_back(path_mvaWeightFileEleID);
57  }
58  for( const auto& wgtfile : weightsfiles ) {
59  TMVA::Reader tmvaReader("!Color:Silent");
60  tmvaReader.AddVariable("fbrem",&fbrem);
61  tmvaReader.AddVariable("detain", &detain);
62  tmvaReader.AddVariable("dphiin", &dphiin);
63  tmvaReader.AddVariable("sieie", &sieie);
64  tmvaReader.AddVariable("hoe", &hoe);
65  tmvaReader.AddVariable("eop", &eop);
66  tmvaReader.AddVariable("e1x5e5x5", &e1x5e5x5);
67  tmvaReader.AddVariable("eleopout", &eleopout);
68  tmvaReader.AddVariable("detaeleout", &detaeleout);
69  tmvaReader.AddVariable("kfchi2", &kfchi2);
70  tmvaReader.AddVariable("kfhits", &mykfhits);
71  tmvaReader.AddVariable("mishits",&mymishits);
72  tmvaReader.AddVariable("dist", &absdist);
73  tmvaReader.AddVariable("dcot", &absdcot);
74  tmvaReader.AddVariable("nvtx", &myNvtx);
75 
76  tmvaReader.AddSpectator("eta",&eta);
77  tmvaReader.AddSpectator("pt",&pt);
78  tmvaReader.AddSpectator("ecalseed",&ecalseed);
79 
80  // Taken from Daniele (his mail from the 30/11)
81  // tmvaReader.BookMVA("BDTSimpleCat","../Training/weights_Root527b_3Depth_DanVarConvRej_2PtBins_10Pt_800TPrune5_Min100Events_NoBjets_half/TMVA_BDTSimpleCat.weights.xm");
82  // training of the 7/12 with Nvtx added
83  std::unique_ptr<TMVA::IMethod> temp( tmvaReader.BookMVA(ele_mva_name,wgtfile) );
84  gbr.emplace_back(new GBRForest( dynamic_cast<TMVA::MethodBDT*>( tmvaReader.FindMVA(ele_mva_name) ) ) );
85  }
86 }
tuple cfg
Definition: looper.py:293
const Configuration cfg_
std::vector< std::string > vweightsfiles
std::vector< std::unique_ptr< const GBRForest > > gbr
ElectronMVAEstimator::~ElectronMVAEstimator ( )
inline

Definition at line 18 of file ElectronMVAEstimator.h.

18 {;}

Member Function Documentation

void ElectronMVAEstimator::bindVariables ( float  vars[18]) const
private

Definition at line 152 of file ElectronMVAEstimator.cc.

Referenced by mva().

152  {
153  if(vars[0] < -1.)
154  vars[1] = -1.;
155 
156  if(vars[1] > 0.06)
157  vars[1] = 0.06;
158 
159  if(vars[2] > 0.6)
160  vars[2] = 0.6;
161 
162  if(vars[5] > 20.)
163  vars[5] = 20.;
164 
165  if(vars[7] > 20.)
166  vars[7] = 20;
167 
168  if(vars[8] > 0.2)
169  vars[8] = 0.2;
170 
171  if(vars[9] < 0.)
172  vars[9] = 0.;
173 
174  if(vars[9] > 15.)
175  vars[9] = 15.;
176 
177  if(vars[6] < -1.)
178  vars[6] = -1;
179 
180  if(vars[6] > 2.)
181  vars[6] = 2.;
182 
183  if(vars[12] > 15.)
184  vars[12] = 15.;
185 
186  if(vars[13] > 3.)
187  vars[13] = 3.;
188 }
double ElectronMVAEstimator::mva ( const reco::GsfElectron myElectron,
int  nvertices = 0 
) const

Definition at line 88 of file ElectronMVAEstimator.cc.

References funct::abs(), bindVariables(), reco::GsfElectron::closestCtfTrackRef(), reco::GsfElectron::convDcot(), reco::GsfElectron::convDist(), reco::GsfElectron::deltaEtaEleClusterTrackAtCalo(), reco::GsfElectron::deltaEtaSuperClusterTrackAtVtx(), reco::GsfElectron::deltaPhiSuperClusterTrackAtVtx(), reco::GsfElectron::e1x5(), reco::GsfElectron::e5x5(), reco::GsfElectron::ecalDrivenSeed(), reco::GsfElectron::eEleClusterOverPout(), reco::GsfElectron::eSuperClusterOverP(), reco::LeafCandidate::eta(), reco::GsfElectron::fbrem(), gbr, reco::GsfElectron::gsfTrack(), reco::GsfElectron::hcalOverEcal(), cmsHarvester::index, edm::Ref< C, T, F >::isAvailable(), edm::Ref< C, T, F >::isNonnull(), reco::HitPattern::MISSING_INNER_HITS, reco::LeafCandidate::pt(), query::result, and reco::GsfElectron::sigmaIetaIeta().

88  {
89  float vars[18];
90 
91  vars[0] = myElectron.fbrem();
92  vars[1] = std::abs(myElectron.deltaEtaSuperClusterTrackAtVtx());
93  vars[2] = std::abs(myElectron.deltaPhiSuperClusterTrackAtVtx());
94  vars[3] = myElectron.sigmaIetaIeta();
95  vars[4] = myElectron.hcalOverEcal();
96  vars[5] = myElectron.eSuperClusterOverP();
97  vars[6] = (myElectron.e5x5()) !=0. ? 1.-(myElectron.e1x5()/myElectron.e5x5()) : -1. ;
98  vars[7] = myElectron.eEleClusterOverPout();
99  vars[8] = std::abs(myElectron.deltaEtaEleClusterTrackAtCalo());
100 
101  bool validKF= false;
102 
103  reco::TrackRef myTrackRef = myElectron.closestCtfTrackRef();
104  validKF = (myTrackRef.isAvailable());
105  validKF = (myTrackRef.isNonnull());
106 
107  vars[9] = (validKF) ? myTrackRef->normalizedChi2() : 0 ;
108  vars[10] = (validKF) ? myTrackRef->hitPattern().trackerLayersWithMeasurement() : -1.;
109  vars[11] = myElectron.gsfTrack()->hitPattern().numberOfLostHits(reco::HitPattern::MISSING_INNER_HITS);
110  vars[12] = std::abs(myElectron.convDist());
111  vars[13] = std::abs(myElectron.convDcot());
112  vars[14] = nvertices;
113  vars[15] = myElectron.eta();
114  vars[16] = myElectron.pt();
115  vars[17] = myElectron.ecalDrivenSeed();
116 
117  bindVariables(vars);
118 
119  //0 pt &lt; 10 &amp;&amp; abs(eta)&lt;=1.485
120  //1 pt &gt;= 10 &amp;&amp; abs(eta)&lt;=1.485
121  //2 pt &lt; 10 &amp;&amp; abs(eta)&gt; 1.485
122  //3 pt &gt;= 10 &amp;&amp; abs(eta)&gt; 1.485
123 
124  const unsigned index = (unsigned)(myElectron.pt() >= 10) + 2*(unsigned)(std::abs(myElectron.eta()) > 1.485);
125 
126  double result = gbr[index]->GetAdaBoostClassifier(vars);
127 //
128 // std::cout << "fbrem" << vars[0] << std::endl;
129 // std::cout << "detain"<< vars[1] << std::endl;
130 // std::cout << "dphiin"<< vars[2] << std::endl;
131 // std::cout << "sieie"<< vars[3] << std::endl;
132 // std::cout << "hoe"<< vars[4] << std::endl;
133 // std::cout << "eop"<< vars[5] << std::endl;
134 // std::cout << "e1x5e5x5"<< vars[6] << std::endl;
135 // std::cout << "eleopout"<< vars[7] << std::endl;
136 // std::cout << "detaeleout"<< vars[8] << std::endl;
137 // std::cout << "kfchi2"<< vars[9] << std::endl;
138 // std::cout << "kfhits"<< vars[10] << std::endl;
139 // std::cout << "mishits"<<vars[11] << std::endl;
140 // std::cout << "dist"<< vars[12] << std::endl;
141 // std::cout << "dcot"<< vars[13] << std::endl;
142 // std::cout << "nvtx"<< vars[14] << std::endl;
143 // std::cout << "eta"<< vars[15] << std::endl;
144 // std::cout << "pt"<< vars[16] << std::endl;
145 // std::cout << "ecalseed"<< vars[17] << std::endl;
146 //
147 // std::cout << " MVA " << result << std::endl;
148  return result;
149 }
bool isAvailable() const
Definition: Ref.h:576
bool isNonnull() const
Checks for non-null.
Definition: Ref.h:252
float eSuperClusterOverP() const
Definition: GsfElectron.h:243
void bindVariables(float vars[18]) const
float fbrem() const
Definition: GsfElectron.h:698
float convDist() const
Definition: GsfElectron.h:553
virtual double eta() const
momentum pseudorapidity
virtual double pt() const
transverse momentum
TrackRef closestCtfTrackRef() const
Definition: GsfElectron.h:199
float convDcot() const
Definition: GsfElectron.h:554
float deltaEtaSuperClusterTrackAtVtx() const
Definition: GsfElectron.h:247
float sigmaIetaIeta() const
Definition: GsfElectron.h:416
float deltaPhiSuperClusterTrackAtVtx() const
Definition: GsfElectron.h:250
tuple result
Definition: query.py:137
float hcalOverEcal() const
Definition: GsfElectron.h:424
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
float eEleClusterOverPout() const
Definition: GsfElectron.h:246
float deltaEtaEleClusterTrackAtCalo() const
Definition: GsfElectron.h:249
float e1x5() const
Definition: GsfElectron.h:418
float e5x5() const
Definition: GsfElectron.h:420
virtual GsfTrackRef gsfTrack() const
reference to a GsfTrack
Definition: GsfElectron.h:183
bool ecalDrivenSeed() const
Definition: GsfElectron.h:186
std::vector< std::unique_ptr< const GBRForest > > gbr

Member Data Documentation

Float_t ElectronMVAEstimator::absdcot
private

Definition at line 40 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::absdist
private

Definition at line 39 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

const Configuration ElectronMVAEstimator::cfg_
private

Definition at line 22 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::detaeleout
private

Definition at line 35 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::detain
private

Definition at line 28 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::dphiin
private

Definition at line 29 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::e1x5e5x5
private

Definition at line 33 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Int_t ElectronMVAEstimator::ecalseed
private

Definition at line 44 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::eleopout
private

Definition at line 34 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::eop
private

Definition at line 32 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::eta
private
Float_t ElectronMVAEstimator::fbrem
private

Definition at line 27 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

std::vector<std::unique_ptr<const GBRForest> > ElectronMVAEstimator::gbr
private

Definition at line 25 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator(), and mva().

Float_t ElectronMVAEstimator::hoe
private

Definition at line 31 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::kfchi2
private

Definition at line 36 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::mykfhits
private

Definition at line 37 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::mymishits
private

Definition at line 38 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::myNvtx
private

Definition at line 41 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().

Float_t ElectronMVAEstimator::pt
private
Float_t ElectronMVAEstimator::sieie
private

Definition at line 30 of file ElectronMVAEstimator.h.

Referenced by ElectronMVAEstimator().