CMS 3D CMS Logo

TriggerMatchEfficiencyPlotter.cc
Go to the documentation of this file.
10 // Framework
21 
22 #include <iostream>
23 #include <cstdio>
24 #include <string>
25 #include <cmath>
26 #include "TF1.h"
27 #include "TH1F.h"
28 
29 using namespace edm;
30 using namespace std;
31 
32 //#define DEBUG
33 
35 #ifdef DEBUG
36  cout << "TriggerMatchEfficiencyPlotter(): Constructor " << endl;
37 #endif
38  parameters = ps;
39 
40  triggerhistName1_ = parameters.getParameter<string>("triggerhistName1");
41  triggerhistName2_ = parameters.getParameter<string>("triggerhistName2");
42  theFolder = parameters.getParameter<string>("folder");
43 }
45 
47 
48  ibooker.setCurrentFolder(theFolder);
49 
50  // efficiency plot
51  h_eff_Path1_eta_tight = ibooker.book1D("matchingEff_eta_"+triggerhistName1_+"_tight",triggerhistName1_+":matching Eff. vs #eta",8, -2.5, 2.5);
52  h_eff_Path1_pt_tight = ibooker.book1D("matchingEff_pt_"+triggerhistName1_+"_tight",triggerhistName1_+":matching Eff. vs pt",10, 20, 220);
53  h_eff_Path1_phi_tight = ibooker.book1D("matchingEff_phi_"+triggerhistName1_+"_tight",triggerhistName1_+":matching Eff. vs #phi", 8, -3.0, 3.0);
54  h_eff_Path2_eta_tight = ibooker.book1D("matchingEff_eta_"+triggerhistName2_+"_tight",triggerhistName2_+":matching Eff. vs #eta",8, -2.5, 2.5);
55  h_eff_Path2_pt_tight = ibooker.book1D("matchingEff_pt_"+triggerhistName2_+"_tight",triggerhistName2_+":matching Eff. vs pt",10, 20, 220);
56  h_eff_Path2_phi_tight = ibooker.book1D("matchingEff_phi_"+triggerhistName2_+"_tight",triggerhistName2_+":matching Eff. vs #phi", 8, -3.0, 3.0);
57 
58 
59 
60  // This prevents this ME to be normalized when drawn into the GUI
61  h_eff_Path1_eta_tight->setEfficiencyFlag();
62  h_eff_Path1_pt_tight->setEfficiencyFlag();
63  h_eff_Path1_phi_tight->setEfficiencyFlag();
64  h_eff_Path2_eta_tight->setEfficiencyFlag();
65  h_eff_Path2_pt_tight->setEfficiencyFlag();
66  h_eff_Path2_phi_tight->setEfficiencyFlag();
67 
68  // AXIS TITLES....
69  h_eff_Path1_eta_tight ->setAxisTitle("#eta", 1);
70  h_eff_Path1_pt_tight ->setAxisTitle("pt", 1);
71  h_eff_Path1_phi_tight ->setAxisTitle("#phi", 1);
72  h_eff_Path2_eta_tight ->setAxisTitle("#eta", 1);
73  h_eff_Path2_pt_tight ->setAxisTitle("pt", 1);
74  h_eff_Path2_phi_tight ->setAxisTitle("#phi", 1);
75 
76 
77 
79  string inputdir = "Muons_miniAOD/TriggerMatchMonitor/EfficiencyInput";
80  string numpath_eta_path1 = inputdir+"/passHLT"+triggerhistName1_+"_eta_Tight";
81  string denpath_eta_path1 = inputdir+"/totalHLT"+triggerhistName1_+"_eta_Tight";
82 
83  string numpath_pt_path1 = inputdir+"/passHLT"+triggerhistName1_+"_pt_Tight";
84  string denpath_pt_path1 = inputdir+"/totalHLT"+triggerhistName1_+"_pt_Tight";
85 
86  string numpath_phi_path1 = inputdir+"/passHLT"+triggerhistName1_+"_phi_Tight";
87  string denpath_phi_path1 = inputdir+"/totalHLT"+triggerhistName1_+"_phi_Tight";
88 
89  string numpath_eta_path2 = inputdir+"/passHLT"+triggerhistName2_+"_eta_Tight";
90  string denpath_eta_path2 = inputdir+"/totalHLT"+triggerhistName2_+"_eta_Tight";
91 
92  string numpath_pt_path2 = inputdir+"/passHLT"+triggerhistName2_+"_pt_Tight";
93  string denpath_pt_path2 = inputdir+"/totalHLT"+triggerhistName2_+"_pt_Tight";
94 
95  string numpath_phi_path2 = inputdir+"/passHLT"+triggerhistName2_+"_phi_Tight";
96  string denpath_phi_path2 = inputdir+"/totalHLT"+triggerhistName2_+"_phi_Tight";
97 
98  MonitorElement *Numerator_eta_path1 = igetter.get(numpath_eta_path1);
99  MonitorElement *Denominator_eta_path1 = igetter.get(denpath_eta_path1);
100 
101  MonitorElement *Numerator_pt_path1 = igetter.get(numpath_pt_path1);
102  MonitorElement *Denominator_pt_path1 = igetter.get(denpath_pt_path1);
103 
104  MonitorElement *Numerator_phi_path1 = igetter.get(numpath_phi_path1);
105  MonitorElement *Denominator_phi_path1 = igetter.get(denpath_phi_path1);
106 
107  MonitorElement *Numerator_eta_path2 = igetter.get(numpath_eta_path2);
108  MonitorElement *Denominator_eta_path2 = igetter.get(denpath_eta_path2);
109 
110  MonitorElement *Numerator_pt_path2 = igetter.get(numpath_pt_path2);
111  MonitorElement *Denominator_pt_path2 = igetter.get(denpath_pt_path2);
112 
113  MonitorElement *Numerator_phi_path2 = igetter.get(numpath_phi_path2);
114  MonitorElement *Denominator_phi_path2 = igetter.get(denpath_phi_path2);
115 
116  if (Numerator_eta_path1 && Denominator_eta_path1){
117  TH1F *h_numerator_eta_path1 = Numerator_eta_path1->getTH1F();
118  TH1F *h_denominator_eta_path1 = Denominator_eta_path1->getTH1F();
119  TH1F *h_eff_eta_path1 = h_eff_Path1_eta_tight->getTH1F();
120 
121  if (h_eff_eta_path1->GetSumw2N() == 0) h_eff_eta_path1->Sumw2();
122  h_eff_eta_path1->Divide(h_numerator_eta_path1, h_denominator_eta_path1, 1., 1., "B");
123  }
124 
125  if (Numerator_pt_path1 && Denominator_pt_path1){
126  TH1F *h_numerator_pt_path1 = Numerator_pt_path1->getTH1F();
127  TH1F *h_denominator_pt_path1 = Denominator_pt_path1->getTH1F();
128  TH1F *h_eff_pt_path1 = h_eff_Path1_pt_tight->getTH1F();
129 
130  if (h_eff_pt_path1->GetSumw2N() == 0) h_eff_pt_path1->Sumw2();
131  h_eff_pt_path1->Divide(h_numerator_pt_path1, h_denominator_pt_path1, 1., 1., "B");
132  }
133 
134  if (Numerator_phi_path1 && Denominator_phi_path1){
135  TH1F *h_numerator_phi_path1 = Numerator_phi_path1->getTH1F();
136  TH1F *h_denominator_phi_path1 = Denominator_phi_path1->getTH1F();
137  TH1F *h_eff_phi_path1 = h_eff_Path1_phi_tight->getTH1F();
138 
139  if (h_eff_phi_path1->GetSumw2N() == 0) h_eff_phi_path1->Sumw2();
140  h_eff_phi_path1->Divide(h_numerator_phi_path1, h_denominator_phi_path1, 1., 1., "B");
141  }
142 
143  //trigger path2
144  if (Numerator_eta_path2 && Denominator_eta_path2){
145  TH1F *h_numerator_eta_path2 = Numerator_eta_path2->getTH1F();
146  TH1F *h_denominator_eta_path2 = Denominator_eta_path2->getTH1F();
147  TH1F *h_eff_eta_path2 = h_eff_Path2_eta_tight->getTH1F();
148 
149  if (h_eff_eta_path2->GetSumw2N() == 0) h_eff_eta_path2->Sumw2();
150  h_eff_eta_path2->Divide(h_numerator_eta_path2, h_denominator_eta_path2, 1., 1., "B");
151  }
152 
153  if (Numerator_pt_path2 && Denominator_pt_path2){
154  TH1F *h_numerator_pt_path2 = Numerator_pt_path2->getTH1F();
155  TH1F *h_denominator_pt_path2 = Denominator_pt_path2->getTH1F();
156  TH1F *h_eff_pt_path2 = h_eff_Path2_pt_tight->getTH1F();
157 
158  if (h_eff_pt_path2->GetSumw2N() == 0) h_eff_pt_path2->Sumw2();
159  h_eff_pt_path2->Divide(h_numerator_pt_path2, h_denominator_pt_path2, 1., 1., "B");
160  }
161 
162  if (Numerator_phi_path2 && Denominator_phi_path2){
163  TH1F *h_numerator_phi_path2 = Numerator_phi_path2->getTH1F();
164  TH1F *h_denominator_phi_path2 = Denominator_phi_path2->getTH1F();
165  TH1F *h_eff_phi_path2 = h_eff_Path2_phi_tight->getTH1F();
166 
167  if (h_eff_phi_path2->GetSumw2N() == 0) h_eff_phi_path2->Sumw2();
168  h_eff_phi_path2->Divide(h_numerator_phi_path2, h_denominator_phi_path2, 1., 1., "B");
169  }
170 
171 
172 }
173 
T getParameter(std::string const &) const
TH1F * getTH1F() const
~TriggerMatchEfficiencyPlotter() override
Destructor.
void setEfficiencyFlag()
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:268
MonitorElement * book1D(Args &&...args)
Definition: DQMStore.h:106
MonitorElement * get(std::string const &path)
Definition: DQMStore.cc:303
TriggerMatchEfficiencyPlotter(const edm::ParameterSet &ps)
Constructor.
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
DQM Client Diagnostic.
HLT enums.