Class Reference for E1039 Core & Analysis Software
CheckEventData.cc
Go to the documentation of this file.
1 #include <iomanip>
2 #include <TFile.h>
3 #include <TTree.h>
7 #include <phool/getClass.h>
8 #include <UtilAna/UtilSQHit.h>
9 #include "CheckEventData.h"
10 using namespace std;
11 
13  : SubsysReco("CheckEventData")
14  , m_evt (0)
15  , m_hit_vec (0)
16  , m_file (0)
17  , m_tree (0)
18 {
19  ;
20 }
21 
23 {
25 }
26 
28 {
29  m_evt = findNode::getClass<SQEvent >(topNode, "SQEvent");
30  m_hit_vec = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
31  if (!m_evt || !m_hit_vec) return Fun4AllReturnCodes::ABORTEVENT;
33 }
34 
36 {
37  if (Verbosity() > 0) {
38  cout << m_hit_vec->size() << " | ";
39  for (SQHitVector::ConstIter it = m_hit_vec->begin(); it != m_hit_vec->end(); it++) {
40  SQHit* hit = *it;
41  cout << " " << hit->get_detector_id() << ":" << hit->get_element_id();
42  if (Verbosity() > 1) cout << "[" << hit->get_drift_distance() << "]";
43  }
44  cout << endl;
45  }
46 
48 }
49 
51 {
53 }
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
int Init(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
std::vector< SQHit * >::const_iterator ConstIter
Definition: SQHitVector.h:37
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
virtual size_t size() const =0
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual float get_drift_distance() const
Return the drift distance of this hit. Probably the value is not properly set at present....
Definition: SQHit.h:57
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42