Class Reference for E1039 Core & Analysis Software
SRMakeRTCurve.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TFile.h>
3 #include <TTree.h>
4 #include <TH2D.h>
5 #include <THStack.h>
6 #include <TCanvas.h>
7 #include <TSystem.h>
8 #include <TStyle.h>
9 #include <TGraph.h>
10 #include <TLegend.h>
11 #include <interface_main/SQRun.h>
12 #include <interface_main/SQEvent.h>
14 #include <ktracker/FastTracklet.h>
16 #include <phool/PHNodeIterator.h>
17 #include <phool/PHIODataNode.h>
18 #include <phool/getClass.h>
19 #include <geom_svc/GeomSvc.h>
20 #include <UtilAna/UtilSQHit.h>
21 #include "RTCurve.h"
22 #include "CalibParam.h"
23 #include "CalibData.h"
24 #include "FitRTDist.h"
25 #include "SRMakeRTCurve.h"
26 using namespace std;
27 
28 SRMakeRTCurve::SRMakeRTCurve(const int iter, const std::string& name)
29  : SubsysReco(name)
30  , m_iter(iter)
31  , m_dir_name_out("")
32  , m_n_evt_all (0)
33  , m_n_evt_ana (0)
34  , m_n_trk_all (0)
35  , m_n_trk_ana (0)
36  , m_evt (0)
37  , m_hit_vec (0)
38  , m_trklet_vec(0)
39 {
40  ;
41 }
42 
44 {
46 }
47 
49 {
50  m_evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
51  //m_hit_vec = findNode::getClass<SQHitVector >(topNode, "SQHitVector");
52  m_trklet_vec = findNode::getClass<TrackletVector>(topNode, "TrackletVector");
53  //if (!m_evt || !m_hit_vec || !m_trklet_vec) return Fun4AllReturnCodes::ABORTEVENT;
54  if (!m_evt || !m_trklet_vec) return Fun4AllReturnCodes::ABORTEVENT;
55 
56  ostringstream oss;
57  oss << "calib/" << m_iter;
58  m_dir_name_out = oss.str();
59  gSystem->mkdir(m_dir_name_out.c_str(), kTRUE);
60 
61  cal_par.SetAnaPlanes(true, false, true, true, true); // (d0, d1, d2, d3p, d3m)
62  cal_par.Init(N_RT_PT);
63 
64  oss.str("");
65  oss << "calib/" << (m_iter-1) << "/param.tsv";
66  cal_par.ReadRTParam(oss.str());
67 
68  //const char* env_str = gSystem->Getenv("FIX_TIME_WINDOW");
69  //if (! env_str) {
70  // cout << "!!ERROR!! FIX_TIME_WINDOW is not defined. Abort." << endl;
71  // exit(1);
72  //}
73  //if (strcmp(env_str, "true" ) == 0) cal_par.ReadTimeWindow("calib/time_window.txt");
74 
75  cal_dat.Init(&cal_par);
76 
78 }
79 
81 {
82  //int run_id = m_evt->get_run_id();
83  //int spill_id = m_evt->get_spill_id();
84  //int event_id = m_evt->get_event_id();
85  m_n_evt_all++;
86 
87  //bool nim1 = m_evt->get_trigger(SQEvent::NIM1); // H1 && H2 && H3 && H4
88  bool nim2 = m_evt->get_trigger(SQEvent::NIM2); // H1 && H2
89  bool nim4 = m_evt->get_trigger(SQEvent::NIM4); // H2 && H4
90  if (! nim2 && ! nim4) return Fun4AllReturnCodes::EVENT_OK;
91  m_n_evt_ana++;
92 
93  int n_trk = m_trklet_vec->size();
94  m_n_trk_all += n_trk;
95 
96  map<int, int> list_n_trk; // <station ID, N of tracks>
97  for (int i_trk = 0; i_trk < n_trk; i_trk++) {
98  Tracklet* trk = m_trklet_vec->at(i_trk);
99  //cal_dat.FillTracklet(trk); // Call here to fill all tracklets (or call later)
100  list_n_trk[trk->stationID]++;
101  }
102  int rec_st = 0; // rec->getRecStatus()
103  cal_dat.FillEventInfo(rec_st, list_n_trk);
104 
105  if (nim2) {
106  m_n_trk_ana += AnaForOneStation(m_trklet_vec, ST_ID_D0 , list_n_trk[ST_ID_D0 ]);
107  } else if (nim4) {
108  m_n_trk_ana += AnaForOneStation(m_trklet_vec, ST_ID_D2 , list_n_trk[ST_ID_D2 ]);
109  m_n_trk_ana += AnaForOneStation(m_trklet_vec, ST_ID_D3P, list_n_trk[ST_ID_D3P]);
110  m_n_trk_ana += AnaForOneStation(m_trklet_vec, ST_ID_D3M, list_n_trk[ST_ID_D3M]);
111  }
112 
114 }
115 
116 int SRMakeRTCurve::AnaForOneStation(TrackletVector* trklet_vec, const int st_id, const int n_trklet)
117 {
118  if (n_trklet > 128) return 0;
119 
120  int i_trk_best = FindBestTracklet(m_trklet_vec, st_id);
121  if (i_trk_best < 0) return 0;
122 
123  Tracklet* trk = trklet_vec->at(i_trk_best);
124  cal_dat.FillTracklet(trk); // Call here to fill only good tracklets (or call earlier)
125  cal_dat.FillTrackletHits(trk);
126  return 1;
127 }
128 
129 void SRMakeRTCurve::GetGoodTrackletRange(const int st_id, double& x_lo, double& x_hi, double& y_lo, double& y_hi, double& tx_lo, double& tx_hi, double& ty_lo, double& ty_hi)
130 {
131  switch (st_id) {
132  case ST_ID_D0 : x_lo= -45; x_hi= 45; y_lo= -55; y_hi= 55; tx_lo=-0.20; tx_hi=0.20; ty_lo=-0.25; ty_hi=0.25; break;
133  case ST_ID_D2 : x_lo= -90; x_hi= 90; y_lo=-120; y_hi=120; tx_lo=-0.25; tx_hi=0.25; ty_lo=-0.35; ty_hi=0.35; break;
134  case ST_ID_D3P: x_lo=-120; x_hi=120; y_lo= 0; y_hi=150; tx_lo=-0.25; tx_hi=0.25; ty_lo=-0.35; ty_hi=0.35; break;
135  case ST_ID_D3M: x_lo=-120; x_hi=120; y_lo=-150; y_hi= 0; tx_lo=-0.25; tx_hi=0.25; ty_lo=-0.35; ty_hi=0.35; break;
136  }
137 }
138 
143 {
144  int st_id = trk->stationID;
145  double z_st = CalibParam::ZOfStationID(st_id);
146  double tx = trk->tx;
147  double ty = trk->ty;
148  double x = trk->x0 + z_st * tx;
149  double y = trk->y0 + z_st * ty;
150 
151  double x_lo, x_hi, y_lo, y_hi;
152  double tx_lo, tx_hi, ty_lo, ty_hi;
153  GetGoodTrackletRange(st_id, x_lo, x_hi, y_lo, y_hi, tx_lo, tx_hi, ty_lo, ty_hi);
154 
155  return x_lo < x && x < x_hi && y_lo < y && y < y_hi &&
156  tx_lo < tx && tx < tx_hi && ty_lo < ty && ty < ty_hi ;
157 }
158 
159 int SRMakeRTCurve::FindBestTracklet(TrackletVector* trklet_vec, const int st_id_tgt)
160 {
161  int i_trk_best = -1;
162  double rchi2_best = 0;
163  for (int i_trk = 0; i_trk < m_trklet_vec->size(); i_trk++) {
164  Tracklet* trk = trklet_vec->at(i_trk);
165  int st_id = trk->stationID;
166  if (st_id != st_id_tgt) continue;
167 
168  int n_hit = trk->getNHits();
169  int ndf = n_hit - 4; // Correct only when KMag is off
170  double rchi2 = trk->chisq / ndf;
171  //if (n_hit != 6) continue;
172  if (n_hit < 5) continue;
173  if (rchi2 > 3.0) continue;
174  if (! InAcceptance(trk)) continue;
175  if (i_trk_best < 0 || rchi2 < rchi2_best) {
176  i_trk_best = i_trk;
177  rchi2_best = rchi2;
178  }
179  }
180  return i_trk_best;
181 }
182 
184 {
185  DrawHistEvent();
186  DrawHistHit();
187  ExtractRT();
188  WriteRT();
189  DrawCalibResult();
190 
192 }
193 
195 {
196  cal_dat.DrawHistEvent(m_dir_name_out);
197  string fname = m_dir_name_out + "/info_event.txt";
198  ofstream ofs(fname.c_str());
199  ofs << m_n_evt_all << "\n"
200  << m_n_evt_ana << "\n"
201  << m_n_trk_all << "\n"
202  << m_n_trk_ana << "\n";
203  ofs.close();
204 }
205 
207 {
208  cal_dat.DrawHistHit(m_dir_name_out);
209 }
210 
212 {
213  cout << "ExtractRT()" << endl;
214  FitRTDist* fit = new FitRTDist();
215  fit->Verbosity(Verbosity());
216  for (int ip = 0; ip < cal_par.GetNumPlanes(); ip++) {
217  if (! cal_par.GetAnaPlane(ip)) continue;
218 
219  cout << " Plane " << ip+1 << endl;
220  if (cal_par.TimeWindowIsFixed()) {
221  double t1 = cal_par.GetT1(ip);
222  double t0 = cal_par.GetT0(ip);
223  fit->FixT1T0(t1, t0);
224  }
225  TH2* h2_rt = cal_dat.GetHistRT (ip);
226  double r_max = cal_par.GetRMax (ip);
227  TGraph* gr_t2r = cal_par.GetGraphT2R(ip);
228  fit->DoFit(N_RT_PT, h2_rt, r_max, gr_t2r, cal_par.GetRTCurve(ip));
229  }
230  delete fit;
231 }
232 
234 {
235  cal_par.WriteRTParam(m_dir_name_out, "param.tsv");
236  cal_par.WriteRTGraph(m_dir_name_out, "rt_graph.root");
237 }
238 
240 {
241  GeomSvc* geom = GeomSvc::instance();
242  cout << "DrawCalibResult()" << endl;
243  TCanvas* c1 = new TCanvas("c1", "", 800, 600);
244  c1->SetGrid();
245  gStyle->SetOptStat(0);
246  TLegend* leg = new TLegend(0.7, 0.7, 0.9, 0.9);
247  leg->SetTextFont(22);
248  leg->SetBorderSize(1);
249  leg->SetFillColor(0);
250 
251  ostringstream oss;
252  oss << setfill('0');
253  for(int ip = 0; ip < cal_par.GetNumPlanes(); ip++) {
254  if (! cal_par.GetAnaPlane(ip)) continue;
255 
256  leg->Clear();
257 
258  cal_dat.GetHistRT(ip)->Draw("colz");
259 
260  TGraph* gr_t2r_in = cal_par.GetGraphT2R(ip);
261  TSpline3* spl_t2r = cal_par.GetRTCurve(ip)->GetT2RSpline();
262  TGraph* gr_t2dr = cal_par.GetRTCurve(ip)->GetT2DRGraph();
263 
264  spl_t2r->SetMarkerStyle(10);
265  spl_t2r->SetLineWidth(2);
266  spl_t2r->Draw("sameCP"); // LPE1
267 
268  gr_t2dr->SetMarkerColor(kGreen);
269  gr_t2dr->SetMarkerStyle(10);
270  gr_t2dr->SetLineWidth(2);
271  gr_t2dr->Draw("sameP");
272 
273  gr_t2r_in->SetLineStyle(2);
274  gr_t2r_in->SetLineWidth(2);
275  gr_t2r_in->Draw("sameC"); // LP
276 
277  leg->AddEntry(spl_t2r , "Output", "l");
278  leg->AddEntry(gr_t2r_in, "Input" , "l");
279  leg->Draw();
280 
281  oss.str("");
282  oss << m_dir_name_out << "/rt_result_" << setw(2) << (ip+1) << "_" << geom->getDetectorName(ip+1) << ".png";
283 
284  c1->SaveAs(oss.str().c_str());
285  }
286  delete leg;
287 
288  int n_pl = cal_par.GetNumPlanes();
289  TH1* h1_res = new TH1D("h1_res", ";;Resolution (cm)", n_pl, 0, n_pl);
290  for (int ip = 0; ip < n_pl; ip++) {
291  if (! cal_par.GetAnaPlane(ip)) continue;
292  string det_name = geom->getDetectorName(ip+1);
293  h1_res->SetBinContent(ip+1, cal_par.GetRTCurve(ip)->GetRWidth());
294  h1_res->GetXaxis()->SetBinLabel(ip+1, det_name.c_str());
295  }
296  h1_res->GetYaxis()->SetRangeUser(0, 0.08);
297  h1_res->SetMarkerColor(kRed);
298  h1_res->SetMarkerStyle(10);
299  h1_res->GetXaxis()->LabelsOption("v");
300  h1_res->Draw("P");
301  oss.str("");
302  oss << m_dir_name_out << "/h1_res.png";
303  c1->SaveAs(oss.str().c_str());
304  delete c1;
305 
306  //const char* NAME_GROUP[4] = {"D1", "D2", "D3p", "D3m"};
307  //const double RES_MAX[4] = {0.1, 0.1, 0.1, 0.1};
308  //for (int ig = 0; ig < 4; ig++) {
309  // TH1* fr = c1->DrawFrame(TMIN[ig*6], 0, TMAX[ig*6], RES_MAX[ig], "Resolution vs TDC ;TDC time (ns);Resolution (cm)");
310  // for (int ip = 0; ip < 6; ip++) {
311  // gr_t2dr[ ig*6 +ip ]->SetLineColor (ip+1);
312  // gr_t2dr[ ig*6 +ip ]->SetMarkerColor(ip+1);
313  // gr_t2dr[ ig*6 +ip ]->Draw("sameCP"); // LPE1
314  //
315  // oss.str(""); oss << geom->getDetectorName( ig*6 + ip + 1);
316  // }
317  // c1->SetGrid();
318  // oss.str(""); oss << m_dir_name_out << "/res_" << NAME_GROUP[ig] <<".png";
319  // c1->SaveAs(oss.str().c_str());
320  //}
321 }
void FillTracklet(const Tracklet *trk)
Definition: CalibData.cc:123
void FillTrackletHits(const Tracklet *trk)
Definition: CalibData.cc:146
void DrawHistHit(const std::string dir_out)
Definition: CalibData.cc:213
void DrawHistEvent(const std::string dir_out)
Definition: CalibData.cc:179
void FillEventInfo(const int rec_stat, const std::map< int, int > list_n_trk)
Definition: CalibData.cc:113
TH2 * GetHistRT(const int ipl) const
Definition: CalibData.h:49
void Init(CalibParam *ptr)
Definition: CalibData.cc:28
bool GetAnaPlane(const int i_pl)
Definition: CalibParam.h:31
void Init(const int n_rt_pt)
Definition: CalibParam.cc:35
double GetRMax(const int i_pl) const
Definition: CalibParam.h:38
void WriteRTParam(const std::string dir_name, const std::string fname)
Definition: CalibParam.cc:120
double GetT0(const int i_pl) const
Definition: CalibParam.h:39
void WriteRTGraph(const std::string dir_name, const std::string fname)
Definition: CalibParam.cc:172
TGraph * GetGraphT2R(const int i_pl) const
Definition: CalibParam.h:42
double GetT1(const int i_pl) const
Definition: CalibParam.h:40
int GetNumPlanes() const
Definition: CalibParam.h:28
void ReadRTParam(const std::string fname)
Definition: CalibParam.cc:82
static double ZOfStationID(const int st_id)
Definition: CalibParam.cc:224
RTCurve * GetRTCurve(const int i_pl) const
Definition: CalibParam.h:34
void SetAnaPlanes(const bool d0, const bool d1, const bool d2, const bool d3p, const bool d3m)
Definition: CalibParam.cc:26
bool TimeWindowIsFixed() const
Definition: CalibParam.h:33
Class for fitting R-T histogram.
Definition: FitRTDist.h:9
void Verbosity(const int verb)
Definition: FitRTDist.h:34
int DoFit(const int n_pt, TH2 *h2, double r_max, TGraph *gr_init, RTCurve *rtc)
Definition: FitRTDist.cc:88
void FixT1T0(const double t1, const double t0)
Definition: FitRTDist.cc:81
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
std::string getDetectorName(const int &detectorID) const
Definition: GeomSvc.h:223
double GetRWidth() const
Definition: RTCurve.cc:48
TSpline3 * GetT2RSpline()
Definition: RTCurve.cc:63
TGraph * GetT2DRGraph()
Definition: RTCurve.cc:73
@ NIM4
Definition: SQEvent.h:25
@ NIM2
Definition: SQEvent.h:23
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
int AnaForOneStation(TrackletVector *trklet_vec, const int st_id, const int n_trklet)
void GetGoodTrackletRange(const int st_id, double &x_lo, double &x_hi, double &y_lo, double &y_hi, double &tx_lo, double &tx_hi, double &ty_lo, double &ty_hi)
bool InAcceptance(const Tracklet *trk)
int Init(PHCompositeNode *topNode)
void DrawCalibResult()
int FindBestTracklet(TrackletVector *trklet_vec, const int st_id_tgt)
int process_event(PHCompositeNode *topNode)
void DrawHistEvent()
SRMakeRTCurve(const int iter, const std::string &name="SRMakeRTCurve")
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
const Tracklet * at(const size_t index) const
size_t size() const
Definition: FastTracklet.h:265
double y0
Definition: FastTracklet.h:238
int stationID
Definition: FastTracklet.h:214
double ty
Definition: FastTracklet.h:236
double tx
Definition: FastTracklet.h:235
double x0
Definition: FastTracklet.h:237
int getNHits() const
Definition: FastTracklet.h:145
double chisq
Definition: FastTracklet.h:222