CMS 3D CMS Logo

FlavourHistorgrams.h
Go to the documentation of this file.
1 
2 #ifndef FlavourHistograms_H
3 #define FlavourHistograms_H
4 
8 
9 // #include "BTagPlotPrintC.h"
10 
11 #include "TH1F.h"
12 #include "TCanvas.h"
13 #include "TROOT.h"
14 #include "TSystem.h"
15 #include "TStyle.h"
16 #include "TEfficiency.h"
17 
20 #include <iostream>
21 #include <string>
22 
23 //class DQMStore;
24 
25 //
26 // class to describe Histo
27 //
28 template <class T>
30 
31 public:
32  FlavourHistograms (const std::string& baseNameTitle_ , const std::string& baseNameDescription_ ,
33  const int& nBins_ , const double& lowerBound_ , const double& upperBound_ ,
34  const std::string& plotFirst_ , const std::string& folder,
35  const unsigned int& mc, DQMStore::IGetter & iget) ;
36 
37  FlavourHistograms (const std::string& baseNameTitle_ , const std::string& baseNameDescription_ ,
38  const int& nBins_ , const double& lowerBound_ , const double& upperBound_ ,
39  const bool& statistics_ , const bool& plotLog_ , const bool& plotNormalized_ ,
40  const std::string& plotFirst_ , const std::string& folder,
41  const unsigned int& mc, DQMStore::IBooker & ibook) ;
42 
43  virtual ~FlavourHistograms () ;
44 
45  // fill entry
46  // For single variables and arrays (for arrays only a single index can be filled)
47  void fill ( const int & flavour, const T & variable) const;
48  void fill ( const int & flavour, const T & variable, const T & w) const;
49 
50  // For single variables and arrays
51  void fill ( const int & flavour, const T * variable) const;
52 
53 
54  void settitle(const char* title) ;
55 
56  void plot (TPad * theCanvas = nullptr) ;
57 
58  void epsPlot(const std::string& name);
59 
60  void divide ( const FlavourHistograms<T> & bHD ) ;
61  void setEfficiencyFlag();
62 
63  inline void SetMaximum(const double& max) { theMax = max;}
64  inline void SetMinimum(const double& min) { theMin = min;}
65 
66 
67  // trivial access functions
68  inline std::string baseNameTitle () const { return theBaseNameTitle ; }
70  inline int nBins () const { return theNBins ; }
71  inline double lowerBound () const { return theLowerBound ; }
72  inline double upperBound () const { return theUpperBound ; }
73  inline bool statistics () const { return theStatistics ; }
74  inline bool plotLog () const { return thePlotLog ; }
75  inline bool plotNormalized () const { return thePlotNormalized ; }
76  inline std::string plotFirst () const { return thePlotFirst ; }
77  inline int* arrayDimension () const { return theArrayDimension; }
78  inline int maxDimension () const {return theMaxDimension; }
79  inline int indexToPlot () const {return theIndexToPlot; }
80 
81  // access to the histos
82  inline TH1F * histo_all () const { return theHisto_all->getTH1F() ; }
83  inline TH1F * histo_d () const { return theHisto_d ->getTH1F() ; }
84  inline TH1F * histo_u () const { return theHisto_u->getTH1F() ; }
85  inline TH1F * histo_s () const { return theHisto_s->getTH1F() ; }
86  inline TH1F * histo_c () const { return theHisto_c->getTH1F() ; }
87  inline TH1F * histo_b () const { return theHisto_b->getTH1F() ; }
88  inline TH1F * histo_g () const { return theHisto_g->getTH1F() ; }
89  inline TH1F * histo_ni () const { return theHisto_ni->getTH1F() ; }
90  inline TH1F * histo_dus () const { return theHisto_dus->getTH1F() ; }
91  inline TH1F * histo_dusg () const { return theHisto_dusg->getTH1F() ; }
92  inline TH1F * histo_pu () const { return theHisto_pu->getTH1F() ; }
93 
94  std::vector<TH1F*> getHistoVector() const;
95 
96 
97 protected:
98 
99  void fillVariable ( const int & flavour , const T & var , const T & w) const;
100  double ClopperPearsonUnc(double num, double den);
101  void ComputeEfficiency(TH1F* num, TH1F* den, int bin);
102 
103  //
104  // the data members
105  //
106 
107 // T * theVariable ;
108 
109  // for arrays
112  int theIndexToPlot ; // in case that not the complete array has to be plotted
113 
116  int theNBins ;
117  double theLowerBound ;
118  double theUpperBound ;
120  bool thePlotLog ;
122  std::string thePlotFirst ; // one character; gives flavour to plot first: l (light) , c , b
123  double theMin, theMax;
124 
125  // the histos
137 
138  // DQMStore * dqmStore_;
139 
140 
141  // the canvas to plot
142  TCanvas* theCanvas ;
143  private:
145 
146  unsigned int mcPlots_;
147 
148 } ;
149 
150 template <class T>
151 FlavourHistograms<T>::FlavourHistograms (const std::string& baseNameTitle_, const std::string& baseNameDescription_ ,
152  const int& nBins_ , const double& lowerBound_ , const double& upperBound_ ,
153  const std::string& plotFirst_, const std::string& folder,
154  const unsigned int& mc, DQMStore::IGetter & iget) :
155  theMaxDimension(-1), theIndexToPlot(-1), theBaseNameTitle ( baseNameTitle_ ) , theBaseNameDescription ( baseNameDescription_ ) ,
156  theNBins ( nBins_ ) , theLowerBound ( lowerBound_ ) , theUpperBound ( upperBound_ ) ,
158  thePlotFirst ( plotFirst_ ), theMin(-1.), theMax(-1.), mcPlots_(mc)
159 {
160  // defaults for array dimensions
162 
163  // check plot order string
164  if ( thePlotFirst == "l" || thePlotFirst == "c" || thePlotFirst == "b" ) {
165  // OK
166  }
167  else {
168  // not correct: print warning and set default (l)
169  std::cout << "FlavourHistograms::FlavourHistograms : thePlotFirst was not correct : " << thePlotFirst << std::endl ;
170  std::cout << "FlavourHistograms::FlavourHistograms : Set it to default value (l)! " << std::endl ;
171  thePlotFirst = "l" ;
172  }
173 
174  if(mcPlots_%2==0) theHisto_all = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "ALL" ) ;
175  else theHisto_all = nullptr;
176  if (mcPlots_) {
177  if (mcPlots_>2 ) {
178  theHisto_d = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "D" ) ;
179  theHisto_u = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "U" ) ;
180  theHisto_s = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "S" ) ;
181  theHisto_g = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "G" ) ;
182  theHisto_dus = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "DUS" ) ;
183  }
184  else{
185  theHisto_d = nullptr;
186  theHisto_u = nullptr;
187  theHisto_s = nullptr;
188  theHisto_g = nullptr;
189  theHisto_dus = nullptr;
190  }
191  theHisto_c = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "C" ) ;
192  theHisto_b = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "B" ) ;
193  theHisto_ni = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "NI" ) ;
194  theHisto_dusg = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "DUSG") ;
195  theHisto_pu = iget.get("Btag/" + folder + "/" +theBaseNameTitle + "PU") ;
196  }
197  else{
198  theHisto_d = nullptr;
199  theHisto_u = nullptr;
200  theHisto_s = nullptr;
201  theHisto_c = nullptr;
202  theHisto_b = nullptr;
203  theHisto_g = nullptr;
204  theHisto_ni = nullptr;
205  theHisto_dus = nullptr;
206  theHisto_dusg = nullptr;
207  theHisto_pu = nullptr;
208  }
209  // defaults for other data members
210  theCanvas = nullptr ;
211 }
212 
213 template <class T>
214 FlavourHistograms<T>::FlavourHistograms (const std::string& baseNameTitle_ , const std::string& baseNameDescription_ ,
215  const int& nBins_ , const double& lowerBound_ , const double& upperBound_ ,
216  const bool& statistics_ , const bool& plotLog_ , const bool& plotNormalized_ ,
217  const std::string& plotFirst_, const std::string& folder,
218  const unsigned int& mc, DQMStore::IBooker & ibook) :
219  theMaxDimension(-1), theIndexToPlot(-1), theBaseNameTitle ( baseNameTitle_ ) , theBaseNameDescription ( baseNameDescription_ ) ,
220  theNBins ( nBins_ ) , theLowerBound ( lowerBound_ ) , theUpperBound ( upperBound_ ) ,
221  theStatistics ( statistics_ ) , thePlotLog ( plotLog_ ) , thePlotNormalized ( plotNormalized_ ) ,
222  thePlotFirst ( plotFirst_ ), theMin(-1.), theMax(-1.), mcPlots_(mc)
223 {
224  // defaults for array dimensions
226 
227  // check plot order string
228  if ( thePlotFirst == "l" || thePlotFirst == "c" || thePlotFirst == "b" ) {
229  // OK
230  }
231  else {
232  // not correct: print warning and set default (l)
233  std::cout << "FlavourHistograms::FlavourHistograms : thePlotFirst was not correct : " << thePlotFirst << std::endl ;
234  std::cout << "FlavourHistograms::FlavourHistograms : Set it to default value (l)! " << std::endl ;
235  thePlotFirst = "l" ;
236  }
237 
238  // book histos
239  HistoProviderDQM prov("Btag",folder,ibook);
240  if(mcPlots_%2==0) theHisto_all = (prov.book1D( theBaseNameTitle + "ALL" , theBaseNameDescription + " all jets" , theNBins , theLowerBound , theUpperBound )) ;
241  else theHisto_all = nullptr;
242  if (mcPlots_) {
243  if(mcPlots_>2) {
249  }
250  else{
251  theHisto_d = nullptr;
252  theHisto_u = nullptr;
253  theHisto_s = nullptr;
254  theHisto_g = nullptr;
255  theHisto_dus = nullptr;
256  }
262  }else{
263  theHisto_d = nullptr;
264  theHisto_u = nullptr;
265  theHisto_s = nullptr;
266  theHisto_c = nullptr;
267  theHisto_b = nullptr;
268  theHisto_g = nullptr;
269  theHisto_ni = nullptr;
270  theHisto_dus = nullptr;
271  theHisto_dusg = nullptr;
272  theHisto_pu = nullptr;
273  }
274 
275  // statistics if requested
276  if ( theStatistics ) {
277  if(theHisto_all) theHisto_all ->getTH1F()->Sumw2() ;
278  if (mcPlots_ ) {
279  if (mcPlots_>2 ) {
280  theHisto_d ->getTH1F()->Sumw2() ;
281  theHisto_u ->getTH1F()->Sumw2() ;
282  theHisto_s ->getTH1F()->Sumw2() ;
283  theHisto_g ->getTH1F()->Sumw2() ;
284  theHisto_dus ->getTH1F()->Sumw2() ;
285  }
286  theHisto_c ->getTH1F()->Sumw2() ;
287  theHisto_b ->getTH1F()->Sumw2() ;
288  theHisto_ni ->getTH1F()->Sumw2() ;
289  theHisto_dusg->getTH1F()->Sumw2() ;
290  theHisto_pu ->getTH1F()->Sumw2() ;
291  }
292  }
293  // defaults for other data members
294  theCanvas = nullptr ;
295 }
296 
297 
298 template <class T>
300  // delete the canvas*/
301  delete theCanvas ;
302 }
303 
304 // fill entry
305 template <class T> void
306 FlavourHistograms<T>::fill ( const int & flavour, const T & variable) const
307 {
308  // For single variables and arrays (for arrays only a single index can be filled)
309  fillVariable ( flavour , variable, 1.) ;
310 }
311 
312 template <class T> void
313 FlavourHistograms<T>::fill ( const int & flavour, const T & variable, const T & w) const
314 {
315  // For single variables and arrays (for arrays only a single index can be filled)
316  fillVariable ( flavour , variable, w) ;
317 }
318 
319 template <class T> void
320 FlavourHistograms<T>::fill ( const int & flavour, const T * variable) const
321 {
322  if ( theArrayDimension == 0 ) {
323  // single variable
324  fillVariable ( flavour , *variable, 1.) ;
325  } else {
326  // array
328  //
329  for ( int i = 0 ; i != iMax ; ++i ) {
330  // check if only one index to be plotted (<0: switched off -> plot all)
331  if ( ( theIndexToPlot < 0 ) || ( i == theIndexToPlot ) ) {
332  fillVariable ( flavour , *(variable+i) , 1.) ;
333  }
334  }
335 
336  // if single index to be filled but not enough entries: fill 0.0 (convention!)
337  if ( theIndexToPlot >= iMax ) {
338  // cout << "==>> The index to be filled is too big -> fill 0.0 : " << theBaseNameTitle << " : " << theIndexToPlot << " >= " << iMax << endl ;
339  const T& theZero = static_cast<T> ( 0.0 ) ;
340  fillVariable ( flavour , theZero , 1.) ;
341  }
342  }
343 }
344 
345 
346 template <class T>
348  if(theHisto_all) theHisto_all ->setAxisTitle(title) ;
349  if (mcPlots_) {
350  if (mcPlots_>2 ) {
351  theHisto_d ->setAxisTitle(title) ;
352  theHisto_u ->setAxisTitle(title) ;
353  theHisto_s ->setAxisTitle(title) ;
354  theHisto_g ->setAxisTitle(title) ;
355  theHisto_dus ->setAxisTitle(title) ;
356  }
357  theHisto_c ->setAxisTitle(title) ;
358  theHisto_b ->setAxisTitle(title) ;
359  theHisto_ni ->setAxisTitle(title) ;
360  theHisto_dusg->setAxisTitle(title) ;
361  theHisto_pu->setAxisTitle(title) ;
362  }
363 }
364 
365 
366 template <class T>
367 void FlavourHistograms<T>::plot (TPad * theCanvas /* = 0 */) {
368 
369 //fixme:
370  bool btppNI = false;
371  bool btppColour = true;
372 
373  if (theCanvas)
374  theCanvas->cd();
375 
376  RecoBTag::setTDRStyle()->cd();
377  gPad->UseCurrentStyle();
378 // if ( !btppTitle ) gStyle->SetOptTitle ( 0 ) ;
379 //
380 // // here: plot histograms in a canvas
381 // theCanvas = new TCanvas ( "C" + theBaseNameTitle , "C" + theBaseNameDescription ,
382 // btppXCanvas , btppYCanvas ) ;
383 // theCanvas->SetFillColor ( 0 ) ;
384 // theCanvas->cd ( 1 ) ;
385  gPad->SetLogy ( 0 ) ;
386  if ( thePlotLog ) gPad->SetLogy ( 1 ) ;
387  gPad->SetGridx ( 0 ) ;
388  gPad->SetGridy ( 0 ) ;
389  gPad->SetTitle ( nullptr ) ;
390 
391  MonitorElement * histo[4];
392  int col[4], lineStyle[4], markerStyle[4];
393  int lineWidth = 1 ;
394 
395  const double markerSize = gPad->GetWh() * gPad->GetHNDC() / 500.;
396 
397  // default (l)
398  histo[0] = theHisto_dusg ;
399  //CW histo_1 = theHisto_dus ;
400  histo[1] = theHisto_b ;
401  histo[2] = theHisto_c ;
402  histo[3]= nullptr ;
403 
404  double max = theMax;
405  if (theMax<=0.) {
406  max = theHisto_dusg->getTH1F()->GetMaximum();
407  if (theHisto_b->getTH1F()->GetMaximum() > max) max = theHisto_b->getTH1F()->GetMaximum();
408  if (theHisto_c->getTH1F()->GetMaximum() > max) max = theHisto_c->getTH1F()->GetMaximum();
409  }
410 
411  if (btppNI) {
412  histo[3] = theHisto_ni ;
413  if (theHisto_ni->getTH1F()->GetMaximum() > max) max = theHisto_ni->getTH1F()->GetMaximum();
414  }
415 
416  if ( btppColour ) { // print colours
417  col[0] = 4 ;
418  col[1] = 2 ;
419  col[2] = 6 ;
420  col[3] = 3 ;
421  lineStyle[0] = 1 ;
422  lineStyle[1] = 1 ;
423  lineStyle[2] = 1 ;
424  lineStyle[3] = 1 ;
425  markerStyle[0] = 20 ;
426  markerStyle[1] = 21 ;
427  markerStyle[2] = 22 ;
428  markerStyle[3] = 23 ;
429  lineWidth = 1 ;
430  }
431  else { // different marker/line styles
432  col[1] = 1 ;
433  col[2] = 1 ;
434  col[3] = 1 ;
435  col[0] = 1 ;
436  lineStyle[0] = 2 ;
437  lineStyle[1] = 1 ;
438  lineStyle[2] = 3 ;
439  lineStyle[3] = 4 ;
440  markerStyle[0] = 20 ;
441  markerStyle[1] = 21 ;
442  markerStyle[2] = 22 ;
443  markerStyle[3] = 23 ;
444  }
445 
446  // if changing order (NI stays always last)
447 
448  // c to plot first
449  if ( thePlotFirst == "c" ) {
450  histo[0] = theHisto_c ;
451  if ( btppColour ) col[0] = 6 ;
452  if ( !btppColour ) lineStyle[0] = 3 ;
453  histo[2] = theHisto_dusg ;
454  if ( btppColour ) col[2] = 4 ;
455  if ( !btppColour ) lineStyle[2] = 2 ;
456  }
457 
458  // b to plot first
459  if ( thePlotFirst == "b" ) {
460  histo[0] = theHisto_b ;
461  if ( btppColour ) col[0] = 2 ;
462  if ( !btppColour ) lineStyle[0] = 1 ;
463  histo[1] = theHisto_dusg ;
464  if ( btppColour ) col[1] = 4 ;
465  if ( !btppColour ) lineStyle[1] = 2 ;
466  }
467 
468 
469  histo[0] ->getTH1F()->GetXaxis()->SetTitle ( theBaseNameDescription.c_str() ) ;
470  histo[0] ->getTH1F()->GetYaxis()->SetTitle ( "Arbitrary Units" ) ;
471  histo[0] ->getTH1F()->GetYaxis()->SetTitleOffset(1.25) ;
472 
473  for (int i=0; i != 4; ++i) {
474  if (histo[i]== nullptr ) continue;
475  histo[i] ->getTH1F()->SetStats ( false ) ;
476  histo[i] ->getTH1F()->SetLineStyle ( lineStyle[i] ) ;
477  histo[i] ->getTH1F()->SetLineWidth ( lineWidth ) ;
478  histo[i] ->getTH1F()->SetLineColor ( col[i] ) ;
479  histo[i] ->getTH1F()->SetMarkerStyle ( markerStyle[i] ) ;
480  histo[i] ->getTH1F()->SetMarkerColor ( col[i] ) ;
481  histo[i] ->getTH1F()->SetMarkerSize ( markerSize ) ;
482  }
483 
484  if ( thePlotNormalized ) {
485  if (histo[0]->getTH1F()->GetEntries() != 0) {histo[0]->getTH1F() ->DrawNormalized() ;} else { histo[0]->getTH1F() ->SetMaximum(1.0); histo[0] ->getTH1F()->Draw() ;}
486  if (histo[1]->getTH1F()->GetEntries() != 0) histo[1] ->getTH1F()->DrawNormalized("Same") ;
487  if (histo[2]->getTH1F()->GetEntries() != 0) histo[2]->getTH1F() ->DrawNormalized("Same") ;
488  if ((histo[3] != nullptr) && (histo[3]->getTH1F()->GetEntries() != 0)) histo[3] ->getTH1F()->DrawNormalized("Same") ;
489  }
490  else {
491  histo[0]->getTH1F()->SetMaximum(max*1.05);
492  if (theMin!=-1.) histo[0]->getTH1F()->SetMinimum(theMin);
493  histo[0]->getTH1F()->Draw() ;
494  histo[1]->getTH1F()->Draw("Same") ;
495  histo[2]->getTH1F()->Draw("Same") ;
496  if ( histo[3] != nullptr ) histo[3]->getTH1F()->Draw("Same") ;
497  }
498 
499 }
500 
501 template <class T>
503 {
504  TCanvas tc(theBaseNameTitle.c_str() , theBaseNameDescription.c_str());
505 
506  plot(&tc);
507  tc.Print((name + theBaseNameTitle + ".eps").c_str());
508 }
509 
510 template <class T>
511 double FlavourHistograms<T>::ClopperPearsonUnc(double num, double den){
512  double effVal = num / den;
513  double errLo = TEfficiency::ClopperPearson(static_cast<int>(den), static_cast<int>(num), 0.683, false);
514  double errUp = TEfficiency::ClopperPearson(static_cast<int>(den), static_cast<int>(num), 0.683, true);
515  return std::max(effVal - errLo, errUp - effVal);
516 }
517 
518 template <class T>
519 void FlavourHistograms<T>::ComputeEfficiency(TH1F* num, TH1F* den, int bin){
520  double effVal = 1.;
521  double errVal = 0.;
522  double numVal = num->GetBinContent(bin);
523  double denVal = den->GetBinContent(bin);
524  if (denVal > 0 && numVal <= denVal) {
525  effVal = numVal / denVal;
526  errVal = ClopperPearsonUnc(numVal, denVal);
527  }
528  num->SetBinContent(bin, effVal);
529  num->SetBinError(bin, errVal);
530 }
531 
532 template <class T>
534  for(int bin = 0; bin < theNBins+2; bin++){
535  if(theHisto_all) ComputeEfficiency(theHisto_all ->getTH1F(), bHD.histo_all(), bin);
536  if (mcPlots_) {
537  if (mcPlots_>2 ) {
538  ComputeEfficiency(theHisto_d ->getTH1F(), bHD.histo_d (), bin) ;
539  ComputeEfficiency(theHisto_u ->getTH1F(), bHD.histo_u (), bin) ;
540  ComputeEfficiency(theHisto_s ->getTH1F(), bHD.histo_s (), bin) ;
541  ComputeEfficiency(theHisto_g ->getTH1F(), bHD.histo_g (), bin) ;
542  ComputeEfficiency(theHisto_dus ->getTH1F(), bHD.histo_dus (), bin) ;
543  }
544  ComputeEfficiency(theHisto_c ->getTH1F(), bHD.histo_c (), bin) ;
545  ComputeEfficiency(theHisto_b ->getTH1F(), bHD.histo_b (), bin) ;
546  ComputeEfficiency(theHisto_ni ->getTH1F(), bHD.histo_ni (), bin) ;
547  ComputeEfficiency(theHisto_dusg ->getTH1F(), bHD.histo_dusg(), bin) ;
548  ComputeEfficiency(theHisto_pu ->getTH1F(), bHD.histo_pu (), bin) ;
549  }
550  }
551 }
552 
553 template <class T>
556  if (mcPlots_) {
557  if (mcPlots_>2 ) {
563  }
569  }
570 
571 }
572 
573 template <class T>
574 void FlavourHistograms<T>::fillVariable ( const int & flavour , const T & var , const T & w) const {
575 
576  // all, except for the Jet Multiplicity which is not filled for each jets but for each events
577  if( (theBaseNameDescription != "Jet Multiplicity" || flavour == -1) && theHisto_all) theHisto_all->Fill ( var ,w) ;
578 
579  // flavour specific
580  if (!mcPlots_ || (theBaseNameDescription == "Jet Multiplicity" && flavour == -1)) return;
581 
582  switch(flavour) {
583  case 1:
584  if (mcPlots_>2 ) {
585  theHisto_d->Fill( var ,w);
586  if(theBaseNameDescription != "Jet Multiplicity") theHisto_dus->Fill( var ,w);
587  }
588  if(theBaseNameDescription != "Jet Multiplicity") theHisto_dusg->Fill( var ,w);
589  return;
590  case 2:
591  if (mcPlots_>2 ) {
592  theHisto_u->Fill( var ,w);
593  if(theBaseNameDescription != "Jet Multiplicity") theHisto_dus->Fill( var ,w);
594  }
595  if(theBaseNameDescription != "Jet Multiplicity") theHisto_dusg->Fill( var ,w);
596  return;
597  case 3:
598  if (mcPlots_>2 ) {
599  theHisto_s->Fill( var ,w);
600  if(theBaseNameDescription != "Jet Multiplicity") theHisto_dus->Fill( var ,w);
601  }
602  if(theBaseNameDescription != "Jet Multiplicity") theHisto_dusg->Fill( var ,w);
603  return;
604  case 4:
605  theHisto_c->Fill( var ,w);
606  return;
607  case 5:
608  theHisto_b->Fill( var ,w);
609  return;
610  case 21:
611  if (mcPlots_>2 ) theHisto_g->Fill( var ,w);
612  if(theBaseNameDescription != "Jet Multiplicity") theHisto_dusg->Fill( var ,w);
613  return;
614  case 123:
615  if (mcPlots_>2 && theBaseNameDescription == "Jet Multiplicity") theHisto_dus->Fill( var ,w);
616  return;
617  case 12321:
618  if (theBaseNameDescription == "Jet Multiplicity") theHisto_dusg->Fill( var ,w);
619  return;
620  case 20:
621  theHisto_pu->Fill( var ,w);
622  return;
623  default:
624  theHisto_ni->Fill( var ,w);
625  return;
626  }
627 }
628 
629 template <class T>
630 std::vector<TH1F*> FlavourHistograms<T>::getHistoVector() const
631 {
632  std::vector<TH1F*> histoVector;
633  if(theHisto_all) histoVector.push_back ( theHisto_all->getTH1F() );
634  if (mcPlots_) {
635  if (mcPlots_>2 ) {
636  histoVector.push_back ( theHisto_d->getTH1F() );
637  histoVector.push_back ( theHisto_u->getTH1F() );
638  histoVector.push_back ( theHisto_s->getTH1F() );
639  histoVector.push_back ( theHisto_g ->getTH1F() );
640  histoVector.push_back ( theHisto_dus->getTH1F() );
641  }
642  histoVector.push_back ( theHisto_c->getTH1F() );
643  histoVector.push_back ( theHisto_b->getTH1F() );
644  histoVector.push_back ( theHisto_ni->getTH1F() );
645  histoVector.push_back ( theHisto_dusg->getTH1F());
646  histoVector.push_back ( theHisto_pu->getTH1F());
647  }
648  return histoVector;
649 }
650 #endif
double lowerBound() const
MonitorElement * theHisto_g
void plot(TPad *theCanvas=0)
MonitorElement * theHisto_c
void SetMinimum(const double &min)
const double w
Definition: UKUtility.cc:23
TH1F * getTH1F() const
TH1F * histo_all() const
TStyle * setTDRStyle()
Definition: Tools.cc:346
MonitorElement * theHisto_u
int maxDimension() const
TH1F * histo_c() const
#define nullptr
void fill(const int &flavour, const T &variable) const
MonitorElement * theHisto_all
std::string baseNameDescription() const
TH1F * histo_dus() const
std::vector< TH1F * > getHistoVector() const
void ComputeEfficiency(TH1F *num, TH1F *den, int bin)
TH1F * histo_b() const
TH1F * histo_g() const
void Fill(long long x)
void SetMaximum(const double &max)
void epsPlot(const std::string &name)
virtual MonitorElement * book1D(const std::string &name, const std::string &title, const int &nchX, const double &lowX, const double &highX)
void setEfficiencyFlag()
std::string baseNameTitle() const
MonitorElement * theHisto_pu
void settitle(const char *title)
TH1F * histo_d() const
int * arrayDimension() const
T min(T a, T b)
Definition: MathUtil.h:58
MonitorElement * theHisto_d
MonitorElement * theHisto_dusg
double ClopperPearsonUnc(double num, double den)
MonitorElement * get(std::string const &path)
Definition: DQMStore.cc:303
bin
set the eta bin as selection string.
std::string theBaseNameDescription
MonitorElement * theHisto_b
TH1F * histo_s() const
int indexToPlot() const
TH1F * histo_ni() const
std::string plotFirst() const
bool plotNormalized() const
bool plotLog() const
std::string theBaseNameTitle
void fillVariable(const int &flavour, const T &var, const T &w) const
col
Definition: cuy.py:1010
TH1F * histo_u() const
double upperBound() const
MonitorElement * theHisto_s
bool statistics() const
long double T
void setAxisTitle(const std::string &title, int axis=1)
set x-, y- or z-axis title (axis=1, 2, 3 respectively)
void divide(const FlavourHistograms< T > &bHD)
TH1F * histo_dusg() const
MonitorElement * theHisto_dus
TH1F * histo_pu() const
MonitorElement * theHisto_ni