6 #include <TEfficiency.h>
23 case D0 : m_pl0 = 1;
break;
24 case D1 : m_pl0 = 7;
break;
25 case D2 : m_pl0 = 13;
break;
26 case D3p: m_pl0 = 19;
break;
27 case D3m: m_pl0 = 25;
break;
33 n_evt_all = n_evt_trig = n_evt_nhit = 0;
37 ofs.open(
"output.txt");
38 f_out =
new TFile(
"output.root",
"RECREATE");
40 h1_eff_all =
new TH1D(
"h1_eff_all",
"",
N_PL, 0,
N_PL);
41 h1_eff_ok =
new TH1D(
"h1_eff_ok" ,
"",
N_PL, 0,
N_PL);
43 for (
int i_pl = 0; i_pl <
N_PL; i_pl++) {
44 int det_id = m_pl0 + i_pl;
47 list_pl_id .push_back(det_id);
48 list_pl_name .push_back(name);
49 list_pl_n_ele.push_back(n_ele);
50 cout <<
" " << setw(6) << name <<
" " << det_id <<
" " << n_ele << endl;
52 h1_eff_all->GetXaxis()->SetBinLabel(i_pl+1, name.c_str());
53 h1_eff_ok ->GetXaxis()->SetBinLabel(i_pl+1, name.c_str());
56 oss <<
"h1_nhit_" << det_id <<
"_" << name;
57 h1_nhit[i_pl] =
new TH1D(oss.str().c_str(),
"", 10, -0.5, 9.5);
59 oss << name <<
";N of hits/plane/event;Hit count";
60 h1_nhit[i_pl]->SetTitle(oss.str().c_str());
63 oss <<
"h1_ele_" << det_id <<
"_" << name;
64 h1_ele[i_pl] =
new TH1D(oss.str().c_str(),
"", n_ele, 0.5, n_ele+0.5);
66 oss << name <<
";Element ID;Hit count";
67 h1_ele[i_pl]->SetTitle(oss.str().c_str());
69 const double DT = 20/9.0;
71 const double T0 = 0.5*DT;
72 const double T1 = (NT+0.5)*DT;
74 oss <<
"h1_time_" << det_id <<
"_" << name;
75 h1_time[i_pl] =
new TH1D(oss.str().c_str(),
"", NT, T0, T1);
77 oss << name <<
";tdcTime;Hit count";
78 h1_time[i_pl]->SetTitle(oss.str().c_str());
91 SQEvent*
event = findNode::getClass<SQEvent >(topNode,
"SQEvent");
92 SQHitVector* hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
113 hv_h3->size() != 1 ||
120 for (
int i_pl = 0; i_pl <
N_PL; i_pl++) {
123 bool is_eff = hv->size() > 0;
124 if (is_eff) h1_eff_ok->Fill(i_pl);
125 h1_eff_all->Fill(i_pl);
127 h1_nhit[i_pl]->Fill(hv->size());
129 int ele = (*it)->get_element_id();
130 double time = (*it)->get_tdc_time ();
131 h1_ele [i_pl]->Fill(ele );
132 h1_time[i_pl]->Fill(time);
143 ofs <<
"N of events:\n"
144 <<
" All = " << n_evt_all <<
"\n"
145 <<
" Trigger OK = " << n_evt_trig <<
"\n"
146 <<
" n_hit OK = " << n_evt_nhit <<
"\n"
149 TCanvas* c1 =
new TCanvas(
"c1",
"");
152 h1_eff_all->SetLineColor(kRed);
153 h1_eff_all->SetLineWidth(2);
154 THStack hs(
"hs",
";;N of hits");
158 c1->SaveAs(
"h1_eff.png");
160 TEfficiency* teff_pl =
new TEfficiency(*h1_eff_ok, *h1_eff_all);
161 teff_pl->SetMarkerStyle(21);
162 teff_pl->SetMarkerColor(kRed);
163 teff_pl->SetLineColor (kRed);
164 teff_pl->Draw(
"APE1");
165 teff_pl->SetTitle(
";Plane;Plane efficiency");
166 c1->SaveAs(
"teff_pl.png");
168 for (
int i_pl = 0; i_pl <
N_PL; i_pl++) {
169 h1_nhit[i_pl]->Draw();
171 oss << h1_nhit[i_pl]->GetName() <<
".png";
172 c1->SaveAs(oss.str().c_str());
174 h1_ele[i_pl]->Draw();
176 oss << h1_ele[i_pl]->GetName() <<
".png";
177 c1->SaveAs(oss.str().c_str());
179 h1_time[i_pl]->Draw();
181 oss << h1_time[i_pl]->GetName() <<
".png";
182 c1->SaveAs(oss.str().c_str());
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
AnaEffCham(const ChamType_t type)
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
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.
std::vector< SQHit * >::const_iterator ConstIter
SQHitVector * FindFirstHits(const SQHitVector *vec_in, const std::string det_name, const bool in_time=false)
Extract a set of first hits that are of the given detector (det_name), where "first" means the earlie...
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).