9 #include <ktracker/FastTracklet.h>
11 #include <ktracker/SRecEvent.h>
20 {32, 38, 40, 46, 31, 37, 39, 45,
21 33, 35, 41, 43, 34, 36, 42, 44,
22 55, 56, 57, 58, 59, 60, 61, 62};
32 cout<<
"SimpleTree::Init()"<<endl;
38 cout<<
"SimpleTree::InitRun() - GetNodes()"<<endl;
39 int ret = GetNodes(topNode);
42 cout<<
"SimpleTree::InitRun() - MakeTree()"<<endl;
44 cout<<
"SimpleTree::IninRun() Done"<<endl;
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++)
74 nDimuons = sqDimuonVector->
size();
76 for (
unsigned int ii = 0; ii < nDimuons; ii++)
93 lDimuon.push_back(dd);
100 nTracks = sqTrackVector->
size();
102 for (
unsigned int ii = 0; ii < nTracks; ii++)
111 lTrack.push_back(dd);
118 nHits = sqHitVector->
size();
120 for (
unsigned int ii = 0; ii < nHits; ii++)
122 SQHit* hit = sqHitVector->
at(ii);
138 nTracklets = trackletVector->
size();
141 for (
unsigned int ii = 0; ii < nTracklets; ii++)
151 for(
int jj=0; jj<24; jj++)
153 const int d_id =
dID[jj];
165 if( !gs->
isInPlane(d_id, x, y) )
continue;
175 SQHit* hit = findHit(d_id, e_id);
176 if( hit ==
nullptr )
continue;
184 lTracklet.push_back(dd);
195 cout<<
"SimpleTree::End()"<<endl;
200 cout<<
"SimpleTree::End() - Done"<<endl;
207 sqMCEvent = findNode::getClass<SQMCEvent >(topNode,
"SQMCEvent");
208 sqEvent = findNode::getClass<SQEvent >(topNode,
"SQEvent");
209 sqTrackVector = findNode::getClass<SQTrackVector >(topNode,
"SQTruthTrackVector");
210 sqDimuonVector = findNode::getClass<SQDimuonVector>(topNode,
"SQTruthDimuonVector");
211 sqHitVector = findNode::getClass<SQHitVector >(topNode,
"SQHitVector");
212 trackletVector = findNode::getClass<TrackletVector>(topNode,
"TrackletVector");
214 if (!sqMCEvent || !sqEvent || !sqTrackVector || !sqDimuonVector || !sqHitVector || !trackletVector) {
222 cout<<
"SimpleTree::SetOutput()"<<endl;
223 file=
new TFile(out_name,
"RECREATE");
224 tree =
new TTree(
"T",
"Created by SimpleTree");
225 cout<<out_name<<
" -- Created"<<endl;
228 void SimpleTree::MakeTree()
230 tree->Branch(
"mcevent", &dMCEvent);
231 tree->Branch(
"event", &dEvent);
232 tree->Branch(
"dimuon", &lDimuon);
233 tree->Branch(
"track", &lTrack);
234 tree->Branch(
"hit", &lHit);
235 tree->Branch(
"tracklet", &lTracklet);
236 tree->Branch(
"nTracks", &nTracks);
237 tree->Branch(
"nHits", &nHits);
238 tree->Branch(
"nTracklets", &nTracklets);
242 SQHit* SimpleTree::findHit(
const int detID,
const int eleID)
245 SQHit* hit =
nullptr;
248 if((*it)->get_detector_id() != detID)
continue;
249 int delta_temp = abs(eleID - (*it)->get_element_id());
250 if(delta > delta_temp)
User interface class about the geometry of detector planes.
double getPlanePosition(int detectorID) const
int getPlaneNElements(int detectorID) const
int getExpElementID(int detectorID, double pos_exp)
bool isInPlane(int detectorID, double x, double y)
See if a point is in a plane.
TLorentzVector particle_mom[4]
int process_id
MC Event Info.
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_dimuon_id() const =0
Return the dimuon ID, which is unique per event(?).
virtual int get_pdg_id() const =0
Return the GPD ID of parent particle. It is valid only for true dimuon.
virtual double get_xf() const =0
virtual TLorentzVector get_mom_pos() const =0
Return the momentum of the positive track at vertex.
virtual double get_x2() const =0
virtual int get_track_id_neg() const =0
Return the track ID of the negative track.
virtual double get_x1() const =0
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 double get_mass() const =0
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_event_id() const =0
Return the event ID, which is unique per run.
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
virtual const SQHit * at(const size_t idkey) const =0
std::vector< SQHit * >::iterator Iter
virtual size_t size() const =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 float get_pos() const
Return the absolute position of this hit. Probably the value is not properly set at present.
virtual short get_element_id() const
Return the element ID of this hit.
virtual int get_hit_id() const
Return the ID of this hit.
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
virtual short get_detector_id() const
Return the detector ID of this hit.
virtual int get_track_id() const
Return the track ID associated with this hit. Probably the value is not properly set at present.
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 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 int get_track_id() const =0
Return the track ID, which is unique per event(?).
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.
int process_event(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
SimpleTree(const std::string &name="SimpleTree")
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
void SetOutput(const char *out_name)
int element_id_closest[24]
const Tracklet * at(const size_t index) const
double getExpPositionY(double z) const
double getExpPositionX(double z) const
double getExpPositionW(int detectorID) const
int getCharge() const
Return the charge (+1 or -1) of this tracklet.