test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
MuonGEMDigisHarvestor.cc
Go to the documentation of this file.
1 // system include files
2 #include <memory>
3 
4 // user include files
12 #include "TTree.h"
13 #include "TFile.h"
14 #include "TGraphAsymmErrors.h"
17 
27 
30 
34 
39 
41 
45 
48 
49 using namespace GEMDetLabel;
51 {
52  dbe_path_ = ps.getParameter<std::string>("dbePath");
53  dbe_hist_prefix_ = ps.getParameter<std::string>("dbeHistPrefix");
54  compareable_dbe_path_ = ps.getParameter<std::string>("compareDBEPath");
55  compareable_dbe_hist_prefix_ = ps.getParameter<std::string>("compareDBEHistPrefix");
56 
57  outputFile_ = ps.getUntrackedParameter<std::string>("outputFile", "myfile.root");
58 }
59 
60 
62 {
63 }
64 TProfile* MuonGEMDigisHarvestor::ComputeEff(TH1F* num, TH1F* denum )
65 {
66  std::string name = "eff_"+std::string(num->GetName());
67  std::string title = "Eff. "+std::string(num->GetTitle());
68  TProfile * efficHist = new TProfile(name.c_str(), title.c_str(),denum->GetXaxis()->GetNbins(), denum->GetXaxis()->GetXmin(),denum->GetXaxis()->GetXmax());
69 
70  for (int i=1; i <= denum->GetNbinsX(); i++) {
71 
72  double nNum = num->GetBinContent(i);
73  double nDenum = denum->GetBinContent(i);
74  if ( nDenum == 0 || nNum ==0 ) {
75  continue;
76  }
77  if ( nNum > nDenum ) {
78  double temp = nDenum;
79  nDenum = nNum;
80  nNum = temp;
81  LogDebug("MuonGEMDigisHarvestor")<<"Alert! specific bin's num is bigger than denum";
82  }
83  const double effVal = nNum/nDenum;
84  efficHist->SetBinContent(i, effVal);
85  efficHist->SetBinEntries(i,1);
86  efficHist->SetBinError(i,0);
87  const double errLo = TEfficiency::ClopperPearson((int)nDenum,(int)nNum,0.683,false);
88  const double errUp = TEfficiency::ClopperPearson((int)nDenum,(int)nNum,0.683,true);
89  const double errVal = (effVal - errLo > errUp - effVal) ? effVal - errLo : errUp - effVal;
90  efficHist->SetBinError(i, sqrt(effVal * effVal + errVal * errVal));
91  }
92  return efficHist;
93 }
94 
95 void MuonGEMDigisHarvestor::ProcessBooking( DQMStore::IBooker& ibooker, DQMStore::IGetter& ig, const char* label, TString suffix, TH1F* track_hist, TH1F* sh_hist )
96 {
97  TString dbe_label = TString(dbe_path_)+label+suffix;
98  if( ig.get(dbe_label.Data()) != nullptr && sh_hist !=nullptr && track_hist !=nullptr ) {
99  TH1F* hist = (TH1F*)ig.get( dbe_label.Data() )->getTH1F()->Clone();
100  TProfile* profile = ComputeEff( hist, track_hist);
101  TProfile* profile_sh = ComputeEff( hist, sh_hist );
102  profile_sh->SetName( (profile->GetName()+std::string("_sh")).c_str());
103  TString x_axis_title = TString(hist->GetXaxis()->GetTitle());
104  TString title = TString::Format("Eff. for a SimTrack to have an associated GEM digi in %s;%s;Eff.",suffix.Data(),x_axis_title.Data());
105  TString title2 = TString::Format("Eff. for a SimTrack to have an associated GEM digi in %s with a matched SimHit;%s;Eff.",suffix.Data(),x_axis_title.Data() );
106  profile->SetTitle( title.Data());
107  profile_sh->SetTitle( title2.Data() );
108  ibooker.bookProfile( profile->GetName(),profile);
109  ibooker.bookProfile( profile_sh->GetName(),profile_sh);
110  }
111  else {
112  LogDebug("MuonGEMDigisHarvestor")<<"Can not found histogram of "<<dbe_label;
113  if ( track_hist == nullptr) LogDebug("MuonGEMDigisHarvestor")<<"track not found";
114  if ( sh_hist == nullptr) LogDebug("MuonGEMDigisHarvestor")<<"sh_hist not found";
115  }
116  return;
117 }
118 
119 
120 void
122 {
123  ig.setCurrentFolder(dbe_path_.c_str());
124  TH1F* gem_trk_eta[3];
125  TH1F* gem_trk_phi[3][2];
126 
127  TH1F* sh_eta[3][4];
128  TH1F* sh_phi[3][4][3];
129 
130 
131 
132  // simplePlots
133  /*
134  for( int region = -1 ; region <= 1 ; region = region+2) {
135  for ( int station = 0 ; station <2 ; station++) {
136  if ( station ==1 ) station=2 ;
137  TString dcEta_label = TString::Format("%s%s_r%d%s",dbe_path_.c_str(),dbe_hist_prefix_.c_str(), region, s_suffix[station].c_str());
138  TString denum_dcEta_label = TString::Format("%s%s_r%d%s",compareable_dbe_path_.c_str(),compareable_dbe_hist_prefix_.c_str(), region, s_suffix[station].c_str());
139 
140 
141  if ( ig.get( dcEta_label.Data()) != nullptr && ig.get( denum_dcEta_label.Data()) != nullptr) {
142  TH2F* dcEta = (TH2F*)ig.get( dcEta_label.Data())->getTH2F()->Clone();
143  TH2F* denum_dcEta = (TH2F*)ig.get( denum_dcEta_label.Data())->getTH2F()->Clone();
144  dcEta->Divide(denum_dcEta);
145  TH2F* eff_dcEta = (TH2F*)dcEta->Clone();
146 
147  TString eff_dcEta_title = TString::Format("Hits Efficiency on detector component at r%d%s",region,s_suffix[station].c_str());
148  TString eff_dcEta_label = TString::Format("eff_DigiHit_r%d%s",region,s_suffix[station].c_str());
149 
150 
151  eff_dcEta->SetName( eff_dcEta_label.Data());
152  eff_dcEta->SetTitle( eff_dcEta_title.Data());
153 
154  ibooker.book2D(eff_dcEta->GetName(), eff_dcEta);
155  }
156  else {
157  std::cout<<"Failed to get histograms"<<std::endl;
158  std::cout<<dcEta_label<<std::endl;
159  std::cout<<denum_dcEta_label<<std::endl;
160  }
161  }
162  }
163  */
164 
165  // detailPlots
166  for( int i = 0 ; i < 3 ; i++) {
167  TString eta_label = TString(dbe_path_)+"track_eta"+s_suffix[i];
168  TString phi_label;
169  if ( ig.get(eta_label.Data()) != nullptr ) {
170  gem_trk_eta[i] = (TH1F*)ig.get(eta_label.Data())->getTH1F()->Clone();
171  gem_trk_eta[i]->Sumw2();
172  }
173  else LogDebug("MuonGEMDigisHarvestor")<<"Can not found track_eta";
174  for ( int k=0 ; k <3 ; k++) {
175  phi_label = TString(dbe_path_.c_str())+"track_phi"+s_suffix[i]+c_suffix[k];
176  if ( ig.get(phi_label.Data()) !=nullptr ) {
177  gem_trk_phi[i][k] = (TH1F*)ig.get(phi_label.Data())->getTH1F()->Clone();
178  gem_trk_phi[i][k]->Sumw2();
179  }
180  else LogDebug("MuonGEMDigisHarvestor")<<"Can not found track_phi";
181  }
182 
183  if ( ig.get(eta_label.Data()) != nullptr && ig.get(phi_label.Data()) !=nullptr ) {
184  for( int j = 0; j < 4 ; j++) {
185  TString suffix = TString( s_suffix[i] )+TString( l_suffix[j]);
186  TString eta_label = TString(dbe_path_)+"dg_sh_eta"+suffix;
187  if( ig.get(eta_label.Data()) !=nullptr ) {
188  sh_eta[i][j] = (TH1F*)ig.get(eta_label.Data())->getTH1F()->Clone();
189  sh_eta[i][j]->Sumw2();
190  }
191  else LogDebug("MuonGEMDigisHarvestor")<<"Can not found eta histogram : "<<eta_label;
192  ProcessBooking( ibooker, ig, "dg_eta", suffix, gem_trk_eta[i], sh_eta[i][j]);
193  ProcessBooking( ibooker, ig, "pad_eta", suffix, gem_trk_eta[i], sh_eta[i][j]);
194  ProcessBooking( ibooker, ig, "copad_eta", suffix, gem_trk_eta[i], sh_eta[i][j]);
195  for ( int k= 0 ; k< 3 ; k++) {
196  suffix = TString( s_suffix[i])+TString( l_suffix[j]) +TString(c_suffix[k]);
197  TString phi_label = TString(dbe_path_)+"dg_sh_phi"+suffix;
198  if( ig.get(phi_label.Data()) !=nullptr ) {
199  sh_phi[i][j][k] = (TH1F*)ig.get(phi_label.Data())->getTH1F()->Clone();
200  sh_phi[i][j][k]->Sumw2();
201  }
202  else { LogDebug("MuonGEMDigisHarvestor")<<"Can not found phi plots : "<<phi_label; continue; }
203  ProcessBooking( ibooker, ig, "dg_phi",suffix, gem_trk_phi[i][k], sh_phi[i][j][k]);
204  ProcessBooking( ibooker, ig, "pad_phi",suffix,gem_trk_phi[i][k], sh_phi[i][j][k]);
205  ProcessBooking( ibooker, ig, "copad_phi",suffix,gem_trk_phi[i][k], sh_phi[i][j][k]);
206  }
207  }
208  }
209  else LogDebug("MuonGEMDigisHarvestor")<<"Can not find eta or phi of all track";
210  }
211 }
212 
213 
214 //define this as a plug-in
#define LogDebug(id)
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
virtual ~MuonGEMDigisHarvestor()
destructor
MonitorElement * bookProfile(Args &&...args)
Definition: DQMStore.h:157
MonitorElement * get(const std::string &path)
Definition: DQMStore.cc:304
#define DEFINE_FWK_MODULE(type)
Definition: MakerMacros.h:17
TProfile * ComputeEff(TH1F *num, TH1F *denum)
T sqrt(T t)
Definition: SSEVec.h:18
int j
Definition: DBlmapReader.cc:9
TH1F * getTH1F(std::string name, std::string process, std::string rootfolder, DQMStore *dbe_, bool verb, bool clone)
MuonGEMDigisHarvestor(const edm::ParameterSet &)
constructor
static const std::string l_suffix[4]
Definition: GEMDetLabel.h:2
virtual void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &)
static const std::string c_suffix[3]
Definition: GEMDetLabel.h:4
void setCurrentFolder(const std::string &fullpath)
Definition: DQMStore.cc:346
void ProcessBooking(DQMStore::IBooker &, DQMStore::IGetter &, const char *label, TString suffix, TH1F *track_hist, TH1F *sh_hist)
static const std::string s_suffix[3]
Definition: GEMDetLabel.h:3