Class Reference for E1039 Core & Analysis Software
SQTrackletReco.cxx
Go to the documentation of this file.
1 #include <phool/PHNodeIterator.h>
2 #include <phool/PHIODataNode.h>
3 #include <phool/getClass.h>
4 #include <phool/recoConsts.h>
7 #include "EventReducer.h"
8 #include "SQTrackletReco.h"
9 
10 SQTrackletReco::SQTrackletReco(const std::string& name)
11  : SQReco(name)
12  , _drop_empty_event(false)
13 {
14  ;
15 }
16 
18 {
19  ;
20 }
21 
23 {
25 
26  int finderstatus = _fastfinder->setRawEvent(_rawEvent);
28  {
30  _recEvent->setRecStatus(finderstatus);
31  }
33 
34  int nTracklets = 0;
36  {
37  for(unsigned int i = 0; i < _eval_listIDs.size(); ++i)
38  {
39  std::list<Tracklet>& eval_tracklets = _fastfinder->getTrackletList(_eval_listIDs[i]);
40  for(auto iter = eval_tracklets.begin(); iter != eval_tracklets.end(); ++iter)
41  {
42  if(is_eval_enabled()) new((*_tracklets)[nTracklets]) Tracklet(*iter);
44  ++nTracklets;
45  }
46  }
47  }
48 
49  if(is_eval_enabled() && nTracklets > 0) _eval_tree->Fill();
50 
52 
53  if (_drop_empty_event && nTracklets == 0) return Fun4AllReturnCodes::ABORTEVENT;
55 }
56 
60 int SQTrackletReco::InitFastTracking()
61 {
64  return 0;
65 }
66 
67 int SQTrackletReco::MakeNodes(PHCompositeNode* topNode)
68 {
69  PHNodeIterator iter(topNode);
70  PHCompositeNode* eventNode = static_cast<PHCompositeNode*>(iter.findFirst("PHCompositeNode", "DST"));
71  if(!eventNode)
72  {
73  LogInfo("No DST node, create one");
74  eventNode = new PHCompositeNode("DST");
75  topNode->addNode(eventNode);
76  }
77 
79  {
80  _tracklet_vector = findNode::getClass<TrackletVector>(topNode, "TrackletVector"); // Could exist when the tracking is re-done.
81  if(!_tracklet_vector) {
84  eventNode->addNode(new PHIODataNode<PHObject>(_tracklet_vector, "TrackletVector", "PHObject"));
85  if(Verbosity() >= Fun4AllBase::VERBOSITY_SOME) LogInfo("DST/TrackletVector Added");
86  }
87  }
88 
90 }
#define LogInfo(message)
Definition: DbSvc.cc:15
@ VERBOSITY_A_LOT
Output a lot of messages.
Definition: Fun4AllBase.h:48
@ VERBOSITY_SOME
Output some useful messages during manual command line running.
Definition: Fun4AllBase.h:39
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
void setOutputListIndex(unsigned int i)
Set the index of the final output tracklet list.
std::list< Tracklet > & getTrackletList(int i)
virtual int setRawEvent(SRawEvent *event_input)
PHBoolean addNode(PHNode *)
void SplitLevel(const int i)
Definition: PHObject.h:42
Definition: SQReco.h:43
TGeoManager * _t_geo_manager
Definition: SQReco.h:153
int _output_list_idx
Definition: SQReco.h:109
SRawEvent * _rawEvent
Definition: SQReco.h:147
void ProcessEventPrep()
Definition: SQReco.cxx:232
SRecEvent * _recEvent
Definition: SQReco.h:148
PHField * _phfield
Definition: SQReco.h:128
bool _enable_eval_dst
Definition: SQReco.h:117
TrackletVector * _tracklet_vector
Definition: SQReco.h:118
void ProcessEventFinish()
Definition: SQReco.cxx:258
std::vector< int > _eval_listIDs
Definition: SQReco.h:115
bool _legacy_rec_container
Definition: SQReco.h:146
bool is_eval_dst_enabled() const
Definition: SQReco.h:76
bool is_eval_enabled() const
Definition: SQReco.h:74
TTree * _eval_tree
Definition: SQReco.h:113
KalmanFastTracking * _fastfinder
Definition: SQReco.h:121
bool _drop_empty_event
Definition: SQTrackletReco.h:8
virtual ~SQTrackletReco()
SQTrackletReco(const std::string &name="SQTrackletReco")
virtual int process_event(PHCompositeNode *topNode)
void setRecStatus(int status)
Definition: SRecEvent.h:432
void setRawEvent(SRawEvent *rawEvent)
directly setup everything by raw event
Definition: SRecEvent.cxx:764
void push_back(const Tracklet *tracklet)