24 if (name ==
"d0" ) m_type = D0 ;
25 else if (name ==
"d1" ) m_type = D1 ;
26 else if (name ==
"d2" ) m_type = D2 ;
27 else if (name ==
"d3p") m_type = D3p;
28 else if (name ==
"d3m") m_type = D3m;
30 cout <<
"ExtractTdcDist: Bad name (" << name <<
"). Abort." << endl;
46 case D0 : m_pl0 = 1; m_trig_mask =
SQEvent::NIM2; t0_lo = 1000; t0_hi = 1400;
break;
47 case D1 : m_pl0 = 7; m_trig_mask =
SQEvent::NIM2; t0_lo = 850; t0_hi = 1250;
break;
48 case D2 : m_pl0 = 13; m_trig_mask =
SQEvent::NIM4; t0_lo = 850; t0_hi = 1250;
break;
49 case D3p: m_pl0 = 19; m_trig_mask =
SQEvent::NIM4; t0_lo = 740; t0_hi = 1140;
break;
50 case D3m: m_pl0 = 25; m_trig_mask =
SQEvent::NIM4; t0_lo = 850; t0_hi = 1250;
break;
53 m_dir_out =
"tdc_dist_" + m_name;
54 gSystem->mkdir(m_dir_out.c_str(),
true);
57 m_ofs.open( (m_dir_out+
"/output.txt").c_str() );
58 m_file =
new TFile( (m_dir_out+
"/output.root").c_str(),
"RECREATE");
63 for (
int i_pl = 0; i_pl <
N_PL; i_pl++) {
64 int det_id = m_pl0 + i_pl;
67 m_list_pl_id .push_back(det_id);
68 m_list_pl_name .push_back(name);
69 m_list_pl_n_ele.push_back(n_ele);
70 cout <<
" " << setw(6) << name <<
" " << det_id <<
" " << n_ele << endl;
73 oss <<
"h1_nhit_" << setw(2) << det_id;
74 m_h1_nhit[i_pl] =
new TH1D(oss.str().c_str(),
"", 50, -0.5, 49.5);
76 oss << name <<
";N of hits/plane/event;Hit count";
77 m_h1_nhit[i_pl]->SetTitle(oss.str().c_str());
80 oss <<
"h1_ele_" << setw(2) << det_id;
81 m_h1_ele[i_pl] =
new TH1D(oss.str().c_str(),
"", n_ele, 0.5, n_ele+0.5);
83 oss << name <<
";Element ID;Hit count";
84 m_h1_ele[i_pl]->SetTitle(oss.str().c_str());
86 const double DT = 20/9.0;
87 int i_t_lo = (int)(t0_lo / DT);
88 int i_t_hi = (int)(t0_hi / DT) + 1;
89 double t_lo = i_t_lo * DT;
90 double t_hi = i_t_hi * DT;
91 int t_n = i_t_hi - i_t_lo;
93 oss <<
"h1_time_" << setw(2) << det_id;
94 m_h1_time[i_pl] =
new TH1D(oss.str().c_str(),
"", t_n, t_lo, t_hi);
96 oss << name <<
";tdcTime;Hit count";
97 m_h1_time[i_pl]->SetTitle(oss.str().c_str());
103 oss <<
"h1_time_wide_" << setw(2) << det_id;
104 m_h1_time_wide[i_pl] =
new TH1D(oss.str().c_str(),
"", t_n, t_lo, t_hi);
106 oss << name <<
";tdcTime;Hit count";
107 m_h1_time_wide[i_pl]->SetTitle(oss.str().c_str());
120 SQEvent*
event = findNode::getClass<SQEvent >(topNode,
"SQEvent");
121 SQHitVector* hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
128 bool good_event =
true;
130 shared_ptr<SQHitVector> list_hv[
N_PL];
131 for (
int i_pl = 0; i_pl <
N_PL; i_pl++) {
134 int n_hit = list_hv[i_pl]->size();
135 m_h1_nhit[i_pl]->Fill(n_hit);
149 for (
int i_pl = 0; i_pl <
N_PL; i_pl++) {
150 for (
auto it = list_hv[i_pl]->begin(); it != list_hv[i_pl]->end(); it++) {
151 int ele = (*it)->get_element_id();
152 double time = (*it)->get_tdc_time ();
153 m_h1_ele [i_pl]->Fill(ele );
154 m_h1_time [i_pl]->Fill(time);
155 m_h1_time_wide[i_pl]->Fill(time);
166 m_ofs <<
"N of events:\n"
167 <<
" All = " << m_n_evt_all <<
"\n"
168 <<
" Trigger OK = " << m_n_evt_trig <<
"\n"
169 <<
" Analyzed = " << m_n_evt_ana <<
"\n"
172 TCanvas* c1 =
new TCanvas(
"c1",
"");
174 for (
int i_pl = 0; i_pl <
N_PL; i_pl++) {
175 m_h1_nhit[i_pl]->Draw();
177 oss << m_dir_out <<
"/" << m_h1_nhit[i_pl]->GetName() <<
".png";
178 c1->SaveAs(oss.str().c_str());
180 m_h1_ele[i_pl]->Draw();
182 oss << m_dir_out <<
"/" << m_h1_ele[i_pl]->GetName() <<
".png";
183 c1->SaveAs(oss.str().c_str());
185 m_h1_time[i_pl]->Draw();
187 oss << m_dir_out <<
"/" << m_h1_time[i_pl]->GetName() <<
".png";
188 c1->SaveAs(oss.str().c_str());
190 m_h1_time_wide[i_pl]->Draw();
192 oss << m_dir_out <<
"/" << m_h1_time_wide[i_pl]->GetName() <<
".png";
193 c1->SaveAs(oss.str().c_str());
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
An SQ interface class to hold one event header.
An SQ interface class to hold a list of SQHit objects.
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).