20 const vector<string> AnaHodoHit::m_list_det_name = {
"H1T",
"H1B",
"H2T",
"H2B" };
40 m_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
41 m_hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQTriggerHitVector");
47 gSystem->mkdir(
"result",
true);
49 m_file =
new TFile(
"result/output.root",
"RECREATE");
50 m_tree =
new TTree(
"tree",
"Created by AnaHodoHit");
51 m_tree->Branch(
"det_name", &b_det_name,
"det_name/C");
52 m_tree->Branch(
"det" , &b_det ,
"det/I");
53 m_tree->Branch(
"ele" , &b_ele ,
"ele/I");
54 m_tree->Branch(
"time" , &b_time ,
"time/D");
58 for (
unsigned int i_det = 0; i_det < m_list_det_name.size(); i_det++) {
59 string name = m_list_det_name[i_det];
62 cerr <<
"!ERROR! AnaHodoHit::InitRun(): Invalid ID (" <<
id <<
"). Probably the detector name that you specified in 'list_det_name' (" << name <<
") is not valid. Abort." << endl;
65 m_list_det_id.push_back(
id);
67 cout <<
" " << setw(6) << name <<
" = " <<
id << endl;
70 oss <<
"h1_ele_" << name;
71 m_h1_ele[i_det] =
new TH1D(oss.str().c_str(),
"", n_ele, 0.5, n_ele+0.5);
73 oss << name <<
";Element ID;Hit count";
74 m_h1_ele[i_det]->SetTitle(oss.str().c_str());
77 oss <<
"h1_nhit_" << name;
78 m_h1_nhit[i_det] =
new TH1D(oss.str().c_str(),
"", 10, -0.5, 9.5);
80 oss << name <<
";N of hits/plane/event;Hit count";
81 m_h1_nhit[i_det]->SetTitle(oss.str().c_str());
100 static int did_h3t = 0;
101 static int did_h3b = 0;
106 cout <<
"H3T = " << did_h3t <<
", H3B = " << did_h3b << endl;
115 for (
unsigned int i_det = 0; i_det < m_list_det_name.size(); i_det++) {
116 strncpy(b_det_name, m_list_det_name[i_det].c_str(),
sizeof(b_det_name));
117 b_det = m_list_det_id[i_det];
120 b_ele = (*it)->get_element_id();
121 b_time = (*it)->get_tdc_time ();
124 m_h1_ele[i_det]->Fill(b_ele);
126 m_h1_nhit[i_det]->Fill(hv->size());
135 TCanvas* c1 =
new TCanvas(
"c1",
"");
137 for (
unsigned int i_det = 0; i_det < m_list_det_id.size(); i_det++) {
138 m_h1_ele[i_det]->Draw();
140 oss <<
"result/" << m_h1_ele[i_det]->GetName() <<
".png";
141 c1->SaveAs(oss.str().c_str());
143 m_h1_nhit[i_det]->Draw();
145 oss <<
"result/" << m_h1_nhit[i_det]->GetName() <<
".png";
146 c1->SaveAs(oss.str().c_str());
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
AnaHodoHit(const std::string &name="AnaHodoHit")
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
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
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
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).