Class Reference for E1039 Core & Analysis Software
CalibHitElementPos.h
Go to the documentation of this file.
1 #ifndef __CALIB_HIT_ELEMENT_POS_H__
2 #define __CALIB_HIT_ELEMENT_POS_H__
3 #include <fun4all/SubsysReco.h>
4 class SQHitVector;
5 
8  bool m_cal_hit;
9  bool m_cal_tr_hit;
10  SQHitVector* m_vec_hit;
11  SQHitVector* m_vec_trhit;
12 
13  public:
14  CalibHitElementPos(const std::string &name = "CalibHitElementPos");
15  virtual ~CalibHitElementPos();
16  int Init(PHCompositeNode *topNode);
17  int InitRun(PHCompositeNode *topNode);
18  int process_event(PHCompositeNode *topNode);
19  int End(PHCompositeNode *topNode);
20 
21  void CalibHit (const bool cal) { m_cal_hit = cal; }
22  void CalibTriggerHit(const bool cal) { m_cal_tr_hit = cal; }
23 };
24 
25 #endif // __CALIB_HIT_ELEMENT_POS_H__
SubsysReco module to set the position of SQHit using GeomSvc.
int process_event(PHCompositeNode *topNode)
void CalibTriggerHit(const bool cal)
CalibHitElementPos(const std::string &name="CalibHitElementPos")
void CalibHit(const bool cal)
int Init(PHCompositeNode *topNode)
int InitRun(PHCompositeNode *topNode)
int End(PHCompositeNode *topNode)
Called at the end of all processing.
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32