Class Reference for E1039 Core & Analysis Software
AnaBG.cc
Go to the documentation of this file.
1 #include <iostream>
2 #include <fstream>
3 #include <iomanip>
4 #include <TROOT.h>
5 #include <TFile.h>
6 #include <TTree.h>
7 #include <TSystem.h>
8 #include <TStyle.h>
9 #include <TCanvas.h>
10 #include <THStack.h>
11 #include <TLegend.h>
12 #include <TH1D.h>
13 #include <UtilAna/UtilTrigger.h>
14 #include <UtilAna/UtilBeam.h>
15 #include "RoadInfo.h"
16 #include "RoadMap.h"
17 #include "RoadList.h"
18 #include "UtilRoad.h"
19 #include "AnaSignal.h"
20 #include "AnaBG.h"
21 using namespace std;
22 
23 AnaBG::AnaBG(const std::string label)
24  : AnaBase(label)
25  , m_n_evt_used (0)
26  , m_n_evt_tb (0)
27  , m_n_evt_fired(0)
28  , m_road_map_pos_top(0)
29  , m_road_map_pos_bot(0)
30  , m_road_map_neg_top(0)
31  , m_road_map_neg_bot(0)
32  , m_bg_data(0)
33  , m_inte_cut(0)
34 {
35  ;
36 }
37 
39 {
40 }
41 
43 {
44  if (!m_road_map_pos_top) {
45  cout << "AnaBG::Init(): ERROR No road given. Abort." << endl;
46  exit(1);
47  }
48 
49  int n_val;
50  double* list_val;
51  UtilBeam::ListOfRfValues(n_val, list_val);
52 
53  ostringstream oss;
54  oss << m_dir_out << "/output.root";
55  m_file_out = new TFile(oss.str().c_str(), "RECREATE");
56  // m_h1_inte_max = new TH1D("h1_inte_max" , "", 200, 0, 20e3);
57  m_h1_inte_max = new TH1D("h1_inte_max" , "", 1200, 0, 130e3);
58  // m_h1_inte = new TH1D("h1_inte" , "Run 06 NIM3 ", n_val-1, list_val);
59  m_h1_inte = new TH1D("h1_inte" , "", 1200, 0, 1300e3);
60 
61  m_ofs << "Intensity cut = " << m_inte_cut << endl;
62 }
63 
64 void AnaBG::End()
65 {
66  m_file_out->cd();
67  m_file_out->Write();
68  m_file_out->Close();
69 }
70 
71 void AnaBG::ReadEvents(const char* fname)
72 {
73  gROOT->cd();
74  TFile* file = new TFile(fname);
75  if (! file->IsOpen()) {
76  cout << "Cannot open the file, '" << fname << "'. Abort." << endl;
77  exit(1);
78  }
79  TTree* tree = (TTree*)file->Get(m_tree_name.c_str());
80  if (! tree) {
81  cout << "Cannot get the tree, '" << m_tree_name.c_str() << "'. Abort." << endl;
82  exit(1);
83  }
84 
85 
86  tree->SetBranchAddress(m_branch_name.c_str(), &m_bg_data);
87 
88  for (int i_ent = 0; i_ent < tree->GetEntries(); i_ent++) {
89  tree->GetEntry(i_ent);
91  }
92  file->Close();
93  delete file;
94 }
95 
97 {
98  //int run = m_bg_data->run;
99  //int evt = m_bg_data->evt;
100  //bool fpga1 = m_bg_data->fpga1;
101  int inte_rfp00 = m_bg_data->inte_rfp00;
102  int inte_max = m_bg_data->inte_max;
103  EleList* h1t = &m_bg_data->h1t;
104  EleList* h2t = &m_bg_data->h2t;
105  EleList* h3t = &m_bg_data->h3t;
106  EleList* h4t = &m_bg_data->h4t;
107  EleList* h1b = &m_bg_data->h1b;
108  EleList* h2b = &m_bg_data->h2b;
109  EleList* h3b = &m_bg_data->h3b;
110  EleList* h4b = &m_bg_data->h4b;
111 
112  m_h1_inte->Fill(inte_rfp00);
113 
114  if (inte_max == 0) return; // Some readout error
115  m_n_evt_used++;
116 
117  m_h1_inte_max->Fill(inte_max);
118 
119 // if (m_inte_cut > 0 && inte_max >= m_inte_cut) return;
120 
121  if(m_inte_cut > 0 && inte_rfp00 >= m_inte_cut) return; //modification by Abi
122 
123  if (h1t->size() == 0 || h1b->size() == 0 ||
124  h2t->size() == 0 || h2b->size() == 0 ||
125  h3t->size() == 0 || h3b->size() == 0 ||
126  h4t->size() == 0 || h4b->size() == 0 ) return;
127  m_n_evt_tb++;
128 
129  RoadMap map_top;
130  RoadMap map_bot;
131  FindAllRoads(h1t, h2t, h3t, h4t, +1, &map_top);
132  FindAllRoads(h1b, h2b, h3b, h4b, -1, &map_bot);
133 
134  bool fired = false;
135  if (map_top.Contain(m_road_map_pos_top) &&
136  map_bot.Contain(m_road_map_neg_bot) ) { // T+B
137  fired = true;
138  for (RoadMap::Iter it = map_top.Begin(); it != map_top.End(); it++) {
139  if (m_road_map_pos_top->Find(it->first)) m_road_map_pos_top->AddBG(it->second);
140  }
141  for (RoadMap::Iter it = map_bot.Begin(); it != map_bot.End(); it++) {
142  if (m_road_map_neg_bot->Find(it->first)) m_road_map_neg_bot->AddBG(it->second);
143  }
144  }
145  if (map_top.Contain(m_road_map_neg_top) &&
146  map_bot.Contain(m_road_map_pos_bot) ) { // B+T
147  fired = true;
148  for (RoadMap::Iter it = map_top.Begin(); it != map_top.End(); it++) {
149  if (m_road_map_neg_top->Find(it->first)) m_road_map_neg_top->AddBG(it->second);
150  }
151  for (RoadMap::Iter it = map_bot.Begin(); it != map_bot.End(); it++) {
152  if (m_road_map_pos_bot->Find(it->first)) m_road_map_pos_bot->AddBG(it->second);
153  }
154  }
155 
156  if (fired) m_n_evt_fired++;
157 }
158 
160 {
161  cout << "AnaBG::Analyze():" << endl;
162 
163  m_ofs << "Event Counts:\n"
164  << "N of analyzed events:\n"
165  << " Used " << m_n_evt_used << "\n"
166  << " T+B " << m_n_evt_tb << "\n"
167  << " Fired " << m_n_evt_fired << "\n \n"
168  << "Expected counts per spill:\n"
169  << " T+B " << N_RF_PER_SPILL * m_n_evt_tb / m_n_evt_used << "\n"
170  << " Fired " << N_RF_PER_SPILL * m_n_evt_fired / m_n_evt_used << "\n"
171  << endl;
172 
173  DrawInteMax();
174 
179 
183  for (RoadMap::Iter it = m_road_map_pos_top->Begin(); it != m_road_map_pos_top->End(); it++) {
184  if (it->second->GetWeightBG() == 0) it->second->AddBG(1);
185  }
186  for (RoadMap::Iter it = m_road_map_pos_bot->Begin(); it != m_road_map_pos_bot->End(); it++) {
187  if (it->second->GetWeightBG() == 0) it->second->AddBG(1);
188  }
189  for (RoadMap::Iter it = m_road_map_neg_top->Begin(); it != m_road_map_neg_top->End(); it++) {
190  if (it->second->GetWeightBG() == 0) it->second->AddBG(1);
191  }
192  for (RoadMap::Iter it = m_road_map_neg_bot->Begin(); it != m_road_map_neg_bot->End(); it++) {
193  if (it->second->GetWeightBG() == 0) it->second->AddBG(1);
194  }
195 }
196 
197 void AnaBG::SetRoads(AnaSignal* ana_signal)
198 {
199  m_road_map_pos_top = ana_signal->GetRoadMapPosTop();
200  m_road_map_pos_bot = ana_signal->GetRoadMapPosBot();
201  m_road_map_neg_top = ana_signal->GetRoadMapNegTop();
202  m_road_map_neg_bot = ana_signal->GetRoadMapNegBot();
207 }
208 
209 void AnaBG::SetRoads(RoadMap* pos_top, RoadMap* pos_bot, RoadMap* neg_top, RoadMap* neg_bot)
210 {
211  m_road_map_pos_top = pos_top;
212  m_road_map_pos_bot = pos_bot;
213  m_road_map_neg_top = neg_top;
214  m_road_map_neg_bot = neg_bot;
215 }
216 
217 void AnaBG::FindAllRoads(const EleList* h1, const EleList* h2, const EleList* h3, const EleList* h4, const int tb, RoadMap* road_map)
218 {
219  if (abs(tb) != 1) return;
220  for (EleList::const_iterator it1 = h1->begin(); it1 != h1->end(); it1++) {
221  for (EleList::const_iterator it2 = h2->begin(); it2 != h2->end(); it2++) {
222  for (EleList::const_iterator it3 = h3->begin(); it3 != h3->end(); it3++) {
223  for (EleList::const_iterator it4 = h4->begin(); it4 != h4->end(); it4++) {
224  int road = UtilTrigger::Hodo2Road(*it1, *it2, *it3, *it4, tb);
225  road_map->AddBG(road, 1.0);
226  }
227  }
228  }
229  }
230 }
231 
232 
234 {
235  //int bin_cut = m_h1_inte_max->FindBin(m_inte_cut) - 1;
236  //double frac_acc = m_h1_inte_max->Integral(0, bin_cut)*1.0 / m_h1_inte_max->Integral()*1.;
237  int bin_cut = m_h1_inte->FindBin(m_inte_cut) - 1;
238  double frac_acc = m_h1_inte->Integral(0, bin_cut)*1.0 / m_h1_inte->Integral()*1.;
239 
240  m_ofs << "NIM3 event fraction = " << frac_acc << " @ inte_rfp00 < " << m_inte_cut<<" m_h1_inte_max->Integral(0, bin_cut): "<< m_h1_inte_max->Integral(0, bin_cut)<<" m_h1_inte_max->Integral(): "<<m_h1_inte_max->Integral() << endl;
241 
242  TCanvas* c1 = new TCanvas("c1", "");
243  c1->SetGrid();
244  c1->SetLogy(true);
245  gStyle->SetOptStat(0000);
246 
247  m_h1_inte_max->SetTitle("NIM3;Max intensity;Yield");
248 
249  m_h1_inte_max->GetXaxis()->SetRangeUser(0, 5000);
250  m_h1_inte_max->Draw();
251  ostringstream oss;
252  oss << m_dir_out << "/h1_inte_max.png";
253  c1->SaveAs(oss.str().c_str());
254 
255  m_h1_inte_max->GetXaxis()->SetRange();
256  m_h1_inte_max->Rebin(10);
257  m_h1_inte_max->Draw();
258  oss.str("");
259  oss << m_dir_out << "/h1_inte_max_all.png";
260  c1->SaveAs(oss.str().c_str());
261 
262  delete c1;
263 }
TH1 * m_h1_inte_max
Definition: AnaBG.h:39
virtual void ProcessOneEvent()
Definition: AnaBG.cc:96
virtual void Init()
Definition: AnaBG.cc:42
int m_n_evt_used
Definition: AnaBG.h:21
void SetRoads(AnaSignal *ana_signal)
Definition: AnaBG.cc:197
RoadMap * m_road_map_pos_bot
Definition: AnaBG.h:26
std::vector< int > EleList
Definition: AnaBG.h:19
int m_n_evt_fired
Definition: AnaBG.h:23
RoadMap * m_road_map_neg_bot
Definition: AnaBG.h:28
RoadMap * m_road_map_neg_top
Definition: AnaBG.h:27
virtual ~AnaBG()
Definition: AnaBG.cc:38
static constexpr double N_RF_PER_SPILL
N of RFs per spill.
Definition: AnaBG.h:18
AnaBG(const std::string label="ana_bg")
Definition: AnaBG.cc:23
virtual void ReadEvents(const char *fname)
Definition: AnaBG.cc:71
BgData * m_bg_data
Definition: AnaBG.h:33
void DrawInteMax()
Definition: AnaBG.cc:233
int m_n_evt_tb
Definition: AnaBG.h:22
RoadMap * m_road_map_pos_top
Definition: AnaBG.h:25
TH1 * m_h1_inte
Definition: AnaBG.h:40
virtual void End()
Definition: AnaBG.cc:64
int m_inte_cut
Definition: AnaBG.h:45
virtual void Analyze()
Definition: AnaBG.cc:159
void FindAllRoads(const EleList *h1, const EleList *h2, const EleList *h3, const EleList *h4, const int tb, RoadMap *road_map)
Definition: AnaBG.cc:217
TFile * m_file_out
Definition: AnaBG.h:38
Definition: AnaBase.h:6
std::string m_branch_name
Definition: AnaBase.h:10
std::string m_dir_out
Definition: AnaBase.h:11
std::string m_tree_name
Definition: AnaBase.h:9
std::ofstream m_ofs
Definition: AnaBase.h:12
RoadMap * GetRoadMapPosTop()
Definition: AnaSignal.h:31
RoadMap * GetRoadMapNegBot()
Definition: AnaSignal.h:34
RoadMap * GetRoadMapNegTop()
Definition: AnaSignal.h:33
RoadMap * GetRoadMapPosBot()
Definition: AnaSignal.h:32
void Frozen()
Definition: RoadListBase.h:25
Class to hold a non-ordered set (i.e. map) of roads.
Definition: RoadMap.h:8
bool Contain(const RoadMap *map) const
Definition: RoadMap.cc:26
RoadInfo * Find(const int road) const
Definition: RoadMap.cc:21
InfoMap::iterator Iter
Definition: RoadMap.h:13
ConstIter End() const
Definition: RoadMap.h:21
void AddBG(const int road, const double weight, const int count=1)
Definition: RoadMap.cc:69
void ScaleBG(const double val)
Definition: RoadMap.cc:90
ConstIter Begin() const
Definition: RoadMap.h:20
void ListOfRfValues(int &n_value, int *&list_values)
Make a list of QIE RF+nn values.
Definition: UtilBeam.cc:10
int Hodo2Road(const int h1, const int h2, const int h3, const int h4, const int tb)
Convert a set of hodo IDs to a roadset ID.
Definition: UtilTrigger.cc:11
std::vector< int > h1t
Definition: TreeData.h:33
int inte_max
Definition: TreeData.h:32
std::vector< int > h1b
Definition: TreeData.h:37
int inte_rfp00
In unit of QIE count.
Definition: TreeData.h:31
std::vector< int > h2t
Definition: TreeData.h:34
std::vector< int > h4b
Definition: TreeData.h:40
std::vector< int > h2b
Definition: TreeData.h:38
std::vector< int > h4t
Definition: TreeData.h:36
std::vector< int > h3t
Definition: TreeData.h:35
std::vector< int > h3b
Definition: TreeData.h:39