30 mi_evt_true = findNode::getClass<SQMCEvent >(topNode,
"SQMCEvent");
31 mi_vec_trk = findNode::getClass<SQTrackVector >(topNode,
"SQTruthTrackVector");
32 mi_vec_dim = findNode::getClass<SQDimuonVector>(topNode,
"SQTruthDimuonVector");
33 mi_vec_hit = findNode::getClass<SQHitVector >(topNode,
"SQHitVector");
36 mo_file =
new TFile(
"signal_tree.root",
"RECREATE");
37 mo_tree =
new TTree(
"signal_tree",
"Created by SubsysRecoSignal");
38 mo_tree->Branch(
"signal_data", &mo_sig);
45 static unsigned int n_evt = 0;
46 if (++n_evt % 100000 == 0) cout << n_evt << endl;
47 else if (n_evt % 10000 == 0) cout <<
" . " << flush;
51 for (
unsigned int ii = 0; ii < mi_vec_dim->
size(); ii++) {
57 if (! trk_pos || ! trk_neg) {
58 cerr <<
"Invalid true tracks! Abort." << endl;
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 int get_track_id_neg() const =0
Return the track ID of the negative track.
virtual TLorentzVector get_mom() const =0
Return the dimuon momentum at vertex.
virtual int get_track_id_pos() const =0
Return the track ID of the positive track.
virtual TVector3 get_pos() const =0
Return the dimuon position at vertex.
virtual double get_weight() const =0
Return the event weight.
An SQ interface class to hold one true or reconstructed track.
int process_event(PHCompositeNode *topNode)
SubsysRecoSignal(const std::string &name="SubsysRecoSignal")
int InitRun(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void CalcVar(const SQDimuon *dim, double &mass, double &pT, double &x1, double &x2, double &xF)
Calculate the key kinematic variables of dimuon.
SQHitVector * FindHodoHitsOfTrack(const SQHitVector *vec_in, const int id_trk)
Find all hodoscope hits hits associated with the given track.
SQTrack * FindTrackByID(const SQTrackVector *vec, const int id_trk, const bool do_assert=false)
Find a track by track ID in the given track list.
int ExtractRoadID(const SQHitVector *vec)
Find a unique road in the given list of SQHits.