14 #include "TGraphAsymmErrors.h" 67 TProfile * efficHist =
new TProfile(name.c_str(), title.c_str(),denum->GetXaxis()->GetNbins(), denum->GetXaxis()->GetXmin(),denum->GetXaxis()->GetXmax());
69 for (
int i=1;
i <= denum->GetNbinsX();
i++) {
71 double nNum = num->GetBinContent(
i);
72 double nDenum = denum->GetBinContent(
i);
73 if ( nDenum == 0 || nNum ==0 ) {
76 if ( nNum > nDenum ) {
80 LogDebug(
"MuonGEMDigisHarvestor")<<
"Alert! specific bin's num is bigger than denum";
82 const double effVal = nNum/nDenum;
83 efficHist->SetBinContent(
i, effVal);
84 efficHist->SetBinEntries(
i,1);
85 efficHist->SetBinError(
i,0);
86 const double errLo = TEfficiency::ClopperPearson((
int)nDenum,(
int)nNum,0.683,
false);
87 const double errUp = TEfficiency::ClopperPearson((
int)nDenum,(
int)nNum,0.683,
true);
88 const double errVal = (effVal - errLo > errUp - effVal) ? effVal - errLo : errUp - effVal;
89 efficHist->SetBinError(
i,
sqrt(effVal * effVal + errVal * errVal));
97 if( ig.
get(dbe_label.Data()) !=
nullptr && sh_hist !=
nullptr && track_hist !=
nullptr ) {
98 TH1F*
hist = (TH1F*)ig.
get( dbe_label.Data() )->getTH1F()->Clone();
100 TProfile* profile_sh =
ComputeEff( hist, sh_hist );
101 profile_sh->SetName( (profile->GetName()+
std::string(
"_sh")).c_str());
102 TString x_axis_title = TString(hist->GetXaxis()->GetTitle());
103 TString
title = TString::Format(
"Eff. for a SimTrack to have an associated GEM digi in %s;%s;Eff.",suffix.Data(),x_axis_title.Data());
104 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() );
105 profile->SetTitle( title.Data());
106 profile_sh->SetTitle( title2.Data() );
108 ibooker.
bookProfile( profile_sh->GetName(),profile_sh);
111 LogDebug(
"MuonGEMDigisHarvestor")<<
"Can not found histogram of "<<dbe_label;
112 if ( track_hist ==
nullptr)
LogDebug(
"MuonGEMDigisHarvestor")<<
"track not found";
113 if ( sh_hist ==
nullptr)
LogDebug(
"MuonGEMDigisHarvestor")<<
"sh_hist not found";
123 TH1F* gem_trk_eta[3];
124 TH1F* gem_trk_phi[3][2];
127 TH1F* sh_phi[3][4][3];
167 for(
unsigned int i = 0 ;
i <
s_suffix.size() ;
i++) {
170 if ( ig.
get(eta_label.Data()) !=
nullptr ) {
171 gem_trk_eta[
i] = (TH1F*)ig.
get(eta_label.Data())->getTH1F()->Clone();
172 gem_trk_eta[
i]->Sumw2();
174 else LogDebug(
"MuonGEMDigisHarvestor")<<
"Can not found track_eta";
175 for (
unsigned int k=0 ;
k <
c_suffix.size() ;
k++) {
177 if ( ig.
get(phi_label.Data()) !=
nullptr ) {
178 gem_trk_phi[
i][
k] = (TH1F*)ig.
get(phi_label.Data())->getTH1F()->Clone();
179 gem_trk_phi[
i][
k]->Sumw2();
181 else LogDebug(
"MuonGEMDigisHarvestor")<<
"Can not found track_phi";
184 if ( ig.
get(eta_label.Data()) !=
nullptr && ig.
get(phi_label.Data()) !=
nullptr ) {
185 for(
unsigned int j = 0; j <
l_suffix.size() ; j++) {
188 if( ig.
get(eta_label.Data()) !=
nullptr ) {
189 sh_eta[
i][j] = (TH1F*)ig.
get(eta_label.Data())->getTH1F()->Clone();
190 sh_eta[
i][j]->Sumw2();
192 else LogDebug(
"MuonGEMDigisHarvestor")<<
"Can not found eta histogram : "<<eta_label;
193 ProcessBooking( ibooker, ig,
"dg_eta", suffix, gem_trk_eta[i], sh_eta[i][j]);
194 ProcessBooking( ibooker, ig,
"pad_eta", suffix, gem_trk_eta[i], sh_eta[i][j]);
195 ProcessBooking( ibooker, ig,
"copad_eta", suffix, gem_trk_eta[i], sh_eta[i][j]);
196 for (
unsigned int k = 0 ;
k <
c_suffix.size() ;
k++) {
199 if( ig.
get(phi_label.Data()) !=
nullptr ) {
200 sh_phi[
i][j][
k] = (TH1F*)ig.
get(phi_label.Data())->getTH1F()->Clone();
201 sh_phi[
i][j][
k]->Sumw2();
203 else {
LogDebug(
"MuonGEMDigisHarvestor")<<
"Can not found phi plots : "<<phi_label;
continue; }
204 ProcessBooking( ibooker, ig,
"dg_phi",suffix, gem_trk_phi[i][k], sh_phi[i][j][k]);
205 ProcessBooking( ibooker, ig,
"pad_phi",suffix,gem_trk_phi[i][k], sh_phi[i][j][k]);
206 ProcessBooking( ibooker, ig,
"copad_phi",suffix,gem_trk_phi[i][k], sh_phi[i][j][k]);
210 else LogDebug(
"MuonGEMDigisHarvestor")<<
"Can not find eta or phi of all track";
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
static const std::array< std::string, 4 > l_suffix
MonitorElement * bookProfile(Args &&...args)
MonitorElement * get(const std::string &path)
#define DEFINE_FWK_MODULE(type)
TProfile * ComputeEff(TH1F *num, TH1F *denum)
void dqmEndJob(DQMStore::IBooker &, DQMStore::IGetter &) override
static const std::array< std::string, 2 > s_suffix
MuonGEMDigisHarvestor(const edm::ParameterSet &)
constructor
std::string compareable_dbe_hist_prefix_
void setCurrentFolder(const std::string &fullpath)
std::string compareable_dbe_path_
~MuonGEMDigisHarvestor() override
destructor
void ProcessBooking(DQMStore::IBooker &, DQMStore::IGetter &, const char *label, TString suffix, TH1F *track_hist, TH1F *sh_hist)
std::string dbe_hist_prefix_
static const std::array< std::string, 3 > c_suffix