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 
11 #include <memory>
12 
16 
19 
21 
25 
29 
30 #include <iostream>
31 #include <sstream>
32 #include <string>
33 #include <TH1F.h>
34 #include <TH2F.h>
35 
37  public:
40  label(pset.getParameter< std::vector<edm::InputTag> >("label")),
41  usetracker(pset.getParameter<bool>("usetracker")),
42  usemuon(pset.getParameter<bool>("usemuon")),
43  bsSrc(pset.getParameter< edm::InputTag >("beamSpot")),
44  label_tp_effic(pset.getParameter< edm::InputTag >("label_tp_effic")),
45  label_tp_fake(pset.getParameter< edm::InputTag >("label_tp_fake")),
46  associators(pset.getParameter< std::vector<std::string> >("associators")),
47  out(pset.getParameter<std::string>("outputFile")),
48  parametersDefiner(pset.getParameter<std::string>("parametersDefiner")),
49  min(pset.getParameter<double>("min")),
50  max(pset.getParameter<double>("max")),
51  nint(pset.getParameter<int>("nint")),
52  useFabs(pset.getParameter<bool>("useFabsEta")),
53  minpT(pset.getParameter<double>("minpT")),
54  maxpT(pset.getParameter<double>("maxpT")),
55  nintpT(pset.getParameter<int>("nintpT")),
56  minHit(pset.getParameter<double>("minHit")),
57  maxHit(pset.getParameter<double>("maxHit")),
58  nintHit(pset.getParameter<int>("nintHit")),
59  minPhi(pset.getParameter<double>("minPhi")),
60  maxPhi(pset.getParameter<double>("maxPhi")),
61  nintPhi(pset.getParameter<int>("nintPhi")),
62  minDxy(pset.getParameter<double>("minDxy")),
63  maxDxy(pset.getParameter<double>("maxDxy")),
64  nintDxy(pset.getParameter<int>("nintDxy")),
65  minDz(pset.getParameter<double>("minDz")),
66  maxDz(pset.getParameter<double>("maxDz")),
67  nintDz(pset.getParameter<int>("nintDz")),
68  minVertpos(pset.getParameter<double>("minVertpos")),
69  maxVertpos(pset.getParameter<double>("maxVertpos")),
70  nintVertpos(pset.getParameter<int>("nintVertpos")),
71  minZpos(pset.getParameter<double>("minZpos")),
72  maxZpos(pset.getParameter<double>("maxZpos")),
73  nintZpos(pset.getParameter<int>("nintZpos")),
74  useInvPt(pset.getParameter<bool>("useInvPt")),
75  //
76  ptRes_rangeMin(pset.getParameter<double>("ptRes_rangeMin")),
77  ptRes_rangeMax(pset.getParameter<double>("ptRes_rangeMax")),
78  phiRes_rangeMin(pset.getParameter<double>("phiRes_rangeMin")),
79  phiRes_rangeMax(pset.getParameter<double>("phiRes_rangeMax")),
80  cotThetaRes_rangeMin(pset.getParameter<double>("cotThetaRes_rangeMin")),
81  cotThetaRes_rangeMax(pset.getParameter<double>("cotThetaRes_rangeMax")),
82  dxyRes_rangeMin(pset.getParameter<double>("dxyRes_rangeMin")),
83  dxyRes_rangeMax(pset.getParameter<double>("dxyRes_rangeMax")),
84  dzRes_rangeMin(pset.getParameter<double>("dzRes_rangeMin")),
85  dzRes_rangeMax(pset.getParameter<double>("dzRes_rangeMax")),
86  ptRes_nbin(pset.getParameter<int>("ptRes_nbin")),
87  cotThetaRes_nbin(pset.getParameter<int>("cotThetaRes_nbin")),
88  phiRes_nbin(pset.getParameter<int>("phiRes_nbin")),
89  dxyRes_nbin(pset.getParameter<int>("dxyRes_nbin")),
90  dzRes_nbin(pset.getParameter<int>("dzRes_nbin")),
91  ignoremissingtkcollection_(pset.getUntrackedParameter<bool>("ignoremissingtrackcollection",false)),
92  useLogPt(pset.getUntrackedParameter<bool>("useLogPt",false))
93  //
94  {
96  if(useLogPt){
97  maxpT=log10(maxpT);
98  minpT=log10(minpT);
99  }
100  }
101 
104 
105  virtual void doProfileX(TH2 * th2, MonitorElement* me){
106  if (th2->GetNbinsX()==me->getNbinsX()){
107  TProfile * p1 = (TProfile*) th2->ProfileX();
108  p1->Copy(*me->getTProfile());
109  delete p1;
110  } else {
111  throw cms::Exception("MuonTrackValidator") << "Different number of bins!";
112  }
113  }
114 
115  virtual void doProfileX(MonitorElement * th2m, MonitorElement* me) {
116  doProfileX(th2m->getTH2F(), me);
117  }
118 
119  virtual double getEta(double eta) {
120  if (useFabs) return fabs(eta);
121  else return eta;
122  }
123 
124  virtual double getPt(double pt) {
125  if (useInvPt && pt!=0) return 1/pt;
126  else return pt;
127  }
128 
129  void fillPlotFromVector(MonitorElement* h, std::vector<int>& vec) {
130  for (unsigned int j=0; j<vec.size(); j++){
131  h->setBinContent(j+1, vec[j]);
132  }
133  }
134 
135  void fillPlotFromVectors(MonitorElement* h, std::vector<int>& numerator, std::vector<int>& denominator,std::string type){
136  double value,err;
137  for (unsigned int j=0; j<numerator.size(); j++){
138  if (denominator[j]!=0){
139  if (type=="effic")
140  value = ((double) numerator[j])/((double) denominator[j]);
141  else if (type=="fakerate")
142  value = 1-((double) numerator[j])/((double) denominator[j]);
143  else return;
144  err = sqrt( value*(1-value)/(double) denominator[j] );
145  h->setBinContent(j+1, value);
146  h->setBinError(j+1,err);
147  }
148  else {
149  h->setBinContent(j+1, 0);
150  }
151  }
152  }
153 
154  void BinLogX(TH1*h)
155  {
156 
157  TAxis *axis = h->GetXaxis();
158  int bins = axis->GetNbins();
159 
160  float from = axis->GetXmin();
161  float to = axis->GetXmax();
162  float width = (to - from) / bins;
163  float *new_bins = new float[bins + 1];
164 
165  for (int i = 0; i <= bins; i++) {
166  new_bins[i] = TMath::Power(10, from + i * width);
167 
168  }
169  axis->Set(bins, new_bins);
170  delete[] new_bins;
171  }
172 
173  void setUpVectors() {
174  std::vector<double> etaintervalsv;
175  std::vector<double> phiintervalsv;
176  std::vector<double> pTintervalsv;
177  std::vector<double> dxyintervalsv;
178  std::vector<double> dzintervalsv;
179  std::vector<double> vertposintervalsv;
180  std::vector<double> zposintervalsv;
181  std::vector<int> totSIMveta,totASSveta,totASS2veta,totRECveta;
182  std::vector<int> totSIMvpT,totASSvpT,totASS2vpT,totRECvpT;
183  std::vector<int> totSIMv_hit,totASSv_hit,totASS2v_hit,totRECv_hit;
184  std::vector<int> totSIMv_phi,totASSv_phi,totASS2v_phi,totRECv_phi;
185  std::vector<int> totSIMv_dxy,totASSv_dxy,totASS2v_dxy,totRECv_dxy;
186  std::vector<int> totSIMv_dz,totASSv_dz,totASS2v_dz,totRECv_dz;
187  std::vector<int> totSIMv_vertpos,totASSv_vertpos,totSIMv_zpos,totASSv_zpos;
188 
189  // for muon Validation
190  std::vector<int> totASSveta_Quality05, totASSveta_Quality075;
191  std::vector<int> totASSvpT_Quality05, totASSvpT_Quality075;
192  std::vector<int> totASSv_phi_Quality05, totASSv_phi_Quality075;
193 
194  double step=(max-min)/nint;
195  std::ostringstream title,name;
196  etaintervalsv.push_back(min);
197  for (int k=1;k<nint+1;k++) {
198  double d=min+k*step;
199  etaintervalsv.push_back(d);
200  totSIMveta.push_back(0);
201  totASSveta.push_back(0);
202  totASS2veta.push_back(0);
203  totRECveta.push_back(0);
204  //
205  totASSveta_Quality05.push_back(0);
206  totASSveta_Quality075.push_back(0);
207  }
208  etaintervals.push_back(etaintervalsv);
209  totSIMeta.push_back(totSIMveta);
210  totASSeta.push_back(totASSveta);
211  totASS2eta.push_back(totASS2veta);
212  totRECeta.push_back(totRECveta);
213  //
214  totASSeta_Quality05.push_back(totASSveta_Quality05);
215  totASSeta_Quality075.push_back(totASSveta_Quality075);
216 
217  double steppT = (maxpT-minpT)/nintpT;
218  pTintervalsv.push_back(minpT);
219  for (int k=1;k<nintpT+1;k++) {
220  double d=0;
221  if(useLogPt)d=pow(10,minpT+k*steppT);
222  else d=minpT+k*steppT;
223  pTintervalsv.push_back(d);
224  totSIMvpT.push_back(0);
225  totASSvpT.push_back(0);
226  totASS2vpT.push_back(0);
227  totRECvpT.push_back(0);
228  //
229  totASSvpT_Quality05.push_back(0);
230  totASSvpT_Quality075.push_back(0);
231  }
232  pTintervals.push_back(pTintervalsv);
233  totSIMpT.push_back(totSIMvpT);
234  totASSpT.push_back(totASSvpT);
235  totASS2pT.push_back(totASS2vpT);
236  totRECpT.push_back(totRECvpT);
237  //
238  totASSpT_Quality05.push_back(totASSvpT_Quality05);
239  totASSpT_Quality075.push_back(totASSvpT_Quality075);
240 
241  for (int k=1;k<nintHit+1;k++) {
242  totSIMv_hit.push_back(0);
243  totASSv_hit.push_back(0);
244  totASS2v_hit.push_back(0);
245  totRECv_hit.push_back(0);
246  }
247  totSIM_hit.push_back(totSIMv_hit);
248  totASS_hit.push_back(totASSv_hit);
249  totASS2_hit.push_back(totASS2v_hit);
250  totREC_hit.push_back(totRECv_hit);
251 
252  double stepPhi = (maxPhi-minPhi)/nintPhi;
253  phiintervalsv.push_back(minPhi);
254  for (int k=1;k<nintPhi+1;k++) {
255  double d=minPhi+k*stepPhi;
256  phiintervalsv.push_back(d);
257  totSIMv_phi.push_back(0);
258  totASSv_phi.push_back(0);
259  totASS2v_phi.push_back(0);
260  totRECv_phi.push_back(0);
261  //
262  totASSv_phi_Quality05.push_back(0);
263  totASSv_phi_Quality075.push_back(0);
264  }
265  phiintervals.push_back(phiintervalsv);
266  totSIM_phi.push_back(totSIMv_phi);
267  totASS_phi.push_back(totASSv_phi);
268  totASS2_phi.push_back(totASS2v_phi);
269  totREC_phi.push_back(totRECv_phi);
270  //
271  totASS_phi_Quality05.push_back(totASSv_phi_Quality05);
272  totASS_phi_Quality075.push_back(totASSv_phi_Quality075);
273 
274  double stepDxy = (maxDxy-minDxy)/nintDxy;
275  dxyintervalsv.push_back(minDxy);
276  for (int k=1;k<nintDxy+1;k++) {
277  double d=minDxy+k*stepDxy;
278  dxyintervalsv.push_back(d);
279  totSIMv_dxy.push_back(0);
280  totASSv_dxy.push_back(0);
281  totASS2v_dxy.push_back(0);
282  totRECv_dxy.push_back(0);
283  }
284  dxyintervals.push_back(dxyintervalsv);
285  totSIM_dxy.push_back(totSIMv_dxy);
286  totASS_dxy.push_back(totASSv_dxy);
287  totASS2_dxy.push_back(totASS2v_dxy);
288  totREC_dxy.push_back(totRECv_dxy);
289 
290 
291  double stepDz = (maxDz-minDz)/nintDz;
292  dzintervalsv.push_back(minDz);
293  for (int k=1;k<nintDz+1;k++) {
294  double d=minDz+k*stepDz;
295  dzintervalsv.push_back(d);
296  totSIMv_dz.push_back(0);
297  totASSv_dz.push_back(0);
298  totASS2v_dz.push_back(0);
299  totRECv_dz.push_back(0);
300  }
301  dzintervals.push_back(dzintervalsv);
302  totSIM_dz.push_back(totSIMv_dz);
303  totASS_dz.push_back(totASSv_dz);
304  totASS2_dz.push_back(totASS2v_dz);
305  totREC_dz.push_back(totRECv_dz);
306 
307  double stepVertpos = (maxVertpos-minVertpos)/nintVertpos;
308  vertposintervalsv.push_back(minVertpos);
309  for (int k=1;k<nintVertpos+1;k++) {
310  double d=minVertpos+k*stepVertpos;
311  vertposintervalsv.push_back(d);
312  totSIMv_vertpos.push_back(0);
313  totASSv_vertpos.push_back(0);
314  }
315  vertposintervals.push_back(vertposintervalsv);
316  totSIM_vertpos.push_back(totSIMv_vertpos);
317  totASS_vertpos.push_back(totASSv_vertpos);
318 
319  double stepZpos = (maxZpos-minZpos)/nintZpos;
320  zposintervalsv.push_back(minZpos);
321  for (int k=1;k<nintZpos+1;k++) {
322  double d=minZpos+k*stepZpos;
323  zposintervalsv.push_back(d);
324  totSIMv_zpos.push_back(0);
325  totASSv_zpos.push_back(0);
326  }
327  zposintervals.push_back(zposintervalsv);
328  totSIM_zpos.push_back(totSIMv_zpos);
329  totASS_zpos.push_back(totASSv_zpos);
330 
331  }
332 
333  protected:
334 
336 
337  std::vector<edm::InputTag> label;
339  bool usemuon;
343  std::vector<std::string> associators;
344  std::string out;
345  std::string parametersDefiner;
346 
347  double min, max;
348  int nint;
349  bool useFabs;
350  double minpT, maxpT;
351  int nintpT;
352  double minHit, maxHit;
353  int nintHit;
354  double minPhi, maxPhi;
355  int nintPhi;
356  double minDxy, maxDxy;
357  int nintDxy;
358  double minDz, maxDz;
359  int nintDz;
362  double minZpos, maxZpos;
363  int nintZpos;
364  bool useInvPt;
365  //
371  bool useLogPt;
372 
374  std::vector<const TrackAssociatorBase*> associator;
375 
376  //sim
377  std::vector<MonitorElement*> h_ptSIM, h_etaSIM, h_tracksSIM, h_vertposSIM;
378 
379  //1D
380  std::vector<MonitorElement*> h_tracks, h_fakes, h_hits, h_charge;
381  std::vector<MonitorElement*> h_recoeta, h_assoceta, h_assoc2eta, h_simuleta;
382  std::vector<MonitorElement*> h_recopT, h_assocpT, h_assoc2pT, h_simulpT;
383  std::vector<MonitorElement*> h_recohit, h_assochit, h_assoc2hit, h_simulhit;
384  std::vector<MonitorElement*> h_recophi, h_assocphi, h_assoc2phi, h_simulphi;
385  std::vector<MonitorElement*> h_recodxy, h_assocdxy, h_assoc2dxy, h_simuldxy;
386  std::vector<MonitorElement*> h_recodz, h_assocdz, h_assoc2dz, h_simuldz;
387  std::vector<MonitorElement*> h_assocvertpos, h_simulvertpos, h_assoczpos, h_simulzpos;
389 
390  std::vector<MonitorElement*> h_assoceta_Quality05, h_assoceta_Quality075;
391  std::vector<MonitorElement*> h_assocpT_Quality05, h_assocpT_Quality075;
392  std::vector<MonitorElement*> h_assocphi_Quality05, h_assocphi_Quality075;
393 
394 
395  //2D
396  std::vector<MonitorElement*> nrec_vs_nsim;
397  std::vector<MonitorElement*> nrecHit_vs_nsimHit_sim2rec;
398  std::vector<MonitorElement*> nrecHit_vs_nsimHit_rec2sim;
399 
400  //assoc hits
401  std::vector<MonitorElement*> h_assocFraction, h_assocSharedHit;
402 
403  //#hit vs eta: to be used with doProfileX
404  std::vector<MonitorElement*> nhits_vs_eta,
406 
407  std::vector<MonitorElement*> h_hits_eta,
409 
410 
411  std::vector< std::vector<double> > etaintervals;
412  std::vector< std::vector<double> > pTintervals;
413  std::vector< std::vector<double> > phiintervals;
414  std::vector< std::vector<double> > dxyintervals;
415  std::vector< std::vector<double> > dzintervals;
416  std::vector< std::vector<double> > vertposintervals;
417  std::vector< std::vector<double> > zposintervals;
418  std::vector< std::vector<int> > totSIMeta,totRECeta,totASSeta,totASS2eta;
419  std::vector< std::vector<int> > totSIMpT,totRECpT,totASSpT,totASS2pT;
420  std::vector< std::vector<int> > totSIM_hit,totREC_hit,totASS_hit,totASS2_hit;
421  std::vector< std::vector<int> > totSIM_phi,totREC_phi,totASS_phi,totASS2_phi;
422  std::vector< std::vector<int> > totSIM_dxy,totREC_dxy,totASS_dxy,totASS2_dxy;
423  std::vector< std::vector<int> > totSIM_dz,totREC_dz,totASS_dz,totASS2_dz;
424  std::vector< std::vector<int> > totSIM_vertpos,totASS_vertpos,totSIM_zpos,totASS_zpos;
425 
426  // for muon Validation (SimToReco distributions for Quality > 0.5, 0.75)
427  std::vector<MonitorElement*> h_PurityVsQuality;
428  std::vector< std::vector<int> > totASSeta_Quality05,totASSeta_Quality075;
429  std::vector< std::vector<int> > totASSpT_Quality05, totASSpT_Quality075;
430  std::vector< std::vector<int> > totASS_phi_Quality05, totASS_phi_Quality075;
431 
432 };
433 
434 
435 #endif
std::vector< MonitorElement * > h_assoc2phi
std::vector< MonitorElement * > h_recoeta
type
Definition: HCALResponse.h:22
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
std::vector< MonitorElement * > nrecHit_vs_nsimHit_rec2sim
std::vector< std::vector< int > > totASS2_hit
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< std::vector< int > > totREC_dz
std::vector< MonitorElement * > nrec_vs_nsim
list step
Definition: launcher.py:15
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
T eta() const
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
virtual double getPt(double pt)
std::vector< MonitorElement * > h_assoczpos
std::vector< MonitorElement * > h_simulphi
std::vector< std::vector< int > > totASS2pT
std::vector< MonitorElement * > h_vertposSIM
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:46
std::vector< std::vector< int > > totSIMpT
std::vector< std::vector< int > > totREC_dxy
std::vector< MonitorElement * > h_assoc2dz
std::vector< MonitorElement * > h_pullPhi
std::vector< std::vector< int > > totSIM_hit
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
int k[5][pyjets_maxn]
static std::string from(" from ")
std::vector< std::vector< int > > totASSpT_Quality075
std::vector< MonitorElement * > h_assocpT
std::vector< MonitorElement * > h_pullDxy
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
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)
Constructor.
std::vector< const TrackAssociatorBase * > associator
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
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
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 * > nCSChits_vs_eta
std::vector< MonitorElement * > h_simuleta
std::vector< MonitorElement * > h_assoc2eta