CMS 3D CMS Logo

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

#include <ElectronStudy.h>

Inheritance diagram for ElectronStudy:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

void analyze (const edm::Event &e, const edm::EventSetup &c)
 
 ElectronStudy (const edm::ParameterSet &ps)
 
 ~ElectronStudy ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

double etaBins [NEtaBins+1]
 
std::string g4Label
 
TH1F * histoE1x1 [NPBins+1][NEtaBins+1]
 
TH1F * histoE3x3 [NPBins+1][NEtaBins+1]
 
TH1F * histoE5x5 [NPBins+1][NEtaBins+1]
 
TH1F * histoR1 [NPBins+1][NEtaBins+1]
 
TH1F * histoR2 [NPBins+1][NEtaBins+1]
 
TH1F * histoR3 [NPBins+1][NEtaBins+1]
 
bool histos
 
std::string hitLabEB
 
std::string hitLabEE
 
int hotZone
 
double pBins [NPBins+1]
 
std::string sourceLabel
 
edm::EDGetTokenT
< edm::PCaloHitContainer
tok_EBhit_
 
edm::EDGetTokenT
< edm::PCaloHitContainer
tok_EEhit_
 
edm::EDGetTokenT
< edm::SimTrackContainer
tok_simTk_
 
edm::EDGetTokenT
< edm::SimVertexContainer
tok_simVtx_
 
int verbose
 

Static Private Attributes

static const int NEtaBins = 3
 
static const int NPBins = 8
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 33 of file ElectronStudy.h.

Constructor & Destructor Documentation

ElectronStudy::ElectronStudy ( const edm::ParameterSet ps)

Definition at line 15 of file ElectronStudy.cc.

References etaBins, g4Label, edm::ParameterSet::getUntrackedParameter(), histoE1x1, histoE3x3, histoE5x5, histoR1, histoR2, histoR3, histos, hitLabEB, hitLabEE, hotZone, i, HLT_25ns14e33_v1_cff::InputTag, edm::Service< T >::isAvailable(), j, TFileService::make(), mergeVDriftHistosByStation::name, NEtaBins, NPBins, pBins, sourceLabel, AlCaHLTBitMon_QueryRunRegistry::string, indexGen::title, tok_EBhit_, tok_EEhit_, tok_simTk_, and tok_simVtx_.

15  {
16 
17  sourceLabel = ps.getUntrackedParameter<std::string>("SourceLabel","generatorSmeared");
18  g4Label = ps.getUntrackedParameter<std::string>("ModuleLabel","g4SimHits");
19  hitLabEB= ps.getUntrackedParameter<std::string>("EBCollection","EcalHitsEB");
20  hitLabEE= ps.getUntrackedParameter<std::string>("EECollection","EcalHitsEE");
21 
22 
23  tok_EBhit_ = consumes<edm::PCaloHitContainer>(edm::InputTag(g4Label,hitLabEB));
24  tok_EEhit_ = consumes<edm::PCaloHitContainer>(edm::InputTag(g4Label,hitLabEE));
25  tok_simTk_ = consumes<edm::SimTrackContainer>(edm::InputTag(g4Label));
26  tok_simVtx_ = consumes<edm::SimVertexContainer>(edm::InputTag(g4Label));
27 
28  hotZone = ps.getUntrackedParameter<int>("HotZone",0);
29  verbose = ps.getUntrackedParameter<int>("Verbosity",0);
30  edm::LogInfo("ElectronStudy") << "Module Label: " << g4Label << " Hits: "
31  << hitLabEB << ", " << hitLabEE;
32 
33  double tempPBins[NPBins+1] = { 0.0, 10.0, 20.0, 40.0, 60.0,
34  100.0, 500.0, 1000.0, 10000.0};
35  double tempEta[NEtaBins+1] = {0.0, 1.2, 1.6, 3.0};
36 
37  for (int i=0; i<NPBins+1; i++) pBins[i] = tempPBins[i];
38  for(int i=0; i<NEtaBins+1; i++) etaBins[i] = tempEta[i];
39 
41  if ( !tfile.isAvailable() ) {
42  edm::LogInfo("ElectronStudy") << "TFileService unavailable: no histograms";
43  histos = false;
44  } else {
45  char name[20], title[200], cpbin[30], cebin[30];
46  histos = true;
47  for (unsigned int i=0; i<NPBins+1; ++i) {
48  if (i == 0) sprintf (cpbin, " All p");
49  else sprintf (cpbin, " p (%6.0f:%6.0f)", pBins[i-1], pBins[i]);
50  for (unsigned int j=0; j<NEtaBins+1; ++j) {
51  if (j == 0) sprintf (cebin, " All #eta");
52  else sprintf (cebin, " #eta (%4.1f:%4.1f)", etaBins[j-1], etaBins[j]);
53  sprintf (name, "R1%d%d", i, j);
54  sprintf (title,"E1/E9 for %s%s", cpbin, cebin);
55  histoR1[i][j] = tfile->make<TH1F>(name, title, 100, 0., 2.);
56  histoR1[i][j]->GetXaxis()->SetTitle(title);
57  histoR1[i][j]->GetYaxis()->SetTitle("Tracks");
58  sprintf (name, "R2%d%d", i, j);
59  sprintf (title,"E1/E25 for %s%s", cpbin, cebin);
60  histoR2[i][j] = tfile->make<TH1F>(name, title, 100, 0., 2.);
61  histoR2[i][j]->GetXaxis()->SetTitle(title);
62  histoR2[i][j]->GetYaxis()->SetTitle("Tracks");
63  sprintf (name, "R3%d%d", i, j);
64  sprintf (title,"E9/E25 for %s%s", cpbin, cebin);
65  histoR3[i][j] = tfile->make<TH1F>(name, title, 100, 0., 2.);
66  histoR3[i][j]->GetXaxis()->SetTitle(title);
67  histoR3[i][j]->GetYaxis()->SetTitle("Tracks");
68  sprintf (name, "E1x1%d%d", i, j);
69  sprintf (title,"E1/P for %s%s", cpbin, cebin);
70  histoE1x1[i][j] = tfile->make<TH1F>(name, title, 100, 0., 2.);
71  histoE1x1[i][j]->GetXaxis()->SetTitle(title);
72  histoE1x1[i][j]->GetYaxis()->SetTitle("Tracks");
73  sprintf (name, "E3x3%d%d", i, j);
74  sprintf (title,"E9/P for %s%s", cpbin, cebin);
75  histoE3x3[i][j] = tfile->make<TH1F>(name, title, 100, 0., 2.);
76  histoE3x3[i][j]->GetXaxis()->SetTitle(title);
77  histoE3x3[i][j]->GetYaxis()->SetTitle("Tracks");
78  sprintf (name, "E5x5%d%d", i, j);
79  sprintf (title,"E25/P for %s%s", cpbin, cebin);
80  histoE5x5[i][j] = tfile->make<TH1F>(name, title, 100, 0., 2.);
81  histoE5x5[i][j]->GetXaxis()->SetTitle(title);
82  histoE5x5[i][j]->GetYaxis()->SetTitle("Tracks");
83  }
84  }
85  }
86 }
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
std::string hitLabEE
Definition: ElectronStudy.h:53
TH1F * histoR2[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:56
edm::EDGetTokenT< edm::SimTrackContainer > tok_simTk_
Definition: ElectronStudy.h:50
std::string g4Label
Definition: ElectronStudy.h:53
std::string hitLabEB
Definition: ElectronStudy.h:53
TH1F * histoE3x3[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:58
TH1F * histoE1x1[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:57
edm::EDGetTokenT< edm::SimVertexContainer > tok_simVtx_
Definition: ElectronStudy.h:51
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
static const int NPBins
Definition: ElectronStudy.h:45
bool isAvailable() const
Definition: Service.h:46
int j
Definition: DBlmapReader.cc:9
TH1F * histoR3[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:57
double etaBins[NEtaBins+1]
Definition: ElectronStudy.h:46
TH1F * histoR1[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:56
edm::EDGetTokenT< edm::PCaloHitContainer > tok_EBhit_
Definition: ElectronStudy.h:48
std::string sourceLabel
Definition: ElectronStudy.h:53
TH1F * histoE5x5[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:58
edm::EDGetTokenT< edm::PCaloHitContainer > tok_EEhit_
Definition: ElectronStudy.h:49
double pBins[NPBins+1]
Definition: ElectronStudy.h:46
static const int NEtaBins
Definition: ElectronStudy.h:44
ElectronStudy::~ElectronStudy ( )
inline

Definition at line 38 of file ElectronStudy.h.

38 {}

Member Function Documentation

void ElectronStudy::analyze ( const edm::Event e,
const edm::EventSetup c 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 88 of file ElectronStudy.cc.

References funct::abs(), ecalTB2006H4_GenSimDigiReco_cfg::bField, gather_cfg::cout, TauDecayModes::dec, spr::propagatedTrackDirection::detIdECAL, EcalBarrel, EcalEndcap, spr::eECALmatrix(), eta, etaBins, edm::EventID::event(), edm::EventSetup::get(), edm::Event::getByToken(), histoE1x1, histoE3x3, histoE5x5, histoR1, histoR2, histoR3, histos, spr::hotCrystal(), hotZone, edm::EventBase::id(), edm::HandleBase::isValid(), NEtaBins, NPBins, spr::propagatedTrackDirection::okECAL, AlCaHLTBitMon_ParallelJobs::p, pBins, edm::ESHandle< class >::product(), spr::propagateCALO(), diffTwoXMLs::r1, diffTwoXMLs::r2, edm::EventID::run(), DetId::subdetId(), tok_EBhit_, tok_EEhit_, tok_simTk_, and tok_simVtx_.

88  {
89 
90  if (verbose > 1) std::cout << "Run = " << iEvent.id().run() << " Event = "
91  << iEvent.id().event() << std::endl;
92 
93  // get Geometry, B-field, Topology
95  iSetup.get<IdealMagneticFieldRecord>().get(bFieldH);
96  const MagneticField* bField = bFieldH.product();
97 
99  iSetup.get<CaloGeometryRecord>().get(pG);
100  const CaloGeometry* geo = pG.product();
101 
102  edm::ESHandle<CaloTopology> theCaloTopology;
103  iSetup.get<CaloTopologyRecord>().get(theCaloTopology);
104  const CaloTopology* caloTopology = theCaloTopology.product();
105 
106  // get PCaloHits for ecal barrel
108  iEvent.getByToken(tok_EBhit_,caloHitEB);
109 
110  // get PCaloHits for ecal endcap
112  iEvent.getByToken(tok_EEhit_,caloHitEE);
113 
114  // get sim tracks
116  iEvent.getByToken(tok_simTk_, SimTk);
117 
118  // get sim vertices
120  iEvent.getByToken(tok_simVtx_, SimVtx);
121 
122  if (verbose>0)
123  std::cout << "ElectronStudy: hits valid[EB]: " << caloHitEB.isValid()
124  << " valid[EE]: " << caloHitEE.isValid() << std::endl;
125 
126  if (caloHitEB.isValid() && caloHitEE.isValid()) {
127  unsigned int indx;
128  if (verbose>2) {
129  edm::PCaloHitContainer::const_iterator ihit;
130  for (ihit=caloHitEB->begin(),indx=0; ihit!=caloHitEB->end(); ihit++,indx++) {
131  EBDetId id = ihit->id();
132  std::cout << "Hit[" << indx << "] " << id << " E " << ihit->energy()
133  << " T " << ihit->time() << std::endl;
134  }
135  for (ihit=caloHitEE->begin(),indx=0; ihit!=caloHitEE->end(); ihit++,indx++) {
136  EEDetId id = ihit->id();
137  std::cout << "Hit[" << indx << "] " << id << " E " << ihit->energy()
138  << " T " << ihit->time() << std::endl;
139  }
140  }
141  edm::SimTrackContainer::const_iterator simTrkItr=SimTk->begin();
142  for (indx=0; simTrkItr!= SimTk->end(); simTrkItr++,indx++) {
143  if (verbose>0) std::cout << "ElectronStudy: Track[" << indx << "] ID "
144  << simTrkItr->trackId() << " type "
145  << simTrkItr->type() << " charge "
146  << simTrkItr->charge() << " p "
147  << simTrkItr->momentum()<< " Generator Index "
148  << simTrkItr->genpartIndex() << " vertex "
149  << simTrkItr->vertIndex() << std::endl;
150  if (std::abs(simTrkItr->type()) == 11 && simTrkItr->vertIndex() != -1) {
151  int thisTrk = simTrkItr->trackId();
152  spr::propagatedTrackDirection trkD = spr::propagateCALO(thisTrk, SimTk, SimVtx, geo, bField, (verbose>1));
153  if (trkD.okECAL) {
154  const DetId isoCell = trkD.detIdECAL;
155  DetId hotCell = isoCell;
156  if (hotZone > 0) hotCell = spr::hotCrystal(isoCell, caloHitEB, caloHitEE, geo, caloTopology, hotZone, hotZone, -500.0, 500.0, (verbose>1));
157  double e1x1 = spr::eECALmatrix(hotCell, caloHitEB, caloHitEE, geo, caloTopology, 0, 0, -100.0, -100.0,-500.0, 500.0, (verbose>2));
158  double e3x3 = spr::eECALmatrix(hotCell, caloHitEB, caloHitEE, geo, caloTopology, 1, 1, -100.0, -100.0,-500.0, 500.0, (verbose>2));
159  double e5x5 = spr::eECALmatrix(hotCell, caloHitEB, caloHitEE, geo, caloTopology, 2, 2, -100.0, -100.0,-500.0, 500.0, (verbose>2));
160  double p = simTrkItr->momentum().P();
161  double eta = std::abs(simTrkItr->momentum().eta());
162  int etaBin=-1, momBin=-1;
163  for (int ieta=0; ieta<NEtaBins; ieta++) {
164  if (eta>etaBins[ieta] && eta<etaBins[ieta+1] ) etaBin = ieta+1;
165  }
166  for (int ipt=0; ipt<NPBins; ipt++) {
167  if (p>pBins[ipt] && p<pBins[ipt+1] ) momBin = ipt+1;
168  }
169  double r1=-1, r2=-1, r3=-1;
170  if (e3x3 > 0) r1 = e1x1/e3x3;
171  if (e5x5 > 0) {r2 = e1x1/e5x5; r3 = e3x3/e5x5;}
172  if (verbose>0) {
173  std::cout << "ElectronStudy: p " << p << " [" << momBin << "] eta "
174  << eta << " [" << etaBin << "]";
175  if (isoCell.subdetId() == EcalBarrel) {
176  EBDetId id = isoCell;
177  std::cout << " Cell 0x" << std::hex << isoCell() << std::dec
178  << " " << id;
179  } else if (isoCell.subdetId() == EcalEndcap) {
180  EEDetId id = isoCell;
181  std::cout << " Cell 0x" << std::hex << isoCell() << std::dec
182  << " " << id;
183  } else {
184  std::cout << " Cell 0x" << std::hex << isoCell() << std::dec
185  << " Unknown Type";
186  }
187  std::cout << " e1x1 " << e1x1 << "|" << r1 << "|" << r2 << " e3x3 "
188  << e3x3 << "|" << r3 << " e5x5 " << e5x5 << std::endl;
189  }
190  if (histos) {
191  histoR1[0][0]->Fill(r1);
192  histoR2[0][0]->Fill(r2);
193  histoR3[0][0]->Fill(r3);
194  histoE1x1[0][0]->Fill(e1x1/p);
195  histoE3x3[0][0]->Fill(e3x3/p);
196  histoE5x5[0][0]->Fill(e5x5/p);
197  if (momBin>0) {
198  histoR1[momBin][0]->Fill(r1);
199  histoR2[momBin][0]->Fill(r2);
200  histoR3[momBin][0]->Fill(r3);
201  histoE1x1[momBin][0]->Fill(e1x1/p);
202  histoE3x3[momBin][0]->Fill(e3x3/p);
203  histoE5x5[momBin][0]->Fill(e5x5/p);
204  }
205  if (etaBin>0) {
206  histoR1[0][etaBin]->Fill(r1);
207  histoR2[0][etaBin]->Fill(r2);
208  histoR3[0][etaBin]->Fill(r3);
209  histoE1x1[0][etaBin]->Fill(e1x1/p);
210  histoE3x3[0][etaBin]->Fill(e3x3/p);
211  histoE5x5[0][etaBin]->Fill(e5x5/p);
212  if (momBin>0) {
213  histoR1[momBin][etaBin]->Fill(r1);
214  histoR2[momBin][etaBin]->Fill(r2);
215  histoR3[momBin][etaBin]->Fill(r3);
216  histoE1x1[momBin][etaBin]->Fill(e1x1/p);
217  histoE3x3[momBin][etaBin]->Fill(e3x3/p);
218  histoE5x5[momBin][etaBin]->Fill(e5x5/p);
219  }
220  }
221  }
222  }
223  }
224  }
225  }
226 
227 }
TH1F * histoR2[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:56
edm::EDGetTokenT< edm::SimTrackContainer > tok_simTk_
Definition: ElectronStudy.h:50
std::vector< spr::propagatedTrackID > propagateCALO(edm::Handle< reco::TrackCollection > &trkCollection, const CaloGeometry *geo, const MagneticField *bField, std::string &theTrackQuality, bool debug=false)
TH1F * histoE3x3[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:58
TH1F * histoE1x1[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:57
edm::EDGetTokenT< edm::SimVertexContainer > tok_simVtx_
Definition: ElectronStudy.h:51
int iEvent
Definition: GenABIO.cc:230
static const int NPBins
Definition: ElectronStudy.h:45
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
TH1F * histoR3[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:57
bool isValid() const
Definition: HandleBase.h:75
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
double etaBins[NEtaBins+1]
Definition: ElectronStudy.h:46
TH1F * histoR1[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:56
edm::EDGetTokenT< edm::PCaloHitContainer > tok_EBhit_
Definition: ElectronStudy.h:48
Definition: DetId.h:18
TH1F * histoE5x5[NPBins+1][NEtaBins+1]
Definition: ElectronStudy.h:58
T const * product() const
Definition: ESHandle.h:86
DetId hotCrystal(const DetId &detId, edm::Handle< T > &hitsEB, edm::Handle< T > &hitsEE, const CaloGeometry *geo, const CaloTopology *caloTopology, int ieta, int iphi, double tMin=-500, double tMax=500, bool debug=false)
edm::EDGetTokenT< edm::PCaloHitContainer > tok_EEhit_
Definition: ElectronStudy.h:49
double pBins[NPBins+1]
Definition: ElectronStudy.h:46
tuple cout
Definition: gather_cfg.py:121
static const int NEtaBins
Definition: ElectronStudy.h:44
double eECALmatrix(const DetId &detId, edm::Handle< T > &hitsEB, edm::Handle< T > &hitsEE, const CaloGeometry *geo, const CaloTopology *caloTopology, int ieta, int iphi, double ebThr=-100, double eeThr=-100, double tMin=-500, double tMax=500, bool debug=false)

Member Data Documentation

double ElectronStudy::etaBins[NEtaBins+1]
private
std::string ElectronStudy::g4Label
private

Definition at line 53 of file ElectronStudy.h.

Referenced by ElectronStudy().

TH1F * ElectronStudy::histoE1x1[NPBins+1][NEtaBins+1]
private

Definition at line 57 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

TH1F* ElectronStudy::histoE3x3[NPBins+1][NEtaBins+1]
private

Definition at line 58 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

TH1F * ElectronStudy::histoE5x5[NPBins+1][NEtaBins+1]
private

Definition at line 58 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

TH1F* ElectronStudy::histoR1[NPBins+1][NEtaBins+1]
private

Definition at line 56 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

TH1F * ElectronStudy::histoR2[NPBins+1][NEtaBins+1]
private

Definition at line 56 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

TH1F* ElectronStudy::histoR3[NPBins+1][NEtaBins+1]
private

Definition at line 57 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

bool ElectronStudy::histos
private
std::string ElectronStudy::hitLabEB
private

Definition at line 53 of file ElectronStudy.h.

Referenced by ElectronStudy().

std::string ElectronStudy::hitLabEE
private

Definition at line 53 of file ElectronStudy.h.

Referenced by ElectronStudy().

int ElectronStudy::hotZone
private

Definition at line 54 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

const int ElectronStudy::NEtaBins = 3
staticprivate

Definition at line 44 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

const int ElectronStudy::NPBins = 8
staticprivate

Definition at line 45 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

double ElectronStudy::pBins[NPBins+1]
private

Definition at line 46 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

std::string ElectronStudy::sourceLabel
private

Definition at line 53 of file ElectronStudy.h.

Referenced by ElectronStudy().

edm::EDGetTokenT<edm::PCaloHitContainer> ElectronStudy::tok_EBhit_
private

Definition at line 48 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

edm::EDGetTokenT<edm::PCaloHitContainer> ElectronStudy::tok_EEhit_
private

Definition at line 49 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

edm::EDGetTokenT<edm::SimTrackContainer> ElectronStudy::tok_simTk_
private

Definition at line 50 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

edm::EDGetTokenT<edm::SimVertexContainer> ElectronStudy::tok_simVtx_
private

Definition at line 51 of file ElectronStudy.h.

Referenced by analyze(), and ElectronStudy().

int ElectronStudy::verbose
private