Class Reference for E1039 Core & Analysis Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
AnaTrack.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TSystem.h>
3 #include <TFile.h>
4 #include <TTree.h>
5 #include <TH1D.h>
6 #include <THStack.h>
7 #include <TLegend.h>
8 #include <TCanvas.h>
9 #include <interface_main/SQRun.h>
10 #include <interface_main/SQEvent.h>
13 #include <ktracker/SRecEvent.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 "AnaTrack.h"
22 using namespace std;
23 
24 AnaTrack::AnaTrack(const std::string& name)
25  : SubsysReco(name)
26  , m_evt (0)
27  , m_srec (0)
28  , m_vec_hit (0)
29  , m_vec_trk_true(0)
30  , m_vec_trklet (0)
31  , m_file_out (0)
32 // , m_h1_ele (0)
33 // , m_h1_pos (0)
34 // , m_h1_time (0)
35 // , m_h1_dd (0)
36 // , m_h1_td (0)
37 {
38  ;
39 }
40 
42 {
44 }
45 
47 {
48  m_evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
49  m_vec_hit = findNode::getClass<SQHitVector >(topNode, "SQHitVector");
50  m_vec_trk_true = findNode::getClass<SQTrackVector >(topNode, "SQTruthTrackVector");
51  m_srec = findNode::getClass<SRecEvent >(topNode, "SRecEvent");
52  m_vec_trklet = findNode::getClass<TrackletVector>(topNode, "TrackletVector");
53  if (!m_evt || !m_vec_hit || !m_vec_trk_true || !m_srec || !m_vec_trklet) return Fun4AllReturnCodes::ABORTEVENT;
54 
55  GeomSvc* geom = GeomSvc::instance();
56 
57  gSystem->mkdir(Name().c_str(), true);
58  m_file_out = new TFile(TString::Format("%s/output.root", Name().c_str()).Data(), "RECREATE");
59 
60  m_h1_ntrk = new TH1D("h1_ntrk" , ";N of tracks/event;N of tracks", 100, -0.5, 199.5);
61  m_h1_nhit = new TH1D("h1_nhit" , ";N of hits/track;N of tracks", 18, 0.5, 18.5);
62  m_h1_mom = new TH1D("h1_mom" , ";Momentum (GeV);N of tracks", 120, 0.0, 120.0);
63  m_h1_rchi2 = new TH1D("h1_rchi2", ";#chi^{2}/NDF;N of tracks", 100, 0.0, 3.0);
64  m_h1_x0 = new TH1D("h1_x0" , ";x_{0} (cm);N of tracks", 100, -100, 100);
65  m_h1_y0 = new TH1D("h1_y0" , ";y_{0} (cm);N of tracks", 100, -100, 100);
66  m_h1_tx = new TH1D("h1_tx" , ";t_{x};N of tracks", 100, -0.1, 0.1);
67  m_h1_ty = new TH1D("h1_ty" , ";t_{y};N of tracks", 100, -0.1, 0.1);
68 
69  for (int i_pl = 1; i_pl <= N_PL; i_pl++) {
70  string name_pl = geom->getDetectorName(i_pl);
71  int n_ele = geom->getPlaneNElements(i_pl);
72  double plane_width = geom->getPlaneScaleX(i_pl);
73  double cell_width = geom->getCellWidth(i_pl);
74 
75  m_h1_ele[i_pl] = new TH1D(
76  TString::Format("h1_ele_%d_%s", i_pl, name_pl.c_str()).Data(),
77  TString::Format("#%d: %s;Element ID;Yield", i_pl, name_pl.c_str()).Data(),
78  n_ele, 0.5, n_ele+0.5);
79 
80  m_h1_pos[i_pl] = new TH1D(
81  TString::Format("h1_pos_%d_%s", i_pl, name_pl.c_str()).Data(),
82  TString::Format("#%d: %s;Position (cm);Yield", i_pl, name_pl.c_str()).Data(),
83  60, -0.6*plane_width, 0.6*plane_width);
84 
85  m_h1_time[i_pl] = new TH1D(
86  TString::Format("h1_time_%d_%s", i_pl, name_pl.c_str()).Data(),
87  TString::Format("#%d: %s;tdcTime;Yield", i_pl, name_pl.c_str()).Data(),
88  150, 500, 2000);
89 
90  m_h1_dd[i_pl] = new TH1D(
91  TString::Format("h1_dd_%d_%s", i_pl, name_pl.c_str()).Data(),
92  TString::Format("#%d: %s;Drift dist;Yield", i_pl, name_pl.c_str()).Data(),
93  120, 0.0, 0.6 * cell_width);
94 
95  m_h1_td[i_pl] = new TH1D(
96  TString::Format("h1_td_%d_%s", i_pl, name_pl.c_str()).Data(),
97  TString::Format("#%d: %s;Track dist;Yield", i_pl, name_pl.c_str()).Data(),
98  120, 0.0, 0.6 * cell_width);
99  }
100 
102 }
103 
105 {
106  int n_trk = m_vec_trklet->size();
107  m_h1_ntrk->Fill(n_trk);
108  if (Verbosity() >= 2) {
109  cout << "AnaTrack:\n"
110  << " N of true tracks = " << m_vec_trk_true->size() << "\n"
111  << " N of SRec tracks = " << m_srec->getNTracks() << "\n"
112  << " N of tracklets = " << n_trk << endl;
113  }
114 
115  for (int i_trk = 0; i_trk < n_trk; i_trk++) {
116  Tracklet* trk = m_vec_trklet->at(i_trk);
117  if (Verbosity() >= 2) {
118  cout << " Track " << i_trk << ": stationID = " << trk->stationID << endl;
119  }
120 
121  int n_hit = trk->getNHits();
122  int ndf = n_hit - 4; // Correct only when KMag is off
123  double rchi2 = trk->chisq / ndf;
124  m_h1_nhit ->Fill(n_hit );
125  m_h1_mom ->Fill(1/trk->invP);
126  m_h1_rchi2->Fill(rchi2 );
127  m_h1_x0 ->Fill(trk->x0 );
128  m_h1_y0 ->Fill(trk->y0 );
129  m_h1_tx ->Fill(trk->tx );
130  m_h1_ty ->Fill(trk->ty );
131 
132  for (std::list<SignedHit>::iterator it = trk->hits.begin(); it != trk->hits.end(); ++it) {
133  if(it->hit.index < 0) continue;
134  int det_id = it->hit.detectorID;
135  int ele_id = it->hit.elementID;
136  double pos = it->hit.pos;
137  double tdc_time = it->hit.tdcTime;
138  double drift_dist = it->hit.driftDistance;
139  double track_dist = trk->getExpPositionW(det_id) - pos; // track position - wire position
140  //if (det_id == 1) cout << " Z " << trk->getExpPositionW(det_id) << " " << it->hit.pos << " " << r << " " << t << " " << TMAX[det_id-1]-t << endl;
141  m_h1_ele [det_id]->Fill(ele_id);
142  m_h1_pos [det_id]->Fill(pos);
143  m_h1_time[det_id]->Fill(tdc_time);
144  m_h1_dd [det_id]->Fill(drift_dist);
145  m_h1_td [det_id]->Fill(track_dist);
146  }
147  }
148 
149  //for (SQHitVector::ConstIter it = hv->begin(); it != hv->end(); it++) {
150  // int ele = (*it)->get_element_id();
151  // double pos = (*it)->get_pos();
152  // double time = (*it)->get_tdc_time();
153  // double dist = (*it)->get_drift_distance();
154  // m_h1_ele ->Fill(ele );
155  // m_h1_pos ->Fill(pos );
156  // m_h1_time->Fill(time);
157  // m_h1_dist->Fill(dist);
158  //}
159 
160 // IdMap_t id_trk_t2r; // [idx_true] -> idx_reco
161 // FindTrackRelation(id_trk_t2r);
162  for (unsigned int i_true = 0; i_true < m_vec_trk_true->size(); i_true++) {
163  //if (id_trk_t2r[i_true] == 0) continue;
164 
165  SQTrack* trk_true = m_vec_trk_true->at(i_true);
166  int charge = trk_true->get_charge();
167  TVector3 pos_vtx = trk_true->get_pos_vtx();
168  TVector3 pos_st1 = trk_true->get_pos_st1();
169  TVector3 pos_st3 = trk_true->get_pos_st3();
170  TLorentzVector mom_vtx = trk_true->get_mom_vtx();
171  TLorentzVector mom_st1 = trk_true->get_mom_st1();
172  TLorentzVector mom_st3 = trk_true->get_mom_st3();
173  if (Verbosity() >= 3) {
174  cout << " True track #" << i_true << ": " << charge << "\n"
175  << " pos (" << pos_vtx.X() << ", " << pos_vtx.Y() << " " << pos_vtx.Z() << ")"
176  << " (" << pos_st1.X() << ", " << pos_st1.Y() << " " << pos_st1.Z() << ")"
177  << " (" << pos_st3.X() << ", " << pos_st3.Y() << " " << pos_st3.Z() << ")\n"
178  << " mom (" << mom_vtx.X() << ", " << mom_vtx.Y() << ", " << mom_vtx.Z() << ")"
179  << " (" << mom_st1.X() << ", " << mom_st1.Y() << ", " << mom_st1.Z() << ")"
180  << " (" << mom_st3.X() << ", " << mom_st3.Y() << ", " << mom_st3.Z() << ")"
181  << endl;
182  }
183 //
184 // TrackData tdr;
185 // SRecTrack* trk_reco = &m_srec->getTrack(id_trk_t2r[i_true]);
186 // tdr.charge = trk_reco->getCharge();
187 // tdr.pos_vtx = trk_reco->getVertex();
188 // tdr.mom_vtx = trk_reco->getMomentumVertex();
189 //
190  }
191 
193 }
194 
196 {
197  DrawTrackPar();
198 
199  DrawOneGroup("ele_d0" , m_h1_ele, 1, 6);
200  DrawOneGroup("ele_d2" , m_h1_ele, 13, 18);
201  DrawOneGroup("ele_d3p", m_h1_ele, 19, 24);
202  DrawOneGroup("ele_d3m", m_h1_ele, 25, 30);
203 
204  DrawOneGroup("pos_d0" , m_h1_pos, 1, 6);
205  DrawOneGroup("pos_d2" , m_h1_pos, 13, 18);
206  DrawOneGroup("pos_d3p", m_h1_pos, 19, 24);
207  DrawOneGroup("pos_d3m", m_h1_pos, 25, 30);
208 
209  DrawOneGroup("time_d0" , m_h1_time, 1, 6);
210  DrawOneGroup("time_d2" , m_h1_time, 13, 18);
211  DrawOneGroup("time_d3p", m_h1_time, 19, 24);
212  DrawOneGroup("time_d3m", m_h1_time, 25, 30);
213 
214  DrawOneGroup("dd_d0" , m_h1_dd, 1, 6);
215  DrawOneGroup("dd_d2" , m_h1_dd, 13, 18);
216  DrawOneGroup("dd_d3p", m_h1_dd, 19, 24);
217  DrawOneGroup("dd_d3m", m_h1_dd, 25, 30);
218 
219  DrawOneGroup("td_d0" , m_h1_td, 1, 6);
220  DrawOneGroup("td_d2" , m_h1_td, 13, 18);
221  DrawOneGroup("td_d3p", m_h1_td, 19, 24);
222  DrawOneGroup("td_d3m", m_h1_td, 25, 30);
223 
224  //std::ofstream ofs(TString::Format("%s/output.txt", Name().c_str()).Data());
225  //ofs << "N of events = " << m_n_evt_all << "\n";
226  //ofs.close();
227 
228  m_file_out->cd();
229  m_file_out->Write();
230  m_file_out->Close();
231 
233 }
234 
235 void AnaTrack::FindTrackRelation(IdMap_t& id_map)
236 {
237  id_map.clear();
238  for (unsigned int i_true = 0; i_true < m_vec_trk_true->size(); i_true++) {
239  SQTrack* trk_true = m_vec_trk_true->at(i_true);
240  int ch_true = trk_true->get_charge();
241  double mom_true = trk_true->get_mom_vtx().Mag();
242 
243  int i_reco_best = -1;
244  double mom_diff_best;
245  for (int i_reco = 0; i_reco < m_srec->getNTracks(); i_reco++) {
246  SRecTrack* trk_reco = &m_srec->getTrack(i_reco);
247  if (trk_reco->getCharge() != ch_true) continue;
248  double mom_diff = fabs(trk_reco->getMomentumVertex().Mag() - mom_true);
249  if (i_reco_best < 0 || mom_diff < mom_diff_best) {
250  i_reco_best = i_reco;
251  mom_diff_best = mom_diff;
252  }
253  }
254  id_map[i_true] = i_reco_best;
255  }
256 }
257 
258 void AnaTrack::DrawTrackPar()
259 {
260  TCanvas* c1 = new TCanvas("c1", "");
261  c1->SetGrid();
262 
263  m_h1_nhit ->Draw(); c1->SaveAs((Name()+"/h1_track_nhit.png" ).c_str());
264  m_h1_mom ->Draw(); c1->SaveAs((Name()+"/h1_track_mom.png" ).c_str());
265  m_h1_rchi2->Draw(); c1->SaveAs((Name()+"/h1_track_rchi2.png").c_str());
266  m_h1_x0 ->Draw(); c1->SaveAs((Name()+"/h1_track_x0.png" ).c_str());
267  m_h1_y0 ->Draw(); c1->SaveAs((Name()+"/h1_track_y0.png" ).c_str());
268  m_h1_tx ->Draw(); c1->SaveAs((Name()+"/h1_track_tx.png" ).c_str());
269  m_h1_ty ->Draw(); c1->SaveAs((Name()+"/h1_track_ty.png" ).c_str());
270 
271  delete c1;
272 }
273 
274 void AnaTrack::DrawOneGroup(const std::string name, TH1* h1[], const int i_pl0, const int i_pl1)
275 {
276  ostringstream oss;
277  oss << ";" << h1[i_pl0]->GetXaxis()->GetTitle() << ";" << h1[i_pl0]->GetYaxis()->GetTitle();
278  THStack* hs = new THStack("hs" , oss.str().c_str());
279  TLegend* leg = new TLegend(0.85, 0.70, 0.99, 0.99);
280 
281  for (int i_pl = i_pl0; i_pl <= i_pl1; i_pl++) {
282  h1[i_pl]->SetLineColor(i_pl - i_pl0 + 1);
283  hs->Add(h1[i_pl]);
284  leg->AddEntry(h1[i_pl], h1[i_pl]->GetTitle(), "l");
285  }
286 
287  TCanvas* c1 = new TCanvas("c1", "");
288  c1->SetGrid();
289  hs->Draw("nostack");
290  leg->Draw();
291 
292  oss.str("");
293  oss << Name() << "/h1_" << name << ".png";
294  c1->SaveAs(oss.str().c_str());
295 
296  delete c1;
297  delete leg;
298  delete hs;
299 }
AnaTrack(const std::string &name="AnaTrack")
Definition: AnaTrack.cc:24
int InitRun(PHCompositeNode *topNode)
Definition: AnaTrack.cc:46
int Init(PHCompositeNode *topNode)
Definition: AnaTrack.cc:41
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaTrack.cc:195
int process_event(PHCompositeNode *topNode)
Definition: AnaTrack.cc:104
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
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
int getPlaneNElements(int detectorID) const
Definition: GeomSvc.h:260
double getPlaneScaleX(int detectorID) const
Definition: GeomSvc.h:242
std::string getDetectorName(const int &detectorID) const
Definition: GeomSvc.h:223
double getCellWidth(int detectorID) const
Definition: GeomSvc.h:238
virtual const SQTrack * at(const size_t id) const =0
virtual size_t size() const =0
An SQ interface class to hold one true or reconstructed track.
Definition: SQTrack.h:8
virtual TVector3 get_pos_vtx() const =0
Return the track position at vertex.
virtual int get_charge() const =0
Return the charge, i.e. +1 or -1.
virtual TLorentzVector get_mom_vtx() const =0
Return the track momentum at vertex.
virtual TLorentzVector get_mom_st1() const =0
Return the track momentum at Station 1.
virtual TVector3 get_pos_st3() const =0
Return the track position at Station 3.
virtual TVector3 get_pos_st1() const =0
Return the track position at Station 1.
virtual TLorentzVector get_mom_st3() const =0
Return the track momentum at Station 3.
Int_t getNTracks()
Get tracks.
Definition: SRecEvent.h:455
SRecTrack & getTrack(Int_t i)
Definition: SRecEvent.h:456
Int_t getCharge() const
Gets.
Definition: SRecEvent.h:101
TLorentzVector getMomentumVertex()
Get the vertex info.
Definition: SRecEvent.cxx:340
const Tracklet * at(const size_t index) const
size_t size() const
Definition: FastTracklet.h:265
double invP
Definition: FastTracklet.h:239
std::list< SignedHit > hits
Definition: FastTracklet.h:228
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
double getExpPositionW(int detectorID) const