Class Reference for E1039 Core & Analysis Software
AnaEffCham.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TFile.h>
3 #include <TTree.h>
4 #include <TH1D.h>
5 #include <THStack.h>
6 #include <TEfficiency.h>
7 #include <TCanvas.h>
8 #include <interface_main/SQRun.h>
12 #include <phool/PHNodeIterator.h>
13 #include <phool/PHIODataNode.h>
14 #include <phool/getClass.h>
15 #include <geom_svc/GeomSvc.h>
16 #include <UtilAna/UtilSQHit.h>
17 #include "AnaEffCham.h"
18 using namespace std;
19 
20 AnaEffCham::AnaEffCham(const ChamType_t type) : m_type(type)
21 {
22  switch (m_type) {
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;
28  }
29 }
30 
32 {
33  n_evt_all = n_evt_trig = n_evt_nhit = 0;
34 
35  ostringstream oss;
36  GeomSvc* geom = GeomSvc::instance();
37  ofs.open("output.txt");
38  f_out = new TFile("output.root", "RECREATE");
39 
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);
42 
43  for (int i_pl = 0; i_pl < N_PL; i_pl++) {
44  int det_id = m_pl0 + i_pl;
45  string name = geom->getDetectorName(det_id);
46  int n_ele = geom->getPlaneNElements(det_id);
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;
51 
52  h1_eff_all->GetXaxis()->SetBinLabel(i_pl+1, name.c_str());
53  h1_eff_ok ->GetXaxis()->SetBinLabel(i_pl+1, name.c_str());
54 
55  oss.str("");
56  oss << "h1_nhit_" << det_id << "_" << name;
57  h1_nhit[i_pl] = new TH1D(oss.str().c_str(), "", 10, -0.5, 9.5);
58  oss.str("");
59  oss << name << ";N of hits/plane/event;Hit count";
60  h1_nhit[i_pl]->SetTitle(oss.str().c_str());
61 
62  oss.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);
65  oss.str("");
66  oss << name << ";Element ID;Hit count";
67  h1_ele[i_pl]->SetTitle(oss.str().c_str());
68 
69  const double DT = 20/9.0; // 4/9 ns per single count of Taiwan TDC
70  const int NT = 1000;
71  const double T0 = 0.5*DT;
72  const double T1 = (NT+0.5)*DT;
73  oss.str("");
74  oss << "h1_time_" << det_id << "_" << name;
75  h1_time[i_pl] = new TH1D(oss.str().c_str(), "", NT, T0, T1);
76  oss.str("");
77  oss << name << ";tdcTime;Hit count";
78  h1_time[i_pl]->SetTitle(oss.str().c_str());
79  }
80 
82 }
83 
85 {
87 }
88 
90 {
91  SQEvent* event = findNode::getClass<SQEvent >(topNode, "SQEvent");
92  SQHitVector* hit_vec = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
93  if (!event || !hit_vec) return Fun4AllReturnCodes::ABORTEVENT;
94  //int run_id = event->get_run_id();
95  //int spill_id = event->get_spill_id();
96  //int event_id = event->get_event_id();
97  n_evt_all++;
98 
102  if (! event->get_trigger(SQEvent::NIM1)) { // depends on the setting of run(s) you analyze
104  }
105  n_evt_trig++;
106 
107  //shared_ptr<SQHitVector> hv_h1(UtilSQHit::FindFirstHits(hit_vec, "H1T"));
108  //shared_ptr<SQHitVector> hv_h2(UtilSQHit::FindFirstHits(hit_vec, "H2T"));
109  shared_ptr<SQHitVector> hv_h3(UtilSQHit::FindFirstHits(hit_vec, "H3T"));
110  shared_ptr<SQHitVector> hv_h4(UtilSQHit::FindFirstHits(hit_vec, "H4T"));
111  if (//hv_h1->size() != 1 ||
112  //hv_h2->size() != 1 ||
113  hv_h3->size() != 1 ||
114  hv_h4->size() != 1 ) return Fun4AllReturnCodes::EVENT_OK;
115  n_evt_nhit++;
116 
120  for (int i_pl = 0; i_pl < N_PL; i_pl++) {
121  shared_ptr<SQHitVector> hv(UtilSQHit::FindHits(hit_vec, list_pl_id[i_pl]));
122 
123  bool is_eff = hv->size() > 0; // very simple judgment for now
124  if (is_eff) h1_eff_ok->Fill(i_pl);
125  h1_eff_all->Fill(i_pl);
126 
127  h1_nhit[i_pl]->Fill(hv->size());
128  for (SQHitVector::ConstIter it = hv->begin(); it != hv->end(); it++) {
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);
133  }
134  }
135 
137 }
138 
140 {
141  ostringstream oss;
142 
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"
147  << endl;
148 
149  TCanvas* c1 = new TCanvas("c1", "");
150  c1->SetGrid();
151 
152  h1_eff_all->SetLineColor(kRed);
153  h1_eff_all->SetLineWidth(2);
154  THStack hs("hs", ";;N of hits");
155  hs.Add(h1_eff_all);
156  hs.Add(h1_eff_ok );
157  hs.Draw("nostack");
158  c1->SaveAs("h1_eff.png");
159 
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");
167 
168  for (int i_pl = 0; i_pl < N_PL; i_pl++) {
169  h1_nhit[i_pl]->Draw();
170  oss.str("");
171  oss << h1_nhit[i_pl]->GetName() << ".png";
172  c1->SaveAs(oss.str().c_str());
173 
174  h1_ele[i_pl]->Draw();
175  oss.str("");
176  oss << h1_ele[i_pl]->GetName() << ".png";
177  c1->SaveAs(oss.str().c_str());
178 
179  h1_time[i_pl]->Draw();
180  oss.str("");
181  oss << h1_time[i_pl]->GetName() << ".png";
182  c1->SaveAs(oss.str().c_str());
183  }
184  delete c1;
185 
186  f_out->cd();
187  f_out->Write();
188  f_out->Close();
189  ofs.close();
190 
192 }
int Init(PHCompositeNode *topNode)
Definition: AnaEffCham.cc:31
int process_event(PHCompositeNode *topNode)
Definition: AnaEffCham.cc:89
AnaEffCham(const ChamType_t type)
Definition: AnaEffCham.cc:20
int InitRun(PHCompositeNode *topNode)
Definition: AnaEffCham.cc:84
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaEffCham.cc:139
static const int N_PL
Definition: AnaEffCham.h:11
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
int getPlaneNElements(int detectorID) const
Definition: GeomSvc.h:260
std::string getDetectorName(const int &detectorID) const
Definition: GeomSvc.h:223
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
@ NIM1
Definition: SQEvent.h:22
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
std::vector< SQHit * >::const_iterator ConstIter
Definition: SQHitVector.h:37
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...
Definition: UtilSQHit.cc:40
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).
Definition: UtilSQHit.cc:16