CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CSCValHists.cc
Go to the documentation of this file.
2 #include <algorithm>
3 
4 using namespace std;
5 
6 
8 
9  std::cout << "Initializing Histogram Manager..." << std::endl;
10 
11  }
12 
13 
15 
16  }
17 
18 
20 
21  std::vector<std::string> theFolders;
22  std::vector<std::string>::iterator fit;
23  theFile->cd();
24 
25  std::map<std::string,std::pair<TH1*,string> >::const_iterator mapit;
26  for (mapit = theMap.begin(); mapit != theMap.end(); mapit++){
27  std::string folder = (*mapit).second.second.c_str();
28  fit = find(theFolders.begin(), theFolders.end(), folder);
29  if (fit == theFolders.end()){
30  theFolders.push_back(folder);
31  theFile->mkdir(folder.c_str());
32  }
33  theFile->cd((*mapit).second.second.c_str());
34  (*mapit).second.first->Write();
35  theFile->cd();
36  }
37 
38  }
39 
40 
42 
43  theFile->cd("recHits");
44  rHTree->Write();
45  theFile->cd();
46 
47  theFile->cd("Segments");
48  segTree->Write();
49  theFile->cd();
50 
51 
52  }
53 
54 
56 
57  // Create the root tree to hold position info
58  rHTree = new TTree("rHPositions","Local and Global reconstructed positions for recHits");
59  segTree = new TTree("segPositions","Local and Global reconstructed positions for segments");
60 
61  // Create a branch on the tree
62  rHTree->Branch("rHpos",&rHpos,"endcap/I:station/I:ring/I:chamber/I:layer/I:localx/F:localy/F:globalx/F:globaly/F");
63  segTree->Branch("segpos",&segpos,"endcap/I:station/I:ring/I:chamber/I:layer/I:localx/F:localy/F:globalx/F:globaly/F");
64 
65  }
66 
67 
68  void CSCValHists::fillRechitTree(float x, float y, float gx, float gy, int en, int st, int ri, int ch, int la){
69 
70  // Fill the rechit position branch
71  rHpos.localx = x;
72  rHpos.localy = y;
73  rHpos.globalx = gx;
74  rHpos.globaly = gy;
75  rHpos.endcap = en;
76  rHpos.ring = ri;
77  rHpos.station = st;
78  rHpos.chamber = ch;
79  rHpos.layer = la;
80  rHTree->Fill();
81 
82  }
83 
84  void CSCValHists::fillSegmentTree(float x, float y, float gx, float gy, int en, int st, int ri, int ch){
85 
86  // Fill the segment position branch
87  segpos.localx = x;
88  segpos.localy = y;
89  segpos.globalx = gx;
90  segpos.globaly = gy;
91  segpos.endcap = en;
92  segpos.ring = ri;
93  segpos.station = st;
94  segpos.chamber = ch;
95  segpos.layer = 0;
96  segTree->Fill();
97 
98  }
99 
101 
102  theMap[name] = std::pair<TH1*,string>(thePlot, folder);
103 
104  }
105 
106 
107  void CSCValHists::fillCalibHist(float x, std::string name, std::string title, int bins, float xmin, float xmax,
108  int bin, std::string folder){
109 
110  std::map<std::string,std::pair<TH1*,string> >::iterator it;
111  it = theMap.find(name);
112  if (it == theMap.end()){
113  theMap[name] = std::pair<TH1*,string>(new TH1I(name.c_str(),title.c_str(),bins,xmin,xmax), folder);
114  }
115 
116  theMap[name].first->SetBinContent(bin,x);
117 
118  }
119 
120 
122  int bins, float xmin, float xmax, std::string folder){
123 
124  std::map<std::string,std::pair<TH1*,string> >::iterator it;
125  it = theMap.find(name);
126  if (it == theMap.end()){
127  theMap[name] = std::pair<TH1*,string>(new TH1I(name.c_str(),title.c_str(),bins,xmin,xmax), folder);
128  }
129 
130 
131  theMap[name].first->Fill(x);
132 
133  }
134 
135 
137  int binsx, float xmin, float xmax,
138  int binsy, float ymin, float ymax, std::string folder){
139 
140  std::map<std::string,std::pair<TH1*,string> >::iterator it;
141  it = theMap.find(name);
142  if (it == theMap.end()){
143  theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax),folder);
144  }
145 
146  theMap[name].first->Fill(x,y);
147 
148  }
149 
150 
152  int bins, float xmin, float xmax, std::string folder){
153 
155  if (id.endcap() == 1) endcap = "+";
156  if (id.endcap() == 2) endcap = "-";
157 
158  std::map<std::string,std::pair<TH1*,string> >::iterator it;
159  ostringstream oss1;
160  ostringstream oss2;
161  oss1 << name << endcap << id.station() << id.ring();
162  oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << ")";
163  name = oss1.str();
164  title = oss2.str();
165  it = theMap.find(name);
166  if (it == theMap.end()){
167  theMap[name] = std::pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax), folder);
168  }
169 
170  theMap[name].first->Fill(x);
171 
172  }
173 
175  int binsx, float xmin, float xmax,
176  int binsy, float ymin, float ymax, std::string folder){
177 
179  if (id.endcap() == 1) endcap = "+";
180  if (id.endcap() == 2) endcap = "-";
181 
182  std::map<std::string,std::pair<TH1*,string> >::iterator it;
183  ostringstream oss1;
184  ostringstream oss2;
185  oss1 << name << endcap << id.station() << id.ring();
186  oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << ")";
187  name = oss1.str();
188  title = oss2.str();
189  it = theMap.find(name);
190  if (it == theMap.end()){
191  theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax), folder);
192  }
193 
194  theMap[name].first->Fill(x,y);
195 
196  }
197 
198 
199  void CSCValHists::fill1DHistByCrate(float x, string name, string title, CSCDetId id,
200  int bins, float xmin, float xmax, string folder){
201 
202  int crate = crate_lookup(id);
203 
204  map<string,pair<TH1*,string> >::iterator it;
205  ostringstream oss1;
206  ostringstream oss2;
207  oss1 << name << "_crate_" << crate;
208  oss2 << title << " (crate " << crate << ")";
209  name = oss1.str();
210  title = oss2.str();
211  it = theMap.find(name);
212  if (it == theMap.end()){
213  theMap[name] = pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax), folder);
214  }
215 
216  theMap[name].first->Fill(x);
217 
218  }
219 
220  void CSCValHists::fill2DHistByCrate(float x, float y, string name, string title, CSCDetId id,
221  int binsx, float xmin, float xmax,
222  int binsy, float ymin, float ymax, string folder){
223 
224  int crate = crate_lookup(id);
225 
226  map<string,pair<TH1*,string> >::iterator it;
227  ostringstream oss1;
228  ostringstream oss2;
229  oss1 << name << "_crate_" << crate;
230  oss2 << title << " (crate " << crate << ")";
231  name = oss1.str();
232  title = oss2.str();
233  it = theMap.find(name);
234  if (it == theMap.end()){
235  theMap[name] = pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax), folder);
236  }
237 
238  theMap[name].first->Fill(x,y);
239 
240  }
241 
242 
243 
244  void CSCValHists::fill1DHistByStation(float x, string name, string title, CSCDetId id,
245  int bins, float xmin, float xmax, string folder){
246 
247  string endcap;
248  if (id.endcap() == 1) endcap = "+";
249  if (id.endcap() == 2) endcap = "-";
250 
251  map<string,pair<TH1*,string> >::iterator it;
252  ostringstream oss1;
253  ostringstream oss2;
254  oss1 << name << endcap << id.station();
255  oss2 << title << " (Station " << endcap << id.station() << ")";
256  name = oss1.str();
257  title = oss2.str();
258  it = theMap.find(name);
259  if (it == theMap.end()){
260  theMap[name] = pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax), folder);
261  }
262 
263  theMap[name].first->Fill(x);
264 
265  }
266 
267 
268  void CSCValHists::fill2DHistByStation(float x, float y, string name, string title, CSCDetId id,
269  int binsx, float xmin, float xmax,
270  int binsy, float ymin, float ymax, std::string folder){
271 
273  if (id.endcap() == 1) endcap = "+";
274  if (id.endcap() == 2) endcap = "-";
275 
276  std::map<std::string,std::pair<TH1*,string> >::iterator it;
277  ostringstream oss1;
278  ostringstream oss2;
279  oss1 << name << endcap << id.station();
280  oss2 << title << " (Station " << endcap << id.station() << ")";
281  name = oss1.str();
282  title = oss2.str();
283  it = theMap.find(name);
284  if (it == theMap.end()){
285  theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax), folder);
286  }
287 
288  theMap[name].first->Fill(x,y);
289 
290  }
291 
292 
294  int bins, float xmin, float xmax, std::string folder){
295 
297  if (id.endcap() == 1) endcap = "+";
298  if (id.endcap() == 2) endcap = "-";
299 
300  std::map<std::string,std::pair<TH1*,string> >::iterator it;
301  ostringstream oss1;
302  ostringstream oss2;
303  oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber();
304  oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << ")";
305  name = oss1.str();
306  title = oss2.str();
307  it = theMap.find(name);
308  if (it == theMap.end()){
309  theMap[name] = std::pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax),folder);
310  }
311 
312  theMap[name].first->Fill(x);
313 
314  }
315 
316 
318  int binsx, float xmin, float xmax,
319  int binsy, float ymin, float ymax, std::string folder){
320 
322  if (id.endcap() == 1) endcap = "+";
323  if (id.endcap() == 2) endcap = "-";
324 
325  std::map<std::string,std::pair<TH1*,string> >::iterator it;
326  ostringstream oss1;
327  ostringstream oss2;
328  oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber();
329  oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << ")";
330  name = oss1.str();
331  title = oss2.str();
332  it = theMap.find(name);
333  if (it == theMap.end()){
334  theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax),folder);
335  }
336 
337  theMap[name].first->Fill(x,y);
338 
339  }
340 
341  void CSCValHists::fill2DHistByEvent(int run, int event, float z, string name, string title, CSCDetId id, string folder){
342 
343  string endcap;
344  if (id.endcap() == 1) endcap = "+";
345  if (id.endcap() == 2) endcap = "-";
346 
347  map<string,pair<TH1*,string> >::iterator it;
348  ostringstream oss1;
349  ostringstream oss2;
350  oss1 << name << "_" << run << "_" << event ;
351  oss2 << title << " ( Run: " << run << " Event: " << event << " )";
352  name = oss1.str();
353  title = oss2.str();
354  it = theMap.find(name);
355  if (it == theMap.end()){
356  theMap[name] = pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),36,0.5,36.5,18,0.5,18.5),folder);
357  }
358 
359  int x = id.chamber();
360  int y = id.ring();
361  if (y==4) y =1; //collapsing ME1/1a into ME1/1
362  if (id.station() >1)
363  y = y + 3 + (id.station()-2)*2;
364 
365  if (id.endcap()==1)
366  y = y+9;
367  else
368  y = -1*y+10;
369 
370  dynamic_cast<TH2F*>(theMap[name].first)->Fill(x,y,z);
371 
372  }
373 
374  void CSCValHists::fill2DHist(float z, string name, string title, CSCDetId id, string folder){
375 
376  map<string,pair<TH1*,string> >::iterator it;
377  it = theMap.find(name);
378  if (it == theMap.end()){
379  theMap[name] = pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),36,0.5,36.5,18,0.5,18.5),folder);
380  }
381 
382  int x = id.chamber();
383  int y = id.ring();
384  if (y==4) y =1; //collapsing ME1/1a into ME1/1
385  if (id.station() >1)
386  y = y + 3 + (id.station()-2)*2;
387 
388  if (id.endcap()==1)
389  y = y+9;
390  else
391  y = -1*y+10;
392 
393  dynamic_cast<TH2F*>(theMap[name].first)->Fill(x,y,z);
394 
395  }
396 
397  void CSCValHists::fill1DHistByLayer(float x, string name, string title, CSCDetId id,
398  int bins, float xmin, float xmax, string folder){
399 
401  if (id.endcap() == 1) endcap = "+";
402  if (id.endcap() == 2) endcap = "-";
403 
404  std::map<std::string,std::pair<TH1*,string> >::iterator it;
405  ostringstream oss1;
406  ostringstream oss2;
407  oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber() << "_L" << id.layer();
408  oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << "/L" << id.layer() << ")";
409  name = oss1.str();
410  title = oss2.str();
411  it = theMap.find(name);
412  if (it == theMap.end()){
413  theMap[name] = std::pair<TH1*,string>(new TH1F(name.c_str(),title.c_str(),bins,xmin,xmax),folder);
414  }
415 
416  theMap[name].first->Fill(x);
417 
418  }
419 
420 
421  void CSCValHists::fill2DHistByLayer(float x, float y, std::string name, std::string title, CSCDetId id,
422  int binsx, float xmin, float xmax,
423  int binsy, float ymin, float ymax, std::string folder){
424 
426  if (id.endcap() == 1) endcap = "+";
427  if (id.endcap() == 2) endcap = "-";
428 
429  std::map<std::string,std::pair<TH1*,string> >::iterator it;
430  ostringstream oss1;
431  ostringstream oss2;
432  oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber() << "_L" << id.layer();;
433  oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << "/L" << id.layer() << ")";
434  name = oss1.str();
435  title = oss2.str();
436  it = theMap.find(name);
437  if (it == theMap.end()){
438  theMap[name] = std::pair<TH1*,string>(new TH2F(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax),folder);
439  }
440 
441  theMap[name].first->Fill(x,y);
442 
443  }
444 
445 
446  void CSCValHists::fillProfile(float x, float y, std::string name, std::string title,
447  int binsx, float xmin, float xmax,
448  float ymin, float ymax, std::string folder){
449 
450  std::map<std::string,std::pair<TH1*,string> >::iterator it;
451  it = theMap.find(name);
452  if (it == theMap.end()){
453  theMap[name] = std::pair<TProfile*,string>(new TProfile(name.c_str(),title.c_str(),binsx,xmin,xmax,ymin,ymax), folder);
454  }
455 
456  theMap[name].first->Fill(x,y);
457 
458  }
459 
460 
461  void CSCValHists::fillProfileByType(float x, float y, std::string name, std::string title, CSCDetId id,
462  int binsx, float xmin, float xmax,
463  float ymin, float ymax, std::string folder){
464 
465  std::map<std::string,std::pair<TH1*,string> >::iterator it;
467  if (id.endcap() == 1) endcap = "+";
468  if (id.endcap() == 2) endcap = "-";
469 
470  ostringstream oss1;
471  ostringstream oss2;
472  oss1 << name << endcap << id.station() << id.ring();
473  oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << ")";
474  name = oss1.str();
475  title = oss2.str();
476 
477  it = theMap.find(name);
478  if (it == theMap.end()){
479  theMap[name] = std::pair<TProfile*,string>(new TProfile(name.c_str(),title.c_str(),binsx,xmin,xmax,ymin,ymax), folder);
480  }
481 
482  theMap[name].first->Fill(x,y);
483 
484  }
485 
486 
487  void CSCValHists::fillProfileByChamber(float x, float y, std::string name, std::string title, CSCDetId id,
488  int binsx, float xmin, float xmax,
489  float ymin, float ymax, std::string folder){
490 
491  std::map<std::string,std::pair<TH1*,string> >::iterator it;
493  if (id.endcap() == 1) endcap = "+";
494  if (id.endcap() == 2) endcap = "-";
495 
496  ostringstream oss1;
497  ostringstream oss2;
498  oss1 << name << "_" << endcap << id.station() << "_" << id.ring() << "_" << id.chamber();
499  oss2 << title << " (ME " << endcap << id.station() << "/" << id.ring() << "/" << id.chamber() << ")";
500  name = oss1.str();
501  title = oss2.str();
502 
503  it = theMap.find(name);
504  if (it == theMap.end()){
505  theMap[name] = std::pair<TProfile*,string>(new TProfile(name.c_str(),title.c_str(),binsx,xmin,xmax,ymin,ymax), folder);
506  }
507 
508  theMap[name].first->Fill(x,y);
509 
510  }
511 
512 
513  void CSCValHists::fill2DProfile(float x, float y, float z, std::string name, std::string title,
514  int binsx, float xmin, float xmax,
515  int binsy, float ymin, float ymax,
516  float zmin, float zmax, std::string folder){
517 
518  std::map<std::string,std::pair<TH1*,string> >::iterator it;
519 
520  it = theMap.find(name);
521  if (it == theMap.end()){
522  theMap[name] = std::pair<TProfile2D*,string>(new TProfile2D(name.c_str(),title.c_str(),binsx,xmin,xmax,binsy,ymin,ymax,zmin,zmax), folder);
523  }
524 
525  TProfile2D *tempp = (TProfile2D*)theMap[name].first;
526  tempp->Fill(x,y,z);
527 
528  }
529 
531 
532  int crate = 0;
533 
534  if (id.station() == 1){
535  if (id.chamber() == 36 || id.chamber() == 1 || id.chamber() == 2 ) crate = 1;
536  if (id.chamber() == 3 || id.chamber() == 4 || id.chamber() == 5 ) crate = 2;
537  if (id.chamber() == 6 || id.chamber() == 7 || id.chamber() == 8 ) crate = 3;
538  if (id.chamber() == 9 || id.chamber() == 10 || id.chamber() == 11 ) crate = 4;
539  if (id.chamber() == 12 || id.chamber() == 13 || id.chamber() == 14 ) crate = 5;
540  if (id.chamber() == 15 || id.chamber() == 16 || id.chamber() == 17 ) crate = 6;
541  if (id.chamber() == 18 || id.chamber() == 19 || id.chamber() == 20 ) crate = 7;
542  if (id.chamber() == 21 || id.chamber() == 22 || id.chamber() == 23 ) crate = 8;
543  if (id.chamber() == 24 || id.chamber() == 25 || id.chamber() == 26 ) crate = 9;
544  if (id.chamber() == 27 || id.chamber() == 28 || id.chamber() == 29 ) crate = 10;
545  if (id.chamber() == 30 || id.chamber() == 31 || id.chamber() == 32 ) crate = 11;
546  if (id.chamber() == 33 || id.chamber() == 34 || id.chamber() == 35 ) crate = 12;
547  }
548  else{
549  crate = 12 + id.triggerSector() + (id.station()-2)*6;
550  }
551 
552  if (id.endcap() == 2)
553  crate = crate+30;
554 
555  return crate;
556 
557 }
int crate_lookup(CSCDetId id)
Definition: CSCValHists.cc:530
void fill2DHistByStation(float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:268
void fillProfileByType(float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:461
void setupTrees()
Definition: CSCValHists.cc:55
void fillProfile(float x, float y, std::string name, std::string title, int binsx, float xmin, float xmax, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:446
void writeTrees(TFile *theFile)
Definition: CSCValHists.cc:41
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
void fill1DHist(float x, std::string name, std::string title, int bins, float xmin, float xmax, std::string folder)
Definition: CSCValHists.cc:121
void fill2DHistByCrate(float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:220
void fill1DHistByLayer(float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder)
Definition: CSCValHists.cc:397
void fillProfileByChamber(float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:487
T x() const
Cartesian x coordinate.
void writeHists(TFile *theFile)
Definition: CSCValHists.cc:19
void insertPlot(TH1 *thePlot, std::string name, std::string folder)
Definition: CSCValHists.cc:100
void Fill(HcalDetId &id, double val, std::vector< TH2F > &depth)
void fill1DHistByType(float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder)
Definition: CSCValHists.cc:151
void fillRechitTree(float x, float y, float gx, float gy, int en, int st, int ri, int ch, int la)
Definition: CSCValHists.cc:68
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
void fill1DHistByCrate(float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder)
Definition: CSCValHists.cc:199
void fill2DHistByLayer(float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:421
void fill1DHistByStation(float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder)
Definition: CSCValHists.cc:244
void fill1DHistByChamber(float x, std::string name, std::string title, CSCDetId id, int bins, float xmin, float xmax, std::string folder)
Definition: CSCValHists.cc:293
void fill2DHistByChamber(float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:317
void fill2DHistByEvent(int run, int event, float x, std::string name, std::string title, CSCDetId id, std::string folder)
Definition: CSCValHists.cc:341
void fill2DHist(float x, float y, std::string name, std::string title, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:136
void fill2DHistByType(float x, float y, std::string name, std::string title, CSCDetId id, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, std::string folder)
Definition: CSCValHists.cc:174
void fillSegmentTree(float x, float y, float gx, float gy, int en, int st, int ri, int ch)
Definition: CSCValHists.cc:84
tuple cout
Definition: gather_cfg.py:121
void fill2DProfile(float x, float y, float z, std::string name, std::string title, int binsx, float xmin, float xmax, int binsy, float ymin, float ymax, float zmin, float zmax, std::string folder)
Definition: CSCValHists.cc:513
void fillCalibHist(float x, std::string name, std::string title, int bins, float xmin, float xmax, int bin, std::string folder)
Definition: CSCValHists.cc:107