10 #include <ktracker/SRecEvent.h>
31 mi_evt = findNode::getClass<SQEvent >(topNode,
"SQEvent");
32 mi_vec_hit = findNode::getClass<SQHitVector >(topNode,
"SQHitVector");
33 if (!mi_evt || !mi_vec_hit) {
34 cout <<
PHWHERE <<
": Cannot find SQEvent and/or SQHitVector." << endl;
38 mi_evt_emb = findNode::getClass<SQEvent >(topNode,
"SQEventEmb");
39 mi_evt_mc = findNode::getClass<SQMCEvent >(topNode,
"SQMCEvent");
40 mi_evt_mc_emb = findNode::getClass<SQMCEvent >(topNode,
"SQMCEventEmb");
41 mi_vec_trk = findNode::getClass<SQTrackVector >(topNode,
"SQTruthTrackVector");
42 mi_vec_dim = findNode::getClass<SQDimuonVector>(topNode,
"SQTruthDimuonVector");
43 mi_srec = findNode::getClass<SRecEvent >(topNode,
"SRecEvent");
44 if (!mi_evt_emb ) cout <<
"No SQEventEmb node." << endl;
45 if (!mi_evt_mc ) cout <<
"No SQMCEvent node." << endl;
46 if (!mi_evt_mc_emb) cout <<
"No SQMCEventEmb node." << endl;
47 if (!mi_vec_trk ) cout <<
"No SQTruthTrackVector node." << endl;
48 if (!mi_vec_dim ) cout <<
"No SQTruthDimuonVector node." << endl;
49 if (!mi_srec ) cout <<
"No SRecEvent node." << endl;
51 mo_file =
new TFile(
"ana_tree.root",
"RECREATE");
52 mo_tree =
new TTree(
"tree",
"Created by AnaEmbeddedData");
53 mo_tree->Branch(
"evt" , &mo_evt);
54 mo_tree->Branch(
"trk_true", &mo_trk_true);
55 mo_tree->Branch(
"trk_reco", &mo_trk_reco);
56 mo_tree->Branch(
"dim_true", &mo_dim_true);
57 mo_tree->Branch(
"dim_reco", &mo_dim_reco);
84 map<int, int> list_cnt;
86 const SQHit* hit = *it;
106 for (
unsigned int ii = 0; ii < mi_vec_trk->
size(); ii++) {
111 mo_trk_true.push_back(td);
116 for (
unsigned int ii = 0; ii < mi_vec_dim->
size(); ii++) {
124 mo_dim_true.push_back(dd);
133 for (
int ii = 0; ii < mi_srec->
getNTracks(); ii++) {
138 mo_trk_reco.push_back(td);
141 for (
int ii = 0; ii < mi_srec->
getNDimuons(); ii++) {
149 mo_dim_reco.push_back(dd);
178 void AnaEmbeddedData::DivideHitVector(
const SQHitVector* vec_in, std::map<int, SQHitVector*>& vec_sep,
const bool in_time)
183 const SQHit* hit = *it;
187 if (hv == 0) vec_sep[det_id] = hv = vec0->
Clone();
int Init(PHCompositeNode *topNode)
AnaEmbeddedData(const std::string name="AnaEmbeddedData")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
User interface class about the geometry of detector planes.
int getDetectorID(const std::string &detectorName) const
Get the plane position.
static GeomSvc * instance()
singlton instance
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 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 int get_qie_rf_intensity(const short i) const =0
Return the i-th QIE RF intensity, where i=-16...+16.
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_spill_id() const =0
Return the spill ID.
virtual int get_event_id() const =0
Return the event ID, which is unique per run.
An SQ interface class to hold a list of SQHit objects.
virtual SQHitVector * Clone() const =0
std::vector< SQHit * >::const_iterator ConstIter
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
virtual void push_back(const SQHit *hit)=0
An SQ interface class to hold one detector hit.
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
virtual short get_detector_id() const
Return the detector ID of this hit.
virtual double get_weight() const =0
Return the event weight.
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 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.
TLorentzVector p_pos
4-momentum of the muon tracks after vertex fit
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.
void Lab2CollinsSoper(const SQDimuon *dim, double &costh, double &phi)
Convert the momenta of muon pair from Lab frame to Collins-Soper frame.