Class Reference for E1039 Core & Analysis Software
ReAnaSignal.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <iomanip>
3 #include <TROOT.h>
4 #include <TFile.h>
5 #include <TTree.h>
6 #include <TSystem.h>
7 #include <TStyle.h>
8 #include <TCanvas.h>
9 #include <THStack.h>
10 #include <TLegend.h>
11 #include <TH1D.h>
12 #include <TH2D.h>
13 #include <TMath.h>
14 #include "RoadMap.h"
15 #include "RoadList.h"
16 #include "UtilRoad.h"
17 #include "ReAnaSignal.h"
18 using namespace std;
19 
20 ReAnaSignal::ReAnaSignal(const std::string label)
21  : AnaSignal(label)
22 {
23  ;
24 }
25 
27 {
28  ;
29 }
30 
32 {
33  ostringstream oss;
34  oss << m_dir_out << "/output.root";
35  m_file_out = new TFile(oss.str().c_str(), "RECREATE");
36  m_h1_mass_tb = new TH1D("h1_mass_tb" , "", 18, 1, 10);
37  m_h1_mass_trig = new TH1D("h1_mass_trig", "", 18, 1, 10);
38  m_h1_mass_tb ->Sumw2();
39  m_h1_mass_trig->Sumw2();
40  m_h1_xF_tb = new TH1D("h1_xF_tb" , "", 20, -1, 1);
41  m_h1_xF_trig = new TH1D("h1_xF_trig", "", 20, -1, 1);
42  m_h1_xF_tb ->Sumw2();
43  m_h1_xF_trig->Sumw2();
44  m_h1_x1_tb = new TH1D("h1_x1_tb" , "", 20, 0, 1);
45  m_h1_x1_trig = new TH1D("h1_x1_trig", "", 20, 0, 1);
46  m_h1_x1_tb ->Sumw2();
47  m_h1_x1_trig->Sumw2();
48  m_h1_x2_tb = new TH1D("h1_x2_tb" , "", 20, 0, 1);
49  m_h1_x2_trig = new TH1D("h1_x2_trig", "", 20, 0, 1);
50  m_h1_x2_tb ->Sumw2();
51  m_h1_x2_trig->Sumw2();
52 
53  m_h1_mom_tb = new TH1D("h1_mom_tb" , "", 20, 20, 120);
54  m_h1_mom_trig = new TH1D("h1_mom_trig", "", 20, 20, 120);
55  m_h1_mom_tb ->Sumw2();
56  m_h1_mom_trig ->Sumw2();
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());
59  m_h1_phi_tb ->Sumw2();
60  m_h1_phi_trig ->Sumw2();
61  m_h1_theta_tb = new TH1D("h1_theta_tb" , "", 20, 0, 0.1);
62  m_h1_theta_trig = new TH1D("h1_theta_trig", "", 20, 0, 0.1);
63  m_h1_theta_tb ->Sumw2();
64  m_h1_theta_trig->Sumw2();
65 
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);
68  m_h2_xF_tb ->Sumw2();
69  m_h2_xF_trig->Sumw2();
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);
72  m_h2_x1_tb ->Sumw2();
73  m_h2_x1_trig->Sumw2();
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);
76  m_h2_x2_tb ->Sumw2();
77  m_h2_x2_trig->Sumw2();
78 
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);
81  m_h2_mom_tb ->Sumw2();
82  m_h2_mom_trig ->Sumw2();
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);
85  m_h2_phi_tb ->Sumw2();
86  m_h2_phi_trig ->Sumw2();
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);
89  m_h2_theta_tb ->Sumw2();
90  m_h2_theta_trig->Sumw2();
91 }
92 
94 {
95  m_file_out->cd();
96  m_file_out->Write();
97  m_file_out->Close();
98 }
99 
101 {
102  double weight = m_sig_data->weight;
103  double mass = m_sig_data->mass;
104  //double pT = m_sig_data->pT;
105  double xF = m_sig_data->xF;
106  double x1 = m_sig_data->x1;
107  double x2 = m_sig_data->x2;
108  double mom = m_sig_data->mom;
109  double phi = m_sig_data->phi;
110  double theta = m_sig_data->theta;
111  int road_pos = m_sig_data->road_pos;
112  int road_neg = m_sig_data->road_neg;
113 
114  if (road_pos * road_neg >= 0) return;
115 
116  m_h1_mass_tb->Fill(mass, weight);
117  if (m_mass_lo <= mass && mass <= m_mass_hi) {
118  m_h1_xF_tb ->Fill(xF , weight);
119  m_h1_x1_tb ->Fill(x1 , weight);
120  m_h1_x2_tb ->Fill(x2 , weight);
121  m_h1_mom_tb ->Fill(mom , weight);
122  m_h1_phi_tb ->Fill(phi , weight);
123  m_h1_theta_tb->Fill(theta, weight);
124  }
125  m_h2_xF_tb ->Fill(xF , mass, weight);
126  m_h2_x1_tb ->Fill(x1 , mass, weight);
127  m_h2_x2_tb ->Fill(x2 , mass, weight);
128  m_h2_mom_tb ->Fill(mom , mass, weight);
129  m_h2_phi_tb ->Fill(phi , mass, weight);
130  m_h2_theta_tb->Fill(theta, mass, weight);
131 
132  RoadMap* map_pos = road_pos > 0 ? &m_road_map_pos_top : &m_road_map_pos_bot;
133  RoadMap* map_neg = road_neg > 0 ? &m_road_map_neg_top : &m_road_map_neg_bot;
134  if (map_pos->Find(road_pos) && map_neg->Find(road_neg)) {
135  m_h1_mass_trig->Fill(mass, weight);
136  if (m_mass_lo <= mass && mass <= m_mass_hi) {
137  m_h1_xF_trig ->Fill(xF , weight);
138  m_h1_x1_trig ->Fill(x1 , weight);
139  m_h1_x2_trig ->Fill(x2 , weight);
140  m_h1_mom_trig ->Fill(mom , weight);
141  m_h1_phi_trig ->Fill(phi , weight);
142  m_h1_theta_trig->Fill(theta, weight);
143  }
144  m_h2_xF_trig ->Fill(xF , mass, weight);
145  m_h2_x1_trig ->Fill(x1 , mass, weight);
146  m_h2_x2_trig ->Fill(x2 , mass, weight);
147  m_h2_mom_trig ->Fill(mom , mass, weight);
148  m_h2_phi_trig ->Fill(phi , mass, weight);
149  m_h2_theta_trig->Fill(theta, mass, weight);
150  }
151 }
152 
154 {
162 
169 }
170 
171 void ReAnaSignal::DrawOneVar(const char* name, TH1* h1_tb, TH1* h1_trig)
172 {
173  TCanvas* c1 = new TCanvas("c1", "");
174  c1->SetGrid();
175  gStyle->SetOptStat(0000);
176 
177  h1_tb ->SetLineColor(kBlack);
178  h1_trig->SetLineColor(kRed );
179 
180  ostringstream oss;
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");
185  hs.Draw("nostack");
186 
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");
190  leg.SetTextFont(22);
191  leg.SetBorderSize(1);
192  leg.SetFillColor(0);
193  leg.Draw();
194 
195  oss.str("");
196  oss << m_dir_out << "/h1_" << name << ".png";
197  c1->SaveAs(oss.str().c_str());
198 
199  c1->SetLogy(true);
200 
201  oss.str("");
202  oss << m_dir_out << "/h1_" << name << "_log.png";
203  c1->SaveAs(oss.str().c_str());
204 
205  c1->SetLogy(false);
206 
207  TH1* h1_ratio = (TH1*)h1_trig->Clone("h1_ratio");
208  oss.str("");
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);
216  double frac = 0;
217  double err = 0;
218  if (n_tb > 0) {
219  double n_nont = n_tb - n_trig; // non-triggered
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);
223  }
224  h1_ratio->SetBinContent(ib, frac);
225  h1_ratio->SetBinError (ib, err );
226  }
227  h1_ratio->Draw("E1");
228  h1_ratio->GetYaxis()->SetRangeUser(0, 1);
229  oss.str("");
230  oss << m_dir_out << "/h1_" << name << "_ratio.png";
231  c1->SaveAs(oss.str().c_str());
232 
233  delete h1_ratio;
234  delete c1;
235 }
236 
237 void ReAnaSignal::DrawOneVar2D(const char* name, TH2* h2_tb, TH2* h2_trig)
238 {
239  TCanvas* c1 = new TCanvas("c1", "");
240  c1->SetGrid();
241  gStyle->SetOptStat(0000);
242 
243  ostringstream oss;
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);
247  TH1* h1_ratio[99];
248 
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 );
256 
257  oss.str("");
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");
262  hs.Draw("nostack");
263 
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");
267  leg.SetTextFont(22);
268  leg.SetBorderSize(1);
269  leg.SetFillColor(0);
270  leg.Draw();
271 
272  oss.str("");
273  oss << m_dir_out << "/h1_" << name << "_m" << iy << ".png";
274  c1->SaveAs(oss.str().c_str());
275 
276  c1->SetLogy(true);
277 
278  oss.str("");
279  oss << m_dir_out << "/h1_" << name << "_m" << iy << "_log.png";
280  c1->SaveAs(oss.str().c_str());
281 
282  c1->SetLogy(false);
283 
284  oss.str("");
285  oss << "h1_ratio_m" << iy;
286  h1_ratio[iy] = (TH1*)h1_trig->Clone(oss.str().c_str());
287  oss.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);
295  double frac = 0;
296  double err = 0;
297  if (n_tb > 0) {
298  double n_nont = n_tb - n_trig; // non-triggered
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);
302  }
303  h1_ratio[iy]->SetBinContent(ib, frac);
304  h1_ratio[iy]->SetBinError (ib, err );
305  }
306  //h1_ratio[iy]->Draw("E1");
307  //h1_ratio[iy]->GetYaxis()->SetRangeUser(0, 1);
308  //oss.str("");
309  //oss << m_dir_out << "/h1_" << name << "_ratio_m" << iy << ".png";
310  //c1->SaveAs(oss.str().c_str());
311 
312  h1_ratio[iy]->SetLineColor (iy+1);
313  h1_ratio[iy]->SetMarkerColor(iy+1);
314  h1_ratio[iy]->SetMarkerStyle(21);
315 
316  oss.str("");
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");
320 
321  delete h1_tb;
322  delete h1_trig;
323  }
324 
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);
332  leg_ratio.Draw();
333  oss.str("");
334  oss << m_dir_out << "/h1_" << name << "_ratio.png";
335  c1->SaveAs(oss.str().c_str());
336 
337  for (int iy = 1; iy <= h2_tb->GetNbinsY(); iy++) delete h1_ratio[iy];
338  delete c1;
339 }
340 
341 //void ReAnaSignal::DrawOneVar(TTree* tree, const char* name, const char* var, const int N, const double X0, const double X1)
342 //{
343 // static TCanvas* c1 = 0;
344 // if (! c1) {
345 // c1 = new TCanvas("c1", "");
346 // c1->SetGrid();
347 // c1->SetLogy(true);
348 // gStyle->SetOptStat(0000);
349 // }
350 //
351 // TH1* h1_all = new TH1D("h1_all", "", N, X0, X1);
352 // TH1* h1_acc = new TH1D("h1_acc", "", N, X0, X1);
353 // TH1* h1_tb = new TH1D("h1_tb" , "", N, X0, X1);
354 // h1_all->Sumw2();
355 // h1_acc->Sumw2();
356 // h1_tb ->Sumw2();
357 // tree->Project("h1_all", var, "weight");
358 // tree->Project("h1_acc", var, "weight * (road_pos*road_neg != 0)");
359 // tree->Project("h1_tb" , var, "weight * (road_pos*road_neg < 0)");
360 //
361 // h1_all->SetLineColor(kBlack);
362 // h1_acc->SetLineColor(kBlue);
363 // h1_tb ->SetLineColor(kRed);
364 //
365 // ostringstream oss;
366 // oss << "GMC;" << name << ";Weighted yield";
367 // THStack hs("hs", oss.str().c_str());
368 // hs.Add(h1_all, "E1");
369 // hs.Add(h1_acc, "E1");
370 // hs.Add(h1_tb , "E1");
371 // hs.Draw("nostack");
372 //
373 // TLegend leg (0.75, 0.75, 0.99, 0.99);
374 // leg.AddEntry(h1_all, "All generated", "l");
375 // leg.AddEntry(h1_acc, "In hodo acceptance", "l");
376 // leg.AddEntry(h1_tb , "T+B or B+T", "l");
377 // leg.SetTextFont(22);
378 // leg.SetBorderSize(1);
379 // leg.SetFillColor(0);
380 // leg.Draw();
381 //
382 // oss.str("");
383 // oss << m_dir_out << "/h1_" << name << ".png";
384 // c1->SaveAs(oss.str().c_str());
385 //
386 // delete h1_all;
387 // delete h1_acc;
388 // delete h1_tb ;
389 //}
390 
std::string m_dir_out
Definition: AnaBase.h:11
double m_mass_lo
Definition: AnaSignal.h:11
double m_mass_hi
Definition: AnaSignal.h:12
RoadMap m_road_map_neg_top
Definition: AnaSignal.h:15
RoadMap m_road_map_neg_bot
Definition: AnaSignal.h:16
SignalData * m_sig_data
Definition: AnaSignal.h:18
RoadMap m_road_map_pos_bot
Definition: AnaSignal.h:14
RoadMap m_road_map_pos_top
Definition: AnaSignal.h:13
TFile * m_file_out
Definition: ReAnaSignal.h:11
TH1 * m_h1_mass_tb
Definition: ReAnaSignal.h:12
TH2 * m_h2_xF_trig
Definition: ReAnaSignal.h:28
TH1 * m_h1_xF_tb
Definition: ReAnaSignal.h:14
TH1 * m_h1_mom_trig
Definition: ReAnaSignal.h:21
TH1 * m_h1_x2_trig
Definition: ReAnaSignal.h:19
TH2 * m_h2_theta_trig
Definition: ReAnaSignal.h:38
TH1 * m_h1_mass_trig
Definition: ReAnaSignal.h:13
TH2 * m_h2_phi_tb
Definition: ReAnaSignal.h:35
TH1 * m_h1_phi_trig
Definition: ReAnaSignal.h:23
TH2 * m_h2_x2_trig
Definition: ReAnaSignal.h:32
TH1 * m_h1_theta_tb
Definition: ReAnaSignal.h:24
TH2 * m_h2_x2_tb
Definition: ReAnaSignal.h:31
TH1 * m_h1_xF_trig
Definition: ReAnaSignal.h:15
TH2 * m_h2_xF_tb
Definition: ReAnaSignal.h:27
virtual void ProcessOneEvent()
Definition: ReAnaSignal.cc:100
ReAnaSignal(const std::string label="re_ana_signal")
Definition: ReAnaSignal.cc:20
TH2 * m_h2_mom_tb
Definition: ReAnaSignal.h:33
TH1 * m_h1_x1_trig
Definition: ReAnaSignal.h:17
TH2 * m_h2_theta_tb
Definition: ReAnaSignal.h:37
virtual void End()
Definition: ReAnaSignal.cc:93
TH1 * m_h1_phi_tb
Definition: ReAnaSignal.h:22
TH2 * m_h2_x1_trig
Definition: ReAnaSignal.h:30
TH1 * m_h1_x1_tb
Definition: ReAnaSignal.h:16
virtual void Init()
Definition: ReAnaSignal.cc:31
TH1 * m_h1_theta_trig
Definition: ReAnaSignal.h:25
virtual void Analyze()
Definition: ReAnaSignal.cc:153
TH2 * m_h2_mom_trig
Definition: ReAnaSignal.h:34
TH1 * m_h1_mom_tb
Definition: ReAnaSignal.h:20
TH2 * m_h2_phi_trig
Definition: ReAnaSignal.h:36
void DrawOneVar2D(const char *name, TH2 *h2_tb, TH2 *h2_trig)
Definition: ReAnaSignal.cc:237
void DrawOneVar(const char *name, TH1 *h1_tb, TH1 *h1_trig)
Definition: ReAnaSignal.cc:171
TH2 * m_h2_x1_tb
Definition: ReAnaSignal.h:29
virtual ~ReAnaSignal()
Definition: ReAnaSignal.cc:26
TH1 * m_h1_x2_tb
Definition: ReAnaSignal.h:18
Class to hold a non-ordered set (i.e. map) of roads.
Definition: RoadMap.h:8
RoadInfo * Find(const int road) const
Definition: RoadMap.cc:21
double mom
Definition: TreeData.h:15
double phi
Definition: TreeData.h:16
double x1
Definition: TreeData.h:12
double theta
Definition: TreeData.h:17
double weight
Definition: TreeData.h:8
double mass
Definition: TreeData.h:9
int road_pos
Definition: TreeData.h:18
int road_neg
Definition: TreeData.h:19
double x2
Definition: TreeData.h:13
double xF
Definition: TreeData.h:11