Class Reference for E1039 Core & Analysis Software
AnaTrigSignal.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TSystem.h>
3 #include <TStyle.h>
4 #include <TFile.h>
5 #include <TTree.h>
6 #include <TH1D.h>
7 #include <TH2D.h>
8 #include <THStack.h>
9 #include <TLegend.h>
10 #include <TCanvas.h>
11 #include <interface_main/SQRun.h>
12 #include <interface_main/SQEvent.h>
15 #include <phool/PHNodeIterator.h>
16 #include <phool/PHIODataNode.h>
17 #include <phool/getClass.h>
18 #include <geom_svc/GeomSvc.h>
19 #include <UtilAna/UtilSQHit.h>
20 #include <UtilAna/UtilHist.h>
21 #include "AnaTrigSignal.h"
22 using namespace std;
23 
25 const vector<string> AnaTrigSignal::m_list_det_name = { "BeforeInhMatrix", "AfterInhMatrix", "AfterInhNIM" };
26 
27 AnaTrigSignal::AnaTrigSignal(const std::string& name)
28  : SubsysReco(name)
29  , m_file(0)
30  , m_tree(0)
31 {
32  ;
33 }
34 
36 {
38 }
39 
41 {
45  m_evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
46  m_hit_vec = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
47  if (!m_evt || !m_hit_vec) return Fun4AllReturnCodes::ABORTEVENT;
48 
52  gSystem->mkdir("result", true);
53 
54  m_file = new TFile("result/output.root", "RECREATE");
55  m_tree = new TTree("tree", "Created by AnaTrigSignal");
56  m_tree->Branch("det_name", &b_det_name, "det_name/C");
57  m_tree->Branch("det" , &b_det , "det/I");
58  m_tree->Branch("ele" , &b_ele , "ele/I");
59  m_tree->Branch("time" , &b_time , "time/D");
60 
61  ostringstream oss;
62  GeomSvc* geom = GeomSvc::instance();
63  for (unsigned int i_det = 0; i_det < m_list_det_name.size(); i_det++) {
64  string name = m_list_det_name[i_det];
65  int id = geom->getDetectorID(name);
66  if (id <= 0) {
67  cerr << "!ERROR! AnaTrigSignal::InitRun(): Invalid ID (" << id << "). Probably the detector name that you specified in 'list_det_name' (" << name << ") is not valid. Abort." << endl;
68  exit(1);
69  }
70  m_list_det_id.push_back(id);
71 
72  const double DT = 12/9.0; // 4/9 ns per single count of Taiwan TDC
73  int NT = 1500;
74  double T0 = 0.5*DT;
75  double T1 = 1500.5*DT;
76 
77  oss.str("");
78  oss << "h2_time_ele_" << name;
79  m_h2_time_ele[i_det] = new TH2D(oss.str().c_str(), "", NT, T0, T1, N_ELE, 0.5, N_ELE+0.5);
80  oss.str("");
81  oss << name << ";TDC time (ns);Element ID";
82  m_h2_time_ele[i_det]->SetTitle(oss.str().c_str());
83 
84  oss.str("");
85  oss << "h1_nhit_" << name;
86  m_h1_nhit[i_det] = new TH1D(oss.str().c_str(), "", 10, -0.5, 9.5);
87  oss.str("");
88  oss << name << ";N of hits/plane/event;Hit count";
89  m_h1_nhit[i_det]->SetTitle(oss.str().c_str());
90  }
91 
93 }
94 
96 {
97  //int spill_id = m_evt->get_spill_id();
98  //int event_id = m_evt->get_event_id();
99 
103  //if (! m_evt->get_trigger(SQEvent::NIM2)) {
104  // return Fun4AllReturnCodes::EVENT_OK;
105  //}
106 
110  for (unsigned int i_det = 0; i_det < m_list_det_name.size(); i_det++) {
111  strncpy(b_det_name, m_list_det_name[i_det].c_str(), sizeof(b_det_name));
112  b_det = m_list_det_id[i_det];
113  shared_ptr<SQHitVector> hv(UtilSQHit::FindHits(m_hit_vec, b_det));
114  for (SQHitVector::ConstIter it = hv->begin(); it != hv->end(); it++) {
115  b_ele = (*it)->get_element_id();
116  b_time = (*it)->get_tdc_time ();
117  m_tree->Fill();
118 
119  m_h2_time_ele[i_det]->Fill(b_time, b_ele);
120  }
121  m_h1_nhit[i_det]->Fill(hv->size());
122  }
123 
125 }
126 
128 {
129  ostringstream oss;
130  TCanvas* c1 = new TCanvas("c1", "");
131  c1->SetGrid();
132  for (unsigned int i_det = 0; i_det < m_list_det_id.size(); i_det++) {
133  string name = m_list_det_name[i_det];
134 
135  gStyle->SetOptStat(0);
136  UtilHist::AutoSetRangeX(m_h2_time_ele[i_det]);
137  m_h2_time_ele[i_det]->Draw("colz");
138  oss.str("");
139  oss << "result/" << m_h2_time_ele[i_det]->GetName() << ".png";
140  c1->SaveAs(oss.str().c_str());
141 
142  TH1* h1_ele = m_h2_time_ele[i_det]->ProjectionY("h1_ele");
143  h1_ele->Draw();
144  oss.str("");
145  oss << "result/h1_ele_" << name << ".png";
146  c1->SaveAs(oss.str().c_str());
147  delete h1_ele;
148 
149  oss.str("");
150  oss << name << ";TDC time (ns);Hit count";
151  THStack hs("hs", oss.str().c_str());
152  TLegend leg(0.9, 0.5, 0.99, 0.9);
153  for (int i_ele = 1; i_ele <= N_ELE; i_ele++) {
154  oss.str("");
155  oss << "h1_time_" << i_ele;
156  TH1* h1_time = m_h2_time_ele[i_det]->ProjectionX(oss.str().c_str(), i_ele, i_ele);
157  h1_time->SetLineColor(i_ele);
158  hs.Add(h1_time);
159  oss.str("");
160  oss << "#" << i_ele;
161  leg.AddEntry(h1_time, oss.str().c_str(), "l");
162  }
163  hs.Draw("nostack");
164  leg.Draw();
165  oss.str("");
166  oss << "result/h1_time_" << name << ".png";
167  c1->SaveAs(oss.str().c_str());
168 
169  m_h1_nhit[i_det]->Draw();
170  oss.str("");
171  oss << "result/" << m_h1_nhit[i_det]->GetName() << ".png";
172  c1->SaveAs(oss.str().c_str());
173  }
174  delete c1;
175 
176  m_file->cd();
177  m_file->Write();
178  m_file->Close();
179 
181 }
int process_event(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
AnaTrigSignal(const std::string &name="AnaTrigSignal")
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
int getDetectorID(const std::string &detectorName) const
Get the plane position.
Definition: GeomSvc.h:219
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
std::vector< SQHit * >::const_iterator ConstIter
Definition: SQHitVector.h:37
void AutoSetRangeX(TH2 *h2, const int margin_lo=5, const int margin_hi=5)
Definition: UtilHist.cc:29
SQHitVector * FindHits(const SQHitVector *vec_in, const std::string det_name, const bool in_time=false)
Extract a set of hits that are of the given detector (det_name).
Definition: UtilSQHit.cc:16