Class Reference for E1039 Core & Analysis Software
CalibHodoInTime.cc
Go to the documentation of this file.
1 #include <iomanip>
3 #include <interface_main/SQRun.h>
6 #include <phool/recoConsts.h>
7 #include <phool/PHNodeIterator.h>
8 #include <phool/PHIODataNode.h>
9 #include <phool/getClass.h>
10 #include <geom_svc/GeomSvc.h>
13 #include "CalibHodoInTime.h"
14 using namespace std;
15 
16 CalibHodoInTime::CalibHodoInTime(const std::string& name)
17  : SubsysReco(name)
18  , m_skip_calib(false)
19  , m_delete_out_time_hit(false)
20  , m_vec_hit (0)
21  , m_vec_trhit (0)
22  , m_cal_taiwan(0)
23  , m_cal_v1495 (0)
24 {
25  ;
26 }
27 
29 {
30  if (m_cal_taiwan) delete m_cal_taiwan;
31  if (m_cal_v1495 ) delete m_cal_v1495;
32 }
33 
35 {
37 }
38 
40 {
41  //SQRun* run_header = findNode::getClass<SQRun>(topNode, "SQRun");
42  //if (!run_header) return Fun4AllReturnCodes::ABORTEVENT;
43  m_vec_hit = findNode::getClass<SQHitVector>(topNode, "SQHitVector");
44  m_vec_trhit = findNode::getClass<SQHitVector>(topNode, "SQTriggerHitVector");
45  if (!m_vec_hit || !m_vec_trhit) return Fun4AllReturnCodes::ABORTEVENT;
46 
47  if (m_skip_calib) {
48  if (Verbosity() > 0) cout << Name() << ": Skip the calibration." << endl;
49  } else {
51  int run_id = rc->get_IntFlag("RUNNUMBER");
52 
53  m_cal_taiwan = new CalibParamInTimeTaiwan();
54  m_cal_taiwan->SetMapIDbyDB(run_id); // (run_header->get_run_id());
55  m_cal_taiwan->ReadFromDB();
56 
57  m_cal_v1495 = new CalibParamInTimeV1495();
58  m_cal_v1495->SetMapIDbyDB(run_id); // (run_header->get_run_id());
59  m_cal_v1495->ReadFromDB();
60 
61  SQParamDeco* param_deco = findNode::getClass<SQParamDeco>(topNode, "SQParamDeco");
62  if (param_deco) {
63  param_deco->set_variable(m_cal_taiwan->GetParamID(), m_cal_taiwan->GetMapID());
64  param_deco->set_variable(m_cal_v1495 ->GetParamID(), m_cal_v1495 ->GetMapID());
65  }
66 
67  rc->set_CharFlag(m_cal_taiwan->GetParamID(), m_cal_taiwan->GetMapID());
68  rc->set_CharFlag(m_cal_v1495 ->GetParamID(), m_cal_v1495 ->GetMapID());
69 
70  if (Verbosity() > 0) {
71  cout << Name() << ": " << m_cal_taiwan->GetParamID() << " = " << m_cal_taiwan->GetMapID() << "\n"
72  << Name() << ": " << m_cal_v1495 ->GetParamID() << " = " << m_cal_v1495 ->GetMapID() << "\n";
73  }
74  }
75 
77 }
78 
80 {
81  GeomSvc* geom = GeomSvc::instance();
82  for (SQHitVector::Iter it = m_vec_hit->begin(); it != m_vec_hit->end(); ) {
83  SQHit* hit = *it;
84  int det = hit->get_detector_id();
85  if (!geom->isHodo(det) && !geom->isDPHodo(det) && !geom->isInh(det)) {
86  it++;
87  continue;
88  }
89 
90  if (! m_skip_calib) {
91  int ele = hit->get_element_id();
92  double center, width;
93  if (! m_cal_taiwan->Find(det, ele, center, width)) {
94  if (Verbosity() > 1) cerr << " WARNING: Cannot find the in-time parameter for det=" << det << " ele=" << ele << ".\n";
95  it++;
96  continue;
97  }
98  hit->set_in_time( fabs(hit->get_tdc_time() - center) <= width / 2 );
99  hit->set_drift_distance(0);
100  }
101  if (m_delete_out_time_hit && ! hit->is_in_time()) it = m_vec_hit->erase(it);
102  else it++;
103  }
104 
105  for (SQHitVector::Iter it = m_vec_trhit->begin(); it != m_vec_trhit->end(); ) {
106  SQHit* hit = *it;
107  int det = hit->get_detector_id();
108  if (!geom->isHodo(det)) {
109  it++;
110  continue;
111  }
112 
113  if (! m_skip_calib) {
114  int ele = hit->get_element_id();
115  int lvl = hit->get_level();
116  double center, width;
117  if (! m_cal_v1495->Find(det, ele, lvl, center, width)) {
118  if (Verbosity() > 1) cerr << " WARNING: Cannot find the in-time parameter for trigger det=" << det << " ele=" << ele << " lvl=" << lvl << ".\n";
119  it++;
120  continue;
121  }
122  hit->set_in_time( fabs(hit->get_tdc_time() - center) <= width / 2 );
123  hit->set_drift_distance(0);
124  }
125  if (m_delete_out_time_hit && ! hit->is_in_time()) it = m_vec_trhit->erase(it);
126  else it++;
127  }
128 
130 }
131 
133 {
135 }
int Init(PHCompositeNode *topNode)
virtual ~CalibHodoInTime()
int process_event(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
CalibHodoInTime(const std::string &name="CalibHodoInTime")
bool Find(const short det, const short ele, double &center, double &width)
bool Find(const short det, const short ele, const short lvl, double &center, double &width)
virtual const std::string Name() const
Returns the name of this module.
Definition: Fun4AllBase.h:23
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 isHodo(const int detectorID) const
Return "true" for hodo planes.
Definition: GeomSvc.cxx:782
static GeomSvc * instance()
singlton instance
Definition: GeomSvc.cxx:212
bool isInh(const int detectorID) const
Return "true" for BeforeInh and AfterInh signals.
Definition: GeomSvc.cxx:812
bool isDPHodo(const int detectorID) const
Return "true" for DP hodo planes.
Definition: GeomSvc.cxx:802
virtual int get_IntFlag(const std::string &name) const
Definition: PHFlag.cc:117
std::string GetParamID()
Definition: RunParamBase.h:25
void ReadFromDB()
void SetMapIDbyDB(const std::string map_id)
Definition: RunParamBase.cc:31
std::string GetMapID()
Definition: RunParamBase.h:27
virtual size_t erase(const size_t idkey)=0
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 short get_level() const
Return the trigger level of this hit. Meaningful only if this hit is of V1495 TDC.
Definition: SQHit.h:51
virtual bool is_in_time() const
Return 'true' if this hit is in the time window.
Definition: SQHit.h:90
virtual short get_element_id() const
Return the element ID of this hit.
Definition: SQHit.h:45
virtual float get_tdc_time() const
Return the TDC time (nsec) of this hit.
Definition: SQHit.h:54
virtual void set_drift_distance(const float a)
Definition: SQHit.h:58
virtual short get_detector_id() const
Return the detector ID of this hit.
Definition: SQHit.h:42
virtual void set_in_time(const bool a)
Definition: SQHit.h:91
SQParamDeco.h.
Definition: SQParamDeco.h:16
virtual void set_variable(const std::string name, const std::string value)=0
static recoConsts * instance()
Definition: recoConsts.cc:7
virtual void set_CharFlag(const std::string &name, const std::string &flag)
overide the virtual function to expand the environmental variables
Definition: recoConsts.cc:21