CMS 3D CMS Logo

MuonGEMRecHitsHarvestor.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 
4 // user include files
13 #include "TFile.h"
14 #include "TGraphAsymmErrors.h"
15 #include "TTree.h"
16 
26 
29 
33 
38 
40 
44 
47 
49  dbe_path_ = std::string("MuonGEMRecHitsV/GEMRecHitsTask/");
50  outputFile_ = ps.getUntrackedParameter<std::string>("outputFile", "myfile.root");
51 }
52 
54 TProfile *MuonGEMRecHitsHarvestor::ComputeEff(TH1F *num, TH1F *denum) {
55  std::string name = "eff_" + std::string(num->GetName());
56  std::string title = "Eff. " + std::string(num->GetTitle());
57  TProfile *efficHist = new TProfile(name.c_str(),
58  title.c_str(),
59  denum->GetXaxis()->GetNbins(),
60  denum->GetXaxis()->GetXmin(),
61  denum->GetXaxis()->GetXmax());
62 
63  for (int i = 1; i <= denum->GetNbinsX(); i++) {
64  double nNum = num->GetBinContent(i);
65  double nDenum = denum->GetBinContent(i);
66  if (nDenum == 0 || nNum == 0) {
67  continue;
68  }
69  if (nNum > nDenum) {
70  double temp = nDenum;
71  nDenum = nNum;
72  nNum = temp;
73  std::cout << "Alert! specific bin's num is bigger than denum" << std::endl;
74  }
75  const double effVal = nNum / nDenum;
76  efficHist->SetBinContent(i, effVal);
77  efficHist->SetBinEntries(i, 1);
78  efficHist->SetBinError(i, 0);
79  const double errLo = TEfficiency::ClopperPearson((int)nDenum, (int)nNum, 0.683, false);
80  const double errUp = TEfficiency::ClopperPearson((int)nDenum, (int)nNum, 0.683, true);
81  const double errVal = (effVal - errLo > errUp - effVal) ? effVal - errLo : errUp - effVal;
82  efficHist->SetBinError(i, sqrt(effVal * effVal + errVal * errVal));
83  }
84  return efficHist;
85 }
86 
89  const char *label,
90  TString suffix,
91  TH1F *track_hist,
92  TH1F *sh_hist) {
93  TString dbe_label = TString(dbe_path_) + label + suffix;
94  if (ig.get(dbe_label.Data()) != nullptr && sh_hist != nullptr && track_hist != nullptr) {
95  TH1F *hist = (TH1F *)ig.get(dbe_label.Data())->getTH1F()->Clone();
96  TProfile *profile = ComputeEff(hist, track_hist);
97  TProfile *profile_sh = ComputeEff(hist, sh_hist);
98  profile_sh->SetName((profile->GetName() + std::string("_sh")).c_str());
99  TString x_axis_title = TString(hist->GetXaxis()->GetTitle());
100  TString title = TString::Format(
101  "Eff. for a SimTrack to have an associated GEM RecHits in %s;%s;Eff.", suffix.Data(), x_axis_title.Data());
102  TString title2 = TString::Format(
103  "Eff. for a SimTrack to have an associated GEM RecHits "
104  "in %s with a matched SimHit;%s;Eff.",
105  suffix.Data(),
106  x_axis_title.Data());
107  profile->SetTitle(title.Data());
108  profile_sh->SetTitle(title2.Data());
109  ibooker.bookProfile(profile->GetName(), profile);
110  ibooker.bookProfile(profile_sh->GetName(), profile_sh);
111  } else {
112  std::cout << "Can not found histogram of " << dbe_label << std::endl;
113  if (track_hist == nullptr)
114  std::cout << "track not found" << std::endl;
115  if (sh_hist == nullptr)
116  std::cout << "sh_hist not found" << std::endl;
117  }
118  return;
119 }
120 
123 
124  using namespace GEMDetLabel;
125 
126  TH1F *gem_trk_eta[s_suffix.size()];
127  TH1F *gem_trk_phi[s_suffix.size()][c_suffix.size()];
128 
129  TH1F *sh_eta[s_suffix.size()][l_suffix.size()];
130  TH1F *sh_phi[s_suffix.size()][l_suffix.size()][c_suffix.size()];
131 
132  for (unsigned int i = 0; i < s_suffix.size(); i++) {
133  TString eta_label = TString(dbe_path_) + "track_eta" + s_suffix[i];
134  TString phi_label;
135  if (ig.get(eta_label.Data()) != nullptr) {
136  gem_trk_eta[i] = (TH1F *)ig.get(eta_label.Data())->getTH1F()->Clone();
137  gem_trk_eta[i]->Sumw2();
138  } else
139  std::cout << "Can not found track_eta" << std::endl;
140  for (unsigned int k = 0; k < c_suffix.size(); k++) {
141  phi_label = TString(dbe_path_.c_str()) + "track_phi" + s_suffix[i] + c_suffix[k];
142  if (ig.get(phi_label.Data()) != nullptr) {
143  gem_trk_phi[i][k] = (TH1F *)ig.get(phi_label.Data())->getTH1F()->Clone();
144  gem_trk_phi[i][k]->Sumw2();
145  } else
146  std::cout << "Can not found track_phi" << std::endl;
147  }
148 
149  if (ig.get(eta_label.Data()) != nullptr && ig.get(phi_label.Data()) != nullptr) {
150  for (unsigned int j = 0; j < l_suffix.size(); j++) {
151  TString suffix = TString(s_suffix[i]) + TString(l_suffix[j]);
152  TString eta_label = TString(dbe_path_) + "rh_sh_eta" + suffix;
153  if (ig.get(eta_label.Data()) != nullptr) {
154  sh_eta[i][j] = (TH1F *)ig.get(eta_label.Data())->getTH1F()->Clone();
155  sh_eta[i][j]->Sumw2();
156  } else
157  std::cout << "Can not found eta histogram : " << eta_label << std::endl;
158  ProcessBooking(ibooker, ig, "rh_eta", suffix, gem_trk_eta[i], sh_eta[i][j]);
159  for (unsigned int k = 0; k < c_suffix.size(); k++) {
160  suffix = TString(s_suffix[i]) + TString(l_suffix[j]) + TString(c_suffix[k]);
161  TString phi_label = TString(dbe_path_) + "rh_sh_phi" + suffix;
162  if (ig.get(phi_label.Data()) != nullptr) {
163  sh_phi[i][j][k] = (TH1F *)ig.get(phi_label.Data())->getTH1F()->Clone();
164  sh_phi[i][j][k]->Sumw2();
165  } else {
166  std::cout << "Can not found phi plots : " << phi_label << std::endl;
167  continue;
168  }
169  ProcessBooking(ibooker, ig, "rh_phi", suffix, gem_trk_phi[i][k], sh_phi[i][j][k]);
170  }
171  }
172  } else
173  std::cout << "Can not find eta or phi of all track" << std::endl;
174  }
175 }
176 
177 // define this as a plug-in
T getUntrackedParameter(std::string const &, T const &) const
static const std::array< std::string, 4 > l_suffix
Definition: GEMDetLabel.h:4
MonitorElement * bookProfile(Args &&...args)
Definition: DQMStore.h:113
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
void setCurrentFolder(std::string const &fullpath)
Definition: DQMStore.cc:361
char const * label
static const std::array< std::string, 2 > s_suffix
Definition: GEMDetLabel.h:5
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:16
T sqrt(T t)
Definition: SSEVec.h:18
TProfile * ComputeEff(TH1F *num, TH1F *denum)
MuonGEMRecHitsHarvestor(const edm::ParameterSet &)
constructor
MonitorElement * get(std::string const &path)
Definition: DQMStore.cc:303
int k[5][pyjets_maxn]
void ProcessBooking(DQMStore::IBooker &, DQMStore::IGetter &, const char *label, TString suffix, TH1F *track_hist, TH1F *sh_hist)
~MuonGEMRecHitsHarvestor() override
destructor
static const std::array< std::string, 3 > c_suffix
Definition: GEMDetLabel.h:6