CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonTrackValidatorBase.h
Go to the documentation of this file.
1 #ifndef MuonTrackValidatorBase_h
2 #define MuonTrackValidatorBase_h
3 
9 #include <memory>
10 
15 
18 
22 
23 
26 
29 
30 #include <iostream>
31 #include <sstream>
32 #include <string>
33 #include <TH1F.h>
34 #include <TH2F.h>
35 
36 class DQMStore;
38  public:
41  {
45  for (unsigned int www=0;www<label.size();www++){
47  }
48  }
49 
51  label(pset.getParameter< std::vector<edm::InputTag> >("label")),
52  usetracker(pset.getParameter<bool>("usetracker")),
53  usemuon(pset.getParameter<bool>("usemuon")),
54  bsSrc(pset.getParameter< edm::InputTag >("beamSpot")),
55  label_tp_effic(pset.getParameter< edm::InputTag >("label_tp_effic")),
56  label_tp_fake(pset.getParameter< edm::InputTag >("label_tp_fake")),
57  associators(pset.getParameter< std::vector<std::string> >("associators")),
58  out(pset.getParameter<std::string>("outputFile")),
59  parametersDefiner(pset.getParameter<std::string>("parametersDefiner")),
60  min(pset.getParameter<double>("min")),
61  max(pset.getParameter<double>("max")),
62  nint(pset.getParameter<int>("nint")),
63  useFabs(pset.getParameter<bool>("useFabsEta")),
64  minpT(pset.getParameter<double>("minpT")),
65  maxpT(pset.getParameter<double>("maxpT")),
66  nintpT(pset.getParameter<int>("nintpT")),
67  minHit(pset.getParameter<double>("minHit")),
68  maxHit(pset.getParameter<double>("maxHit")),
69  nintHit(pset.getParameter<int>("nintHit")),
70  minPhi(pset.getParameter<double>("minPhi")),
71  maxPhi(pset.getParameter<double>("maxPhi")),
72  nintPhi(pset.getParameter<int>("nintPhi")),
73  minDxy(pset.getParameter<double>("minDxy")),
74  maxDxy(pset.getParameter<double>("maxDxy")),
75  nintDxy(pset.getParameter<int>("nintDxy")),
76  minDz(pset.getParameter<double>("minDz")),
77  maxDz(pset.getParameter<double>("maxDz")),
78  nintDz(pset.getParameter<int>("nintDz")),
79  minVertpos(pset.getParameter<double>("minVertpos")),
80  maxVertpos(pset.getParameter<double>("maxVertpos")),
81  nintVertpos(pset.getParameter<int>("nintVertpos")),
82  minZpos(pset.getParameter<double>("minZpos")),
83  maxZpos(pset.getParameter<double>("maxZpos")),
84  nintZpos(pset.getParameter<int>("nintZpos")),
85  useInvPt(pset.getParameter<bool>("useInvPt")),
86  //
87  ptRes_rangeMin(pset.getParameter<double>("ptRes_rangeMin")),
88  ptRes_rangeMax(pset.getParameter<double>("ptRes_rangeMax")),
89  phiRes_rangeMin(pset.getParameter<double>("phiRes_rangeMin")),
90  phiRes_rangeMax(pset.getParameter<double>("phiRes_rangeMax")),
91  cotThetaRes_rangeMin(pset.getParameter<double>("cotThetaRes_rangeMin")),
92  cotThetaRes_rangeMax(pset.getParameter<double>("cotThetaRes_rangeMax")),
93  dxyRes_rangeMin(pset.getParameter<double>("dxyRes_rangeMin")),
94  dxyRes_rangeMax(pset.getParameter<double>("dxyRes_rangeMax")),
95  dzRes_rangeMin(pset.getParameter<double>("dzRes_rangeMin")),
96  dzRes_rangeMax(pset.getParameter<double>("dzRes_rangeMax")),
97  ptRes_nbin(pset.getParameter<int>("ptRes_nbin")),
98  cotThetaRes_nbin(pset.getParameter<int>("cotThetaRes_nbin")),
99  phiRes_nbin(pset.getParameter<int>("phiRes_nbin")),
100  dxyRes_nbin(pset.getParameter<int>("dxyRes_nbin")),
101  dzRes_nbin(pset.getParameter<int>("dzRes_nbin")),
102  ignoremissingtkcollection_(pset.getUntrackedParameter<bool>("ignoremissingtrackcollection",false)),
103  useLogPt(pset.getUntrackedParameter<bool>("useLogPt",false))
104  //
105  {
107  if(useLogPt){
108  maxpT=log10(maxpT);
109  minpT=log10(minpT);
110  }
111  }
112 
115 
116  virtual void doProfileX(TH2 * th2, MonitorElement* me){
117  if (th2->GetNbinsX()==me->getNbinsX()){
118  TProfile * p1 = (TProfile*) th2->ProfileX();
119  p1->Copy(*me->getTProfile());
120  delete p1;
121  } else {
122  throw cms::Exception("MuonTrackValidator") << "Different number of bins!";
123  }
124  }
125 
126  virtual void doProfileX(MonitorElement * th2m, MonitorElement* me) {
127  doProfileX(th2m->getTH2F(), me);
128  }
129 
130  virtual double getEta(double eta) {
131  if (useFabs) return fabs(eta);
132  else return eta;
133  }
134 
135  virtual double getPt(double pt) {
136  if (useInvPt && pt!=0) return 1/pt;
137  else return pt;
138  }
139 
140  void fillPlotFromVector(MonitorElement* h, std::vector<int>& vec) {
141  for (unsigned int j=0; j<vec.size(); j++){
142  h->setBinContent(j+1, vec[j]);
143  }
144  }
145 
146  void fillPlotFromVectors(MonitorElement* h, std::vector<int>& numerator, std::vector<int>& denominator,std::string type){
147  double value,err;
148  for (unsigned int j=0; j<numerator.size(); j++){
149  if (denominator[j]!=0){
150 if (type=="effic")
151 value = ((double) numerator[j])/((double) denominator[j]);
152 else if (type=="fakerate")
153 value = 1-((double) numerator[j])/((double) denominator[j]);
154 else return;
155 err = sqrt( value*(1-value)/(double) denominator[j] );
156 h->setBinContent(j+1, value);
157 h->setBinError(j+1,err);
158  }
159  else {
160 h->setBinContent(j+1, 0);
161  }
162  }
163  }
164 
165  void BinLogX(TH1*h)
166  {
167 
168  TAxis *axis = h->GetXaxis();
169  int bins = axis->GetNbins();
170 
171  float from = axis->GetXmin();
172  float to = axis->GetXmax();
173  float width = (to - from) / bins;
174  float *new_bins = new float[bins + 1];
175 
176  for (int i = 0; i <= bins; i++) {
177  new_bins[i] = TMath::Power(10, from + i * width);
178 
179  }
180  axis->Set(bins, new_bins);
181  delete[] new_bins;
182  }
183 
184  void setUpVectors() {
185  std::vector<double> etaintervalsv;
186  std::vector<double> phiintervalsv;
187  std::vector<double> pTintervalsv;
188  std::vector<double> dxyintervalsv;
189  std::vector<double> dzintervalsv;
190  std::vector<double> vertposintervalsv;
191  std::vector<double> zposintervalsv;
192  std::vector<int> totSIMveta,totASSveta,totASS2veta,totRECveta;
193  std::vector<int> totSIMvpT,totASSvpT,totASS2vpT,totRECvpT;
194  std::vector<int> totSIMv_hit,totASSv_hit,totASS2v_hit,totRECv_hit;
195  std::vector<int> totSIMv_phi,totASSv_phi,totASS2v_phi,totRECv_phi;
196  std::vector<int> totSIMv_dxy,totASSv_dxy,totASS2v_dxy,totRECv_dxy;
197  std::vector<int> totSIMv_dz,totASSv_dz,totASS2v_dz,totRECv_dz;
198  std::vector<int> totSIMv_vertpos,totASSv_vertpos,totSIMv_zpos,totASSv_zpos;
199 
200  // for muon Validation
201  std::vector<int> totASSveta_Quality05, totASSveta_Quality075;
202  std::vector<int> totASSvpT_Quality05, totASSvpT_Quality075;
203  std::vector<int> totASSv_phi_Quality05, totASSv_phi_Quality075;
204 
205  double step=(max-min)/nint;
206  std::ostringstream title,name;
207  etaintervalsv.push_back(min);
208  for (int k=1;k<nint+1;k++) {
209  double d=min+k*step;
210  etaintervalsv.push_back(d);
211  totSIMveta.push_back(0);
212  totASSveta.push_back(0);
213  totASS2veta.push_back(0);
214  totRECveta.push_back(0);
215  //
216  totASSveta_Quality05.push_back(0);
217  totASSveta_Quality075.push_back(0);
218  }
219  etaintervals.push_back(etaintervalsv);
220  totSIMeta.push_back(totSIMveta);
221  totASSeta.push_back(totASSveta);
222  totASS2eta.push_back(totASS2veta);
223  totRECeta.push_back(totRECveta);
224  //
225  totASSeta_Quality05.push_back(totASSveta_Quality05);
226  totASSeta_Quality075.push_back(totASSveta_Quality075);
227 
228  double steppT = (maxpT-minpT)/nintpT;
229  pTintervalsv.push_back(minpT);
230  for (int k=1;k<nintpT+1;k++) {
231  double d=0;
232  if(useLogPt)d=pow(10,minpT+k*steppT);
233  else d=minpT+k*steppT;
234  pTintervalsv.push_back(d);
235  totSIMvpT.push_back(0);
236  totASSvpT.push_back(0);
237  totASS2vpT.push_back(0);
238  totRECvpT.push_back(0);
239  //
240  totASSvpT_Quality05.push_back(0);
241  totASSvpT_Quality075.push_back(0);
242  }
243  pTintervals.push_back(pTintervalsv);
244  totSIMpT.push_back(totSIMvpT);
245  totASSpT.push_back(totASSvpT);
246  totASS2pT.push_back(totASS2vpT);
247  totRECpT.push_back(totRECvpT);
248  //
249  totASSpT_Quality05.push_back(totASSvpT_Quality05);
250  totASSpT_Quality075.push_back(totASSvpT_Quality075);
251 
252  for (int k=1;k<nintHit+1;k++) {
253  totSIMv_hit.push_back(0);
254  totASSv_hit.push_back(0);
255  totASS2v_hit.push_back(0);
256  totRECv_hit.push_back(0);
257  }
258  totSIM_hit.push_back(totSIMv_hit);
259  totASS_hit.push_back(totASSv_hit);
260  totASS2_hit.push_back(totASS2v_hit);
261  totREC_hit.push_back(totRECv_hit);
262 
263  double stepPhi = (maxPhi-minPhi)/nintPhi;
264  phiintervalsv.push_back(minPhi);
265  for (int k=1;k<nintPhi+1;k++) {
266  double d=minPhi+k*stepPhi;
267  phiintervalsv.push_back(d);
268  totSIMv_phi.push_back(0);
269  totASSv_phi.push_back(0);
270  totASS2v_phi.push_back(0);
271  totRECv_phi.push_back(0);
272  //
273  totASSv_phi_Quality05.push_back(0);
274  totASSv_phi_Quality075.push_back(0);
275  }
276  phiintervals.push_back(phiintervalsv);
277  totSIM_phi.push_back(totSIMv_phi);
278  totASS_phi.push_back(totASSv_phi);
279  totASS2_phi.push_back(totASS2v_phi);
280  totREC_phi.push_back(totRECv_phi);
281  //
282  totASS_phi_Quality05.push_back(totASSv_phi_Quality05);
283  totASS_phi_Quality075.push_back(totASSv_phi_Quality075);
284 
285  double stepDxy = (maxDxy-minDxy)/nintDxy;
286  dxyintervalsv.push_back(minDxy);
287  for (int k=1;k<nintDxy+1;k++) {
288  double d=minDxy+k*stepDxy;
289  dxyintervalsv.push_back(d);
290  totSIMv_dxy.push_back(0);
291  totASSv_dxy.push_back(0);
292  totASS2v_dxy.push_back(0);
293  totRECv_dxy.push_back(0);
294  }
295  dxyintervals.push_back(dxyintervalsv);
296  totSIM_dxy.push_back(totSIMv_dxy);
297  totASS_dxy.push_back(totASSv_dxy);
298  totASS2_dxy.push_back(totASS2v_dxy);
299  totREC_dxy.push_back(totRECv_dxy);
300 
301 
302  double stepDz = (maxDz-minDz)/nintDz;
303  dzintervalsv.push_back(minDz);
304  for (int k=1;k<nintDz+1;k++) {
305  double d=minDz+k*stepDz;
306  dzintervalsv.push_back(d);
307  totSIMv_dz.push_back(0);
308  totASSv_dz.push_back(0);
309  totASS2v_dz.push_back(0);
310  totRECv_dz.push_back(0);
311  }
312  dzintervals.push_back(dzintervalsv);
313  totSIM_dz.push_back(totSIMv_dz);
314  totASS_dz.push_back(totASSv_dz);
315  totASS2_dz.push_back(totASS2v_dz);
316  totREC_dz.push_back(totRECv_dz);
317 
318  double stepVertpos = (maxVertpos-minVertpos)/nintVertpos;
319  vertposintervalsv.push_back(minVertpos);
320  for (int k=1;k<nintVertpos+1;k++) {
321  double d=minVertpos+k*stepVertpos;
322  vertposintervalsv.push_back(d);
323  totSIMv_vertpos.push_back(0);
324  totASSv_vertpos.push_back(0);
325  }
326  vertposintervals.push_back(vertposintervalsv);
327  totSIM_vertpos.push_back(totSIMv_vertpos);
328  totASS_vertpos.push_back(totASSv_vertpos);
329 
330  double stepZpos = (maxZpos-minZpos)/nintZpos;
331  zposintervalsv.push_back(minZpos);
332  for (int k=1;k<nintZpos+1;k++) {
333  double d=minZpos+k*stepZpos;
334  zposintervalsv.push_back(d);
335  totSIMv_zpos.push_back(0);
336  totASSv_zpos.push_back(0);
337  }
338  zposintervals.push_back(zposintervalsv);
339  totSIM_zpos.push_back(totSIMv_zpos);
340  totASS_zpos.push_back(totASSv_zpos);
341 
342  }
343 
344  protected:
345 
347 
348  std::vector<edm::InputTag> label;
350  bool usemuon;
354  std::vector<std::string> associators;
357  std::vector<edm::EDGetTokenT<edm::View<reco::Track> > > track_Collection_Token;
361 
362  double min, max;
363  int nint;
364  bool useFabs;
365  double minpT, maxpT;
366  int nintpT;
367  double minHit, maxHit;
368  int nintHit;
369  double minPhi, maxPhi;
370  int nintPhi;
371  double minDxy, maxDxy;
372  int nintDxy;
373  double minDz, maxDz;
374  int nintDz;
377  double minZpos, maxZpos;
378  int nintZpos;
379  bool useInvPt;
380  //
386  bool useLogPt;
387 
389 
390  //sim
391  std::vector<MonitorElement*> h_ptSIM, h_etaSIM, h_tracksSIM, h_vertposSIM;
392 
393  //1D
394  std::vector<MonitorElement*> h_tracks, h_fakes, h_hits, h_charge;
395  std::vector<MonitorElement*> h_recoeta, h_assoceta, h_assoc2eta, h_simuleta;
396  std::vector<MonitorElement*> h_recopT, h_assocpT, h_assoc2pT, h_simulpT;
397  std::vector<MonitorElement*> h_recohit, h_assochit, h_assoc2hit, h_simulhit;
398  std::vector<MonitorElement*> h_recophi, h_assocphi, h_assoc2phi, h_simulphi;
399  std::vector<MonitorElement*> h_recodxy, h_assocdxy, h_assoc2dxy, h_simuldxy;
400  std::vector<MonitorElement*> h_recodz, h_assocdz, h_assoc2dz, h_simuldz;
401  std::vector<MonitorElement*> h_assocvertpos, h_simulvertpos, h_assoczpos, h_simulzpos;
403 
404  std::vector<MonitorElement*> h_assoceta_Quality05, h_assoceta_Quality075;
405  std::vector<MonitorElement*> h_assocpT_Quality05, h_assocpT_Quality075;
406  std::vector<MonitorElement*> h_assocphi_Quality05, h_assocphi_Quality075;
407 
408 
409  //2D
410  std::vector<MonitorElement*> nrec_vs_nsim;
411  std::vector<MonitorElement*> nrecHit_vs_nsimHit_sim2rec;
412  std::vector<MonitorElement*> nrecHit_vs_nsimHit_rec2sim;
413 
414  //assoc hits
415  std::vector<MonitorElement*> h_assocFraction, h_assocSharedHit;
416 
417  //#hit vs eta: to be used with doProfileX
418  std::vector<MonitorElement*> nhits_vs_eta,
420 
421  std::vector<MonitorElement*> h_hits_eta,
423 
424 
425  std::vector< std::vector<double> > etaintervals;
426  std::vector< std::vector<double> > pTintervals;
427  std::vector< std::vector<double> > phiintervals;
428  std::vector< std::vector<double> > dxyintervals;
429  std::vector< std::vector<double> > dzintervals;
430  std::vector< std::vector<double> > vertposintervals;
431  std::vector< std::vector<double> > zposintervals;
432  std::vector< std::vector<int> > totSIMeta,totRECeta,totASSeta,totASS2eta;
433  std::vector< std::vector<int> > totSIMpT,totRECpT,totASSpT,totASS2pT;
434  std::vector< std::vector<int> > totSIM_hit,totREC_hit,totASS_hit,totASS2_hit;
435  std::vector< std::vector<int> > totSIM_phi,totREC_phi,totASS_phi,totASS2_phi;
436  std::vector< std::vector<int> > totSIM_dxy,totREC_dxy,totASS_dxy,totASS2_dxy;
437  std::vector< std::vector<int> > totSIM_dz,totREC_dz,totASS_dz,totASS2_dz;
438  std::vector< std::vector<int> > totSIM_vertpos,totASS_vertpos,totSIM_zpos,totASS_zpos;
439 
440  // for muon Validation (SimToReco distributions for Quality > 0.5, 0.75)
441  std::vector<MonitorElement*> h_PurityVsQuality;
442  std::vector< std::vector<int> > totASSeta_Quality05,totASSeta_Quality075;
443  std::vector< std::vector<int> > totASSpT_Quality05, totASSpT_Quality075;
444  std::vector< std::vector<int> > totASS_phi_Quality05, totASS_phi_Quality075;
445 
446 };
447 
448 
449 #endif
std::vector< MonitorElement * > h_assoc2phi
std::vector< MonitorElement * > h_recoeta
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
type
Definition: HCALResponse.h:21
std::vector< MonitorElement * > nrecHit_vs_nsimHit_sim2rec
std::vector< MonitorElement * > h_DThits_eta
std::vector< MonitorElement * > h_assoc2hit
std::vector< std::vector< int > > totASS_zpos
int i
Definition: DBlmapReader.cc:9
std::vector< MonitorElement * > h_PurityVsQuality
std::vector< std::vector< int > > totASSeta_Quality05
std::vector< MonitorElement * > h_recopT
edm::ESHandle< MagneticField > theMF
void setBinContent(int binx, double content)
set content of bin (1-D)
std::vector< std::vector< int > > totREC_phi
std::vector< MonitorElement * > h_assoc2dxy
list numerator
Definition: cuy.py:483
std::vector< MonitorElement * > nrecHit_vs_nsimHit_rec2sim
std::vector< std::vector< int > > totASS2_hit
FWCore Framework interface EventSetupRecordImplementation h
Helper function to determine trigger accepts.
std::vector< edm::EDGetTokenT< edm::View< reco::Track > > > track_Collection_Token
void fillPlotFromVectors(MonitorElement *h, std::vector< int > &numerator, std::vector< int > &denominator, std::string type)
std::vector< MonitorElement * > h_assocpT_Quality075
std::vector< std::vector< int > > totRECpT
std::vector< TrackingParticle > TrackingParticleCollection
std::vector< std::vector< int > > totREC_dz
std::vector< MonitorElement * > nrec_vs_nsim
std::vector< MonitorElement * > h_pullDz
std::vector< MonitorElement * > h_recohit
std::vector< MonitorElement * > h_etaSIM
std::vector< MonitorElement * > h_assocvertpos
std::vector< MonitorElement * > h_fakes
virtual double getEta(double eta)
std::vector< MonitorElement * > h_eta
std::vector< std::vector< int > > totASS_dz
std::vector< std::vector< double > > etaintervals
std::vector< MonitorElement * > h_pt
std::vector< MonitorElement * > h_pullQoverp
std::vector< std::vector< int > > totSIM_zpos
std::vector< MonitorElement * > h_CSChits_eta
std::vector< std::vector< int > > totASS2_dz
std::vector< std::vector< int > > totASS_phi_Quality05
std::vector< MonitorElement * > h_assoceta
std::vector< MonitorElement * > h_tracks
std::vector< std::vector< double > > dxyintervals
std::vector< MonitorElement * > h_assoceta_Quality075
std::vector< MonitorElement * > nDThits_vs_eta
std::vector< std::vector< int > > totASS_phi
std::vector< std::vector< int > > totASS_dxy
std::vector< MonitorElement * > h_simuldxy
std::vector< std::vector< int > > totSIM_dxy
std::vector< MonitorElement * > h_simuldz
std::vector< std::vector< int > > totASSeta_Quality075
std::vector< MonitorElement * > nhits_vs_eta
tuple d
Definition: ztail.py:151
virtual double getPt(double pt)
std::vector< MonitorElement * > h_assoczpos
std::vector< MonitorElement * > h_simulphi
list denominator
Definition: cuy.py:484
std::vector< std::vector< int > > totASS2pT
std::vector< MonitorElement * > h_vertposSIM
edm::EDGetTokenT< TrackingParticleCollection > tp_fake_Token
virtual void doProfileX(TH2 *th2, MonitorElement *me)
std::vector< edm::InputTag > label
std::vector< MonitorElement * > h_assocSharedHit
std::vector< std::vector< double > > pTintervals
virtual ~MuonTrackValidatorBase()
Destructor.
std::vector< std::vector< int > > totASS2eta
T sqrt(T t)
Definition: SSEVec.h:18
std::vector< std::vector< int > > totSIMpT
std::vector< std::vector< int > > totREC_dxy
std::vector< MonitorElement * > h_assoc2dz
MuonTrackValidatorBase(const edm::ParameterSet &pset, edm::ConsumesCollector iC)
Constructor.
std::vector< MonitorElement * > h_pullPhi
std::vector< std::vector< int > > totSIM_hit
std::vector< MonitorElement * > h_GEMhits_eta
std::vector< MonitorElement * > h_recophi
std::vector< std::vector< int > > totASSpT
int j
Definition: DBlmapReader.cc:9
std::vector< std::vector< int > > totASS_phi_Quality075
std::vector< MonitorElement * > h_pullTheta
std::vector< std::vector< int > > totSIM_vertpos
std::vector< std::vector< int > > totASSpT_Quality05
void setBinError(int binx, double error)
set uncertainty on content of bin (1-D)
std::vector< std::vector< int > > totREC_hit
std::vector< MonitorElement * > h_simulhit
std::vector< std::vector< int > > totSIMeta
std::vector< std::vector< int > > totASS2_dxy
std::vector< MonitorElement * > h_charge
std::vector< MonitorElement * > h_assocphi
virtual void doProfileX(MonitorElement *th2m, MonitorElement *me)
std::vector< std::vector< int > > totASS2_phi
std::vector< std::vector< double > > phiintervals
std::vector< std::vector< int > > totASSpT_Quality075
std::vector< MonitorElement * > h_assocpT
std::vector< MonitorElement * > h_pullDxy
std::vector< MonitorElement * > h_simulpT
std::vector< MonitorElement * > h_tracksSIM
std::vector< MonitorElement * > h_assocphi_Quality05
std::vector< MonitorElement * > h_simulzpos
std::vector< MonitorElement * > h_recodz
std::vector< MonitorElement * > h_assocphi_Quality075
std::vector< std::vector< int > > totSIM_phi
void fillPlotFromVector(MonitorElement *h, std::vector< int > &vec)
std::vector< MonitorElement * > h_hits_eta
std::vector< MonitorElement * > h_hits
double p1[4]
Definition: TauolaWrapper.h:89
std::vector< std::vector< int > > totASSeta
std::vector< MonitorElement * > h_simulvertpos
MuonTrackValidatorBase(const edm::ParameterSet &pset)
TProfile * getTProfile(void) const
std::vector< std::vector< int > > totRECeta
std::vector< std::vector< double > > vertposintervals
std::vector< std::vector< double > > dzintervals
std::vector< MonitorElement * > h_recodxy
std::vector< MonitorElement * > h_ptSIM
int getNbinsX(void) const
get # of bins in X-axis
std::vector< MonitorElement * > h_assocdz
std::vector< std::vector< double > > zposintervals
std::vector< MonitorElement * > h_assocpT_Quality05
std::vector< MonitorElement * > h_RPChits_eta
std::vector< MonitorElement * > h_assoc2pT
std::vector< MonitorElement * > h_assocFraction
volatile std::atomic< bool > shutdown_flag false
TH2F * getTH2F(void) const
std::vector< std::vector< int > > totSIM_dz
std::vector< std::string > associators
std::vector< MonitorElement * > h_assoceta_Quality05
std::vector< MonitorElement * > h_assocdxy
edm::EDGetTokenT< TrackingParticleCollection > tp_effic_Token
std::vector< MonitorElement * > nRPChits_vs_eta
std::vector< std::vector< int > > totASS_vertpos
std::vector< MonitorElement * > h_assochit
Power< A, B >::type pow(const A &a, const B &b)
Definition: Power.h:40
std::vector< std::vector< int > > totASS_hit
std::vector< MonitorElement * > nGEMhits_vs_eta
std::vector< MonitorElement * > nCSChits_vs_eta
std::vector< MonitorElement * > h_simuleta
std::vector< MonitorElement * > h_assoc2eta
edm::EDGetTokenT< reco::BeamSpot > bsSrc_Token