25 const vector<string> AnaTrigSignal::m_list_det_name = {
"BeforeInhMatrix",
"AfterInhMatrix",
"AfterInhNIM" };
45 m_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
46 m_hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
52 gSystem->mkdir(
"result",
true);
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");
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];
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;
70 m_list_det_id.push_back(
id);
72 const double DT = 12/9.0;
75 double T1 = 1500.5*DT;
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);
81 oss << name <<
";TDC time (ns);Element ID";
82 m_h2_time_ele[i_det]->SetTitle(oss.str().c_str());
85 oss <<
"h1_nhit_" << name;
86 m_h1_nhit[i_det] =
new TH1D(oss.str().c_str(),
"", 10, -0.5, 9.5);
88 oss << name <<
";N of hits/plane/event;Hit count";
89 m_h1_nhit[i_det]->SetTitle(oss.str().c_str());
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];
115 b_ele = (*it)->get_element_id();
116 b_time = (*it)->get_tdc_time ();
119 m_h2_time_ele[i_det]->Fill(b_time, b_ele);
121 m_h1_nhit[i_det]->Fill(hv->size());
130 TCanvas* c1 =
new TCanvas(
"c1",
"");
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];
135 gStyle->SetOptStat(0);
137 m_h2_time_ele[i_det]->Draw(
"colz");
139 oss <<
"result/" << m_h2_time_ele[i_det]->GetName() <<
".png";
140 c1->SaveAs(oss.str().c_str());
142 TH1* h1_ele = m_h2_time_ele[i_det]->ProjectionY(
"h1_ele");
145 oss <<
"result/h1_ele_" << name <<
".png";
146 c1->SaveAs(oss.str().c_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++) {
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);
161 leg.AddEntry(h1_time, oss.str().c_str(),
"l");
166 oss <<
"result/h1_time_" << name <<
".png";
167 c1->SaveAs(oss.str().c_str());
169 m_h1_nhit[i_det]->Draw();
171 oss <<
"result/" << m_h1_nhit[i_det]->GetName() <<
".png";
172 c1->SaveAs(oss.str().c_str());
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.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
static GeomSvc * instance()
singlton instance
std::vector< SQHit * >::const_iterator ConstIter
void AutoSetRangeX(TH2 *h2, const int margin_lo=5, const int margin_hi=5)
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).