25 , m_file_name (
"output.root")
44 m_sq_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
45 m_sq_hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
48 m_file =
new TFile(m_file_name.c_str(),
"RECREATE");
49 m_tree =
new TTree(
"tree",
"Created by AnaChamHit");
50 m_tree->Branch(
"event" , &m_evt);
51 m_tree->Branch(
"hit_list", &m_hit_list);
67 m_evt.
D1 = m_evt.
D2 = m_evt.
D3p = m_evt.
D3m = 0;
76 if ( 0 < det_id && det_id <= 6) m_evt.
D1++;
77 else if (12 < det_id && det_id <= 18) m_evt.
D2++;
78 else if (18 < det_id && det_id <= 24) m_evt.
D3p++;
79 else if (24 < det_id && det_id <= 30) m_evt.
D3m++;
86 m_hit_list.push_back(hd);
103 cout <<
"N of trees = " << tree->GetNtrees() << endl;
110 for (
int pl = 1; pl <= 30; pl++) {
111 if (6 < pl && pl <= 12)
continue;
116 oss <<
"h1_ele_" << pl;
117 h1_ele[pl] =
new TH1D(oss.str().c_str(),
"", n_ele, 0.5, n_ele+0.5);
119 oss << setw(2) << pl <<
":" << name <<
";Element ID;Hit count";
120 h1_ele[pl]->SetTitle(oss.str().c_str());
122 const double DT = 12/9.0;
124 oss <<
"h1_time_" << pl;
125 h1_time[pl] =
new TH1D(oss.str().c_str(),
"", 1000, 400.5*DT, 1400.5*DT);
127 oss << setw(2) << pl <<
":" << name <<
";tdcTime (ns);Hit count";
128 h1_time[pl]->SetTitle(oss.str().c_str());
131 oss <<
"h1_dist_" << pl;
132 h1_dist[pl] =
new TH1D(oss.str().c_str(),
"", 110, 0.0, 0.55*space);
134 oss << setw(2) << pl <<
":" << name <<
";Drift distance (cm);Hit count";
135 h1_dist[pl]->SetTitle(oss.str().c_str());
140 tree->SetBranchAddress(
"event" , &evt);
141 tree->SetBranchAddress(
"hit_list", &hit_list);
143 int n_ent = tree->GetEntries();
144 cout <<
"N of entries = " << n_ent << endl;
145 for (
int i_ent = 0; i_ent < n_ent; i_ent++) {
146 if ((i_ent+1) % (n_ent/10) == 0) cout <<
" " << 10*(i_ent+1)/(n_ent/10) <<
"%" << flush;
147 tree->GetEntry(i_ent);
148 for (
auto it = hit_list->begin(); it != hit_list->end(); it++) {
150 short det_id = hd->
det_id;
151 if (6 < det_id && det_id <= 12)
continue;
152 short ele_id = hd->
ele_id;
155 h1_ele [det_id]->Fill(ele_id);
156 h1_time[det_id]->Fill(time);
157 h1_dist[det_id]->Fill(dist);
161 gSystem->mkdir(
"result",
true);
162 TCanvas* c1 =
new TCanvas(
"c1",
"");
167 for (
int pl = 1; pl <= 30; pl++) {
168 if (6 < pl && pl <= 12)
continue;
171 oss <<
"result/h1_ele_" << setw(2) << pl <<
".png";
172 c1->SaveAs(oss.str().c_str());
177 oss <<
"result/h1_time_" << setw(2) << pl <<
".png";
178 c1->SaveAs(oss.str().c_str());
182 oss <<
"result/h1_dist_" << setw(2) << pl <<
".png";
183 c1->SaveAs(oss.str().c_str());
std::vector< HitData > HitList
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
AnaChamHit(const std::string &name="AnaChamHit")
static void AnalyzeTree(TChain *tree)
User interface class about the geometry of detector planes.
static GeomSvc * instance()
singlton instance
int getPlaneNElements(int detectorID) const
std::string getDetectorName(const int &detectorID) const
bool isChamber(const int detectorID) const
Return "true" for chamber planes.
double getPlaneSpacing(int detectorID) const
virtual int get_run_id() const =0
Return the run ID.
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
virtual int get_spill_id() const =0
Return the spill ID.
virtual int get_event_id() const =0
Return the event ID, which is unique per run.
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
std::vector< SQHit * >::iterator Iter
An SQ interface class to hold one detector hit.
virtual float get_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
virtual short get_element_id() const
Return the element ID of this hit.
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
virtual short get_detector_id() const
Return the detector ID of this hit.
void AutoSetRange(TH1 *h1, const int margin_lo=5, const int margin_hi=5)
Adjust the axis range via "h1->GetXaxis()->SetRange(bin_lo, bin_hi)" to zoom up non-empty bins.