6 #include <TEfficiency.h>
27 n_evt_all = n_evt_trig = n_evt_nhit = 0;
30 ofs.open(
"output.txt");
31 f_out =
new TFile(
"output.root",
"RECREATE");
33 h1_eff_all =
new TH1D(
"h1_eff_all",
"", 1, 0, 1);
34 h1_eff_ok =
new TH1D(
"h1_eff_ok" ,
"", 1, 0, 1);
36 h1_nhit =
new TH1D(
"h1_nhit",
";N of hits/plane/event;Hit count", 10, -0.5, 9.5);
37 h1_ele =
new TH1D(
"h1_ele",
";Element ID;Hit count", 23, 0.5, 23.5);
39 const double DT = 20/9.0;
41 const double T0 = 0.5*DT;
42 const double T1 = (NT+0.5)*DT;
43 h1_time =
new TH1D(
"h1_time",
";tdcTime;Hit count", NT, T0, T1);
55 SQEvent*
event = findNode::getClass<SQEvent >(topNode,
"SQEvent");
56 SQHitVector* hit_vec = findNode::getClass<SQHitVector>(topNode,
"SQHitVector");
79 if (hv_h1t->size() + hv_h1b->size() != 1 ||
80 hv_h2t->size() + hv_h2b->size() != 1 ||
81 hv_h3t->size() + hv_h3b->size() != 1 ||
82 hv_h4t->size() + hv_h4b->size() != 1
93 int nhit = hv_h2l->size() + hv_h2r->size();
96 h1_ele ->Fill((*it)->get_element_id());
97 h1_time->Fill((*it)->get_tdc_time ());
100 h1_ele ->Fill((*it)->get_element_id());
101 h1_time->Fill((*it)->get_tdc_time ());
104 bool is_eff = nhit > 0;
105 if (is_eff) h1_eff_ok->Fill(0);
115 ofs <<
"N of events:\n"
116 <<
" All = " << n_evt_all <<
"\n"
117 <<
" Trigger OK = " << n_evt_trig <<
"\n"
118 <<
" n_hit OK = " << n_evt_nhit <<
"\n"
121 TCanvas* c1 =
new TCanvas(
"c1",
"");
124 h1_eff_all->SetLineColor(kRed);
125 h1_eff_all->SetLineWidth(2);
126 THStack hs(
"hs",
";;N of hits");
130 c1->SaveAs(
"h1_eff.png");
132 TEfficiency* teff_pl =
new TEfficiency(*h1_eff_ok, *h1_eff_all);
133 teff_pl->SetMarkerStyle(21);
134 teff_pl->SetMarkerColor(kRed);
135 teff_pl->SetLineColor (kRed);
136 teff_pl->Draw(
"APE1");
137 teff_pl->SetTitle(
";Plane;Plane efficiency");
138 c1->SaveAs(
"teff_pl.png");
141 c1->SaveAs(
"h1_nhit.png");
144 c1->SaveAs(
"h1_ele.png");
147 c1->SaveAs(
"h1_time.png");
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
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...