8 #include <ktracker/SRecEvent.h>
27 mi_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
28 mi_evt_true = findNode::getClass<SQMCEvent >(topNode,
"SQMCEvent");
29 mi_vec_trk = findNode::getClass<SQTrackVector >(topNode,
"SQTruthTrackVector");
30 mi_vec_dim = findNode::getClass<SQDimuonVector>(topNode,
"SQTruthDimuonVector");
31 mi_srec = findNode::getClass<SRecEvent >(topNode,
"SRecEvent");
34 cout <<
"The SRecEvent node cannot be found in DST and thus won't be analyzed." << endl;
37 mo_file =
new TFile(
"sim_tree.root",
"RECREATE");
38 mo_tree =
new TTree(
"tree",
"Created by AnaSimDst");
39 mo_tree->Branch(
"evt" , &mo_evt);
40 mo_tree->Branch(
"trk_true", &mo_trk_true);
41 mo_tree->Branch(
"trk_reco", &mo_trk_reco);
42 mo_tree->Branch(
"dim_true", &mo_dim_true);
43 mo_tree->Branch(
"dim_reco", &mo_dim_reco);
50 static unsigned int n_evt = 0;
51 if (++n_evt % 100000 == 0) cout << n_evt << endl;
52 else if (n_evt % 10000 == 0) cout <<
" . " << flush;
58 for (
int ii = 0; ii < 4; ii++) {
78 if (mi_srec) FindTrackRelation(id_trk_t2r);
81 for (
unsigned int ii = 0; ii < mi_vec_trk->
size(); ii++) {
87 mo_trk_true.push_back(td);
91 if (id_trk_t2r[ii] >= 0) {
97 mo_trk_reco.push_back(tdr);
105 if (mi_srec) FindDimuonRelation(id_dim_t2r);
108 for (
unsigned int ii = 0; ii < mi_vec_dim->
size(); ii++) {
117 mo_dim_true.push_back(dd);
121 if (id_dim_t2r[ii] >= 0) {
127 ddr.
x1 = dim_reco.
x1;
128 ddr.
x2 = dim_reco.
x2;
130 mo_dim_reco.push_back(ddr);
146 void AnaSimDst::FindTrackRelation(IdMap_t& id_map)
149 for (
unsigned int i_true = 0; i_true < mi_vec_trk->
size(); i_true++) {
150 SQTrack* trk_true = mi_vec_trk->
at(i_true);
154 int i_reco_best = -1;
155 double mom_diff_best;
156 for (
int i_reco = 0; i_reco < mi_srec->
getNTracks(); i_reco++) {
158 if (trk_reco->
getCharge() != ch_true)
continue;
160 if (i_reco_best < 0 || mom_diff < mom_diff_best) {
161 i_reco_best = i_reco;
162 mom_diff_best = mom_diff;
165 id_map[i_true] = i_reco_best;
169 void AnaSimDst::FindDimuonRelation(IdMap_t& id_map)
172 for (
unsigned int i_true = 0; i_true < mi_vec_dim->
size(); i_true++) {
174 double mass_true = dim_true->
get_mom().M();
176 int i_reco_best = -1;
177 double mass_diff_best;
178 for (
int i_reco = 0; i_reco < mi_srec->
getNDimuons(); i_reco++) {
180 double mass_diff = fabs(dim_reco.
mass - mass_true);
181 if (i_reco_best < 0 || mass_diff < mass_diff_best) {
182 i_reco_best = i_reco;
183 mass_diff_best = mass_diff;
186 id_map[i_true] = i_reco_best;
int process_event(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
virtual const SQDimuon * at(const size_t id) const =0
virtual size_t size() const =0
An SQ interface class to hold one true or reconstructed dimuon.
virtual TLorentzVector get_mom_neg() const =0
Return the momentum of the negative track at vertex.
virtual int get_pdg_id() const =0
Return the GPD ID of parent particle. It is valid only for true dimuon.
virtual TLorentzVector get_mom_pos() const =0
Return the momentum of the positive track at vertex.
virtual TLorentzVector get_mom() const =0
Return the dimuon momentum at vertex.
virtual TVector3 get_pos() const =0
Return the dimuon position at vertex.
virtual bool get_trigger(const SQEvent::TriggerMask i) const =0
Return the trigger bit (fired or not) of the selected trigger channel.
virtual int get_particle_id(const int i) const =0
Return the particle ID of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
virtual double get_weight() const =0
Return the event weight.
virtual TLorentzVector get_particle_momentum(const int i) const =0
Return the particle momentum of the primary process, where i=0...3 for "0 + 1 -> 2 + 3".
virtual int get_process_id() const =0
Return the primary process ID.
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.
TVector3 vtx
3-vector vertex position
TLorentzVector p_pos
4-momentum of the muon tracks after vertex fit
Double_t mass
Kinematic variables.
SRecDimuon & getDimuon(Int_t i)
Int_t getNTracks()
Get tracks.
SRecTrack & getTrack(Int_t i)
Int_t getNDimuons()
Get dimuons.
Int_t getCharge() const
Gets.
TLorentzVector getMomentumVertex()
Get the vertex info.
void CalcVar(const SQDimuon *dim, double &mass, double &pT, double &x1, double &x2, double &xF)
Calculate the key kinematic variables of dimuon.
TLorentzVector par_mom[4]