35 m_file_out =
new TFile(oss.str().c_str(),
"RECREATE");
40 m_h1_xF_tb =
new TH1D(
"h1_xF_tb" ,
"", 20, -1, 1);
44 m_h1_x1_tb =
new TH1D(
"h1_x1_tb" ,
"", 20, 0, 1);
48 m_h1_x2_tb =
new TH1D(
"h1_x2_tb" ,
"", 20, 0, 1);
53 m_h1_mom_tb =
new TH1D(
"h1_mom_tb" ,
"", 20, 20, 120);
57 m_h1_phi_tb =
new TH1D(
"h1_phi_tb" ,
"", 20, -TMath::Pi(), TMath::Pi());
58 m_h1_phi_trig =
new TH1D(
"h1_phi_trig",
"", 20, -TMath::Pi(), TMath::Pi());
66 m_h2_xF_tb =
new TH2D(
"h2_xF_tb" ,
"", 20, -1, 1, 6, 2.5, 8.5);
67 m_h2_xF_trig =
new TH2D(
"h2_xF_trig",
"", 20, -1, 1, 6, 2.5, 8.5);
70 m_h2_x1_tb =
new TH2D(
"h2_x1_tb" ,
"", 20, 0, 1, 6, 2.5, 8.5);
71 m_h2_x1_trig =
new TH2D(
"h2_x1_trig",
"", 20, 0, 1, 6, 2.5, 8.5);
74 m_h2_x2_tb =
new TH2D(
"h2_x2_tb" ,
"", 20, 0, 1, 6, 2.5, 8.5);
75 m_h2_x2_trig =
new TH2D(
"h2_x2_trig",
"", 20, 0, 1, 6, 2.5, 8.5);
79 m_h2_mom_tb =
new TH2D(
"h2_mom_tb" ,
"", 20, 20, 120, 6, 2.5, 8.5);
80 m_h2_mom_trig =
new TH2D(
"h2_mom_trig",
"", 20, 20, 120, 6, 2.5, 8.5);
83 m_h2_phi_tb =
new TH2D(
"h2_phi_tb" ,
"", 20, -TMath::Pi(), TMath::Pi(), 6, 2.5, 8.5);
84 m_h2_phi_trig =
new TH2D(
"h2_phi_trig",
"", 20, -TMath::Pi(), TMath::Pi(), 6, 2.5, 8.5);
87 m_h2_theta_tb =
new TH2D(
"h2_theta_tb" ,
"", 20, 0, 0.1, 6, 2.5, 8.5);
88 m_h2_theta_trig =
new TH2D(
"h2_theta_trig",
"", 20, 0, 0.1, 6, 2.5, 8.5);
114 if (road_pos * road_neg >= 0)
return;
134 if (map_pos->
Find(road_pos) && map_neg->
Find(road_neg)) {
173 TCanvas* c1 =
new TCanvas(
"c1",
"");
175 gStyle->SetOptStat(0000);
177 h1_tb ->SetLineColor(kBlack);
178 h1_trig->SetLineColor(kRed );
181 oss <<
"GMC;" << name <<
";Weighted yield";
182 THStack hs(
"hs", oss.str().c_str());
183 hs.Add(h1_tb ,
"E1");
184 hs.Add(h1_trig,
"E1");
187 TLegend leg (0.75, 0.80, 0.99, 0.99);
188 leg.AddEntry(h1_tb ,
"All T+B or B+T",
"l");
189 leg.AddEntry(h1_trig,
"Triggered" ,
"l");
191 leg.SetBorderSize(1);
196 oss <<
m_dir_out <<
"/h1_" << name <<
".png";
197 c1->SaveAs(oss.str().c_str());
202 oss <<
m_dir_out <<
"/h1_" << name <<
"_log.png";
203 c1->SaveAs(oss.str().c_str());
207 TH1* h1_ratio = (TH1*)h1_trig->Clone(
"h1_ratio");
209 oss <<
"GMC;" << name <<
";Trigger acceptance";
210 h1_ratio->SetTitle(oss.str().c_str());
211 for (
int ib = 1; ib <= h1_ratio->GetNbinsX(); ib++) {
212 double n_tb = h1_tb ->GetBinContent(ib);
213 double e_tb = h1_tb ->GetBinError (ib);
214 double n_trig = h1_trig->GetBinContent(ib);
215 double e_trig = h1_trig->GetBinError (ib);
219 double n_nont = n_tb - n_trig;
220 double e_nont = sqrt( pow(e_tb,2) - pow(e_trig,2) );
221 frac = n_trig / n_tb;
222 err = sqrt( pow(n_trig*e_nont, 2) + pow(e_trig*n_nont, 2) ) / pow(n_tb, 2);
224 h1_ratio->SetBinContent(ib, frac);
225 h1_ratio->SetBinError (ib, err );
227 h1_ratio->Draw(
"E1");
228 h1_ratio->GetYaxis()->SetRangeUser(0, 1);
230 oss <<
m_dir_out <<
"/h1_" << name <<
"_ratio.png";
231 c1->SaveAs(oss.str().c_str());
239 TCanvas* c1 =
new TCanvas(
"c1",
"");
241 gStyle->SetOptStat(0000);
244 oss <<
"GMC;" << name <<
";Trigger acceptance";
245 THStack hs_ratio(
"hs", oss.str().c_str());
246 TLegend leg_ratio(0.89, 0.70, 0.99, 0.99);
249 for (
int iy = 1; iy <= h2_tb->GetNbinsY(); iy++) {
250 double m_lo = h2_tb->GetYaxis()->GetBinLowEdge(iy );
251 double m_hi = h2_tb->GetYaxis()->GetBinLowEdge(iy+1);
252 TH1* h1_tb = h2_tb ->ProjectionX(
"h1_tb" , iy, iy);
253 TH1* h1_trig = h2_trig->ProjectionX(
"h1_trig", iy, iy);
254 h1_tb ->SetLineColor(kBlack);
255 h1_trig->SetLineColor(kRed );
258 oss <<
"GMC: M=" << m_lo <<
"-" << m_hi <<
" GeV;" << name <<
";Weighted yield";
259 THStack hs(
"hs", oss.str().c_str());
260 hs.Add(h1_tb ,
"E1");
261 hs.Add(h1_trig,
"E1");
264 TLegend leg(0.75, 0.80, 0.99, 0.99);
265 leg.AddEntry(h1_tb ,
"All T+B or B+T",
"l");
266 leg.AddEntry(h1_trig,
"Triggered" ,
"l");
268 leg.SetBorderSize(1);
273 oss <<
m_dir_out <<
"/h1_" << name <<
"_m" << iy <<
".png";
274 c1->SaveAs(oss.str().c_str());
279 oss <<
m_dir_out <<
"/h1_" << name <<
"_m" << iy <<
"_log.png";
280 c1->SaveAs(oss.str().c_str());
285 oss <<
"h1_ratio_m" << iy;
286 h1_ratio[iy] = (TH1*)h1_trig->Clone(oss.str().c_str());
288 oss <<
"GMC: M=" << m_lo <<
"-" << m_hi <<
" GeV;" << name <<
";Trigger acceptance";
289 h1_ratio[iy]->SetTitle(oss.str().c_str());
290 for (
int ib = 1; ib <= h1_ratio[iy]->GetNbinsX(); ib++) {
291 double n_tb = h1_tb ->GetBinContent(ib);
292 double e_tb = h1_tb ->GetBinError (ib);
293 double n_trig = h1_trig->GetBinContent(ib);
294 double e_trig = h1_trig->GetBinError (ib);
298 double n_nont = n_tb - n_trig;
299 double e_nont = sqrt( pow(e_tb,2) - pow(e_trig,2) );
300 frac = n_trig / n_tb;
301 err = sqrt( pow(n_trig*e_nont, 2) + pow(e_trig*n_nont, 2) ) / pow(n_tb, 2);
303 h1_ratio[iy]->SetBinContent(ib, frac);
304 h1_ratio[iy]->SetBinError (ib, err );
312 h1_ratio[iy]->SetLineColor (iy+1);
313 h1_ratio[iy]->SetMarkerColor(iy+1);
314 h1_ratio[iy]->SetMarkerStyle(21);
317 oss << m_lo <<
"-" << m_hi;
318 leg_ratio.AddEntry(h1_ratio[iy], oss.str().c_str(),
"l");
319 hs_ratio .Add (h1_ratio[iy],
"E1");
325 hs_ratio.SetMinimum(0.0);
326 hs_ratio.SetMaximum(1.0);
327 hs_ratio .Draw(
"nostack");
328 leg_ratio.SetHeader(
"Mass");
329 leg_ratio.SetTextFont(22);
330 leg_ratio.SetBorderSize(1);
331 leg_ratio.SetFillColor(0);
334 oss <<
m_dir_out <<
"/h1_" << name <<
"_ratio.png";
335 c1->SaveAs(oss.str().c_str());
337 for (
int iy = 1; iy <= h2_tb->GetNbinsY(); iy++)
delete h1_ratio[iy];
RoadMap m_road_map_neg_top
RoadMap m_road_map_neg_bot
RoadMap m_road_map_pos_bot
RoadMap m_road_map_pos_top
virtual void ProcessOneEvent()
ReAnaSignal(const std::string label="re_ana_signal")
void DrawOneVar2D(const char *name, TH2 *h2_tb, TH2 *h2_trig)
void DrawOneVar(const char *name, TH1 *h1_tb, TH1 *h1_trig)
Class to hold a non-ordered set (i.e. map) of roads.
RoadInfo * Find(const int road) const