13 #include <ktracker/SRecEvent.h>
14 #include <ktracker/FastTracklet.h>
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");
57 gSystem->mkdir(
Name().c_str(),
true);
58 m_file_out =
new TFile(TString::Format(
"%s/output.root",
Name().c_str()).Data(),
"RECREATE");
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);
69 for (
int i_pl = 1; i_pl <= N_PL; i_pl++) {
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);
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);
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(),
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);
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);
106 int n_trk = m_vec_trklet->
size();
107 m_h1_ntrk->Fill(n_trk);
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;
115 for (
int i_trk = 0; i_trk < n_trk; i_trk++) {
118 cout <<
" Track " << i_trk <<
": stationID = " << trk->
stationID << endl;
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 );
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;
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);
162 for (
unsigned int i_true = 0; i_true < m_vec_trk_true->
size(); i_true++) {
165 SQTrack* trk_true = m_vec_trk_true->
at(i_true);
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() <<
")"
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);
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);
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);
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);
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);
235 void AnaTrack::FindTrackRelation(IdMap_t& id_map)
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);
243 int i_reco_best = -1;
244 double mom_diff_best;
245 for (
int i_reco = 0; i_reco < m_srec->
getNTracks(); i_reco++) {
247 if (trk_reco->
getCharge() != ch_true)
continue;
249 if (i_reco_best < 0 || mom_diff < mom_diff_best) {
250 i_reco_best = i_reco;
251 mom_diff_best = mom_diff;
254 id_map[i_true] = i_reco_best;
258 void AnaTrack::DrawTrackPar()
260 TCanvas* c1 =
new TCanvas(
"c1",
"");
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());
274 void AnaTrack::DrawOneGroup(
const std::string name, TH1* h1[],
const int i_pl0,
const int i_pl1)
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);
281 for (
int i_pl = i_pl0; i_pl <= i_pl1; i_pl++) {
282 h1[i_pl]->SetLineColor(i_pl - i_pl0 + 1);
284 leg->AddEntry(h1[i_pl], h1[i_pl]->GetTitle(),
"l");
287 TCanvas* c1 =
new TCanvas(
"c1",
"");
293 oss <<
Name() <<
"/h1_" << name <<
".png";
294 c1->SaveAs(oss.str().c_str());
AnaTrack(const std::string &name="AnaTrack")
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
virtual const std::string Name() const
Returns the name of this module.
virtual int Verbosity() const
Gets the verbosity of this module.
User interface class about the geometry of detector planes.
static GeomSvc * instance()
singlton instance
int getPlaneNElements(int detectorID) const
double getPlaneScaleX(int detectorID) const
std::string getDetectorName(const int &detectorID) const
double getCellWidth(int detectorID) const
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.
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.
SRecTrack & getTrack(Int_t i)
Int_t getCharge() const
Gets.
TLorentzVector getMomentumVertex()
Get the vertex info.
const Tracklet * at(const size_t index) const
std::list< SignedHit > hits
double getExpPositionW(int detectorID) const