Class Reference for E1039 Core & Analysis Software
CalibHitPos.cc
Go to the documentation of this file.
1 #include <iomanip>
4 #include <phool/recoConsts.h>
5 #include <phool/PHNodeIterator.h>
6 #include <phool/PHIODataNode.h>
7 #include <phool/getClass.h>
8 #include <geom_svc/GeomSvc.h>
9 #include "CalibHitPos.h"
10 using namespace std;
11 
12 CalibHitPos::CalibHitPos(const std::string& name)
13  : SubsysReco(name)
14  , m_vec_hit(0)
15 {
16  ;
17 }
18 
20 {
21  ;
22 }
23 
25 {
27 }
28 
30 {
31  m_vec_hit = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
32  if (!m_vec_hit) return Fun4AllReturnCodes::ABORTEVENT;
34 }
35 
37 {
38  GeomSvc* geom = GeomSvc::instance();
39  for (SQHitVector::Iter it = m_vec_hit->begin(); it != m_vec_hit->end(); it++) {
40  SQHit* hit = *it;
41  int det = hit->get_detector_id();
42  if (!geom->isChamber(det) && !geom->isPropTube(det)) continue;
43 
44  int ele = hit->get_element_id();
45  double pos = geom->getMeasurement(det, ele);
46  if (Verbosity() > 0) cout << "CalibHitPos: " << det << " " << ele << ": " << hit->get_pos() << " -> " << pos << endl;
47  hit->set_pos(pos);
48  }
50 }
51 
53 {
55 }
CalibHitPos(const std::string &name="CalibHitPos")
Definition: CalibHitPos.cc:12
virtual ~CalibHitPos()
Definition: CalibHitPos.cc:19
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: CalibHitPos.cc:52
int InitRun(PHCompositeNode *topNode)
Definition: CalibHitPos.cc:29
int process_event(PHCompositeNode *topNode)
Definition: CalibHitPos.cc:36
int Init(PHCompositeNode *topNode)
Definition: CalibHitPos.cc:24
virtual int Verbosity() const
Gets the verbosity of this module.
Definition: Fun4AllBase.h:64
User interface class about the geometry of detector planes.
Definition: GeomSvc.h:164
bool isPropTube(const int detectorID) const
Return "true" for prop tube planes.
Definition: GeomSvc.cxx:792
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
void getMeasurement(int detectorID, int elementID, double &measurement, double &dmeasurement)
Convert the detectorID and elementID to the actual hit position.
Definition: GeomSvc.cxx:651
bool isChamber(const int detectorID) const
Return "true" for chamber planes.
Definition: GeomSvc.cxx:772
virtual ConstIter end() const =0
virtual ConstIter begin() const =0
std::vector< SQHit * >::iterator Iter
Definition: SQHitVector.h:38
An SQ interface class to hold one detector hit.
Definition: SQHit.h:20
virtual void set_pos(const float a)
Definition: SQHit.h:61
virtual float get_pos() const
Return the absolute position of this hit. Probably the value is not properly set at present.
Definition: SQHit.h:60
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