20 const vector<string> AnaTriggerHit::m_list_det_name = {
21 "H1T",
"H1B",
"H2T",
"H2B",
"H3T",
"H3B",
"H4T",
"H4B"
44 m_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
45 m_hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQTriggerHitVector");
51 gSystem->mkdir(
"result",
true);
53 m_file =
new TFile(
"result/output.root",
"RECREATE");
54 m_tree =
new TTree(
"tree",
"Created by AnaTriggerHit");
55 m_tree->Branch(
"det_name", &b_det_name,
"det_name/C");
56 m_tree->Branch(
"det_id" , &b_det_id ,
"det_id/I");
57 m_tree->Branch(
"ele_id" , &b_ele_id ,
"ele_id/I");
58 m_tree->Branch(
"time" , &b_time ,
"time/D");
62 m_list_det_id.clear();
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! AnaTriggerHit::InitRun(): Invalid ID (" <<
id <<
"). Probably the detector name that you specified in 'm_list_det_name' (" << name <<
") is not valid. Abort." << endl;
70 m_list_det_id.push_back(
id);
72 cout <<
" " << setw(6) << name <<
" = " <<
id << endl;
75 oss <<
"h1_ele_id_" << name;
76 m_h1_ele[i_det] =
new TH1D(oss.str().c_str(),
"", n_ele, 0.5, n_ele+0.5);
78 oss <<
"V1495 Level-" << m_level <<
" " << name <<
";Element ID;Hit count";
79 m_h1_ele[i_det]->SetTitle(oss.str().c_str());
82 oss <<
"h1_nhit_" << name;
83 m_h1_nhit[i_det] =
new TH1D(oss.str().c_str(),
"", 20, -0.5, 19.5);
85 oss <<
"V1495 Level-" << m_level <<
" " << name <<
";N of hits/plane/event;Hit count";
86 m_h1_nhit[i_det]->SetTitle(oss.str().c_str());
89 oss <<
"h1_time_" << name;
90 m_h1_time[i_det] =
new TH1D(oss.str().c_str(),
"", 2000, -0.5, 1999.5);
92 oss <<
"V1495 Level-" << m_level <<
" " << name <<
";TDC time (ns);Hit count";
93 m_h1_time[i_det]->SetTitle(oss.str().c_str());
114 for (
unsigned int i_det = 0; i_det < m_list_det_name.size(); i_det++) {
115 strncpy(b_det_name, m_list_det_name[i_det].c_str(),
sizeof(b_det_name));
116 b_det_id = m_list_det_id[i_det];
119 if ((*it)->get_level() != m_level)
continue;
120 if (m_intime && ! (*it)->is_in_time())
continue;
122 b_ele_id = (*it)->get_element_id();
123 b_time = (*it)->get_tdc_time ();
126 m_h1_ele [i_det]->Fill(b_ele_id);
127 m_h1_time[i_det]->Fill(b_time);
129 m_h1_nhit[i_det]->Fill(hv->size());
138 TCanvas* c1 =
new TCanvas(
"c1",
"");
140 for (
unsigned int i_det = 0; i_det < m_list_det_id.size(); i_det++) {
141 m_h1_ele[i_det]->Draw();
143 oss <<
"result/" << m_h1_ele[i_det]->GetName() <<
".png";
144 c1->SaveAs(oss.str().c_str());
146 m_h1_nhit[i_det]->Draw();
148 oss <<
"result/" << m_h1_nhit[i_det]->GetName() <<
".png";
149 c1->SaveAs(oss.str().c_str());
151 m_h1_time[i_det]->Draw();
153 oss <<
"result/" << m_h1_time[i_det]->GetName() <<
".png";
154 c1->SaveAs(oss.str().c_str());
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
AnaTriggerHit(const std::string &name="AnaTriggerHit")
int process_event(PHCompositeNode *topNode)
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
int getPlaneNElements(int detectorID) const
std::vector< SQHit * >::const_iterator ConstIter
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).