Class Reference for E1039 Core & Analysis Software
SQGeomAcc.h
Go to the documentation of this file.
1 #ifndef _SQ_GEOM_ACC__H_
2 #define _SQ_GEOM_ACC__H_
3 #include <map>
4 #include <fun4all/SubsysReco.h>
5 class SQHitVector;
6 
8 
31 class SQGeomAcc: public SubsysReco {
32  public:
33  typedef enum {
35  SINGLE, //< Require one muon at either top or bottom half
36  SINGLE_T, //< Require one muon at top half
37  SINGLE_B, //< Require one muon at bottom half
38  PAIR, //< Require two muons at any halves
39  PAIR_TBBT, //< Require two muons at T+B or B+T halves
40  PAIR_TTBB, //< Require two muons at T+T or B+B halves
41  } MuonMode_t;
42  typedef enum {
44  HODO, //< Use the hodoscope acceptance
45  CHAM, //< Use the chamber acceptance
46  HODO_CHAM, //< Use the hodoscope+chamber acceptance
47  } PlaneMode_t;
48 
49  private:
50  MuonMode_t m_mode_muon;
51  PlaneMode_t m_mode_plane;
52  unsigned int m_n_ele_h1_ex; //< N of H1T/B elements excluded
53  SQHitVector* m_vec_hit;
54 
55  public:
56  SQGeomAcc(const std::string& name = "SQGeomAcc");
57  virtual ~SQGeomAcc();
58  int Init(PHCompositeNode *topNode);
59  int InitRun(PHCompositeNode *topNode);
60  int process_event(PHCompositeNode *topNode);
61  int End(PHCompositeNode *topNode);
62 
63  void SetMuonMode (MuonMode_t mode) { m_mode_muon = mode; }
64  void SetPlaneMode(PlaneMode_t mode) { m_mode_plane = mode; }
65  void SetNumOfH1EdgeElementsExcluded(const unsigned int num) { m_n_ele_h1_ex = num; }
66 
67  private:
68  int GetDetId(const std::string& det_name);
69  bool FindDetIdSet(const std::vector<int>& vec_det_id_all, const std::vector<int>& vec_det_id_want);
70 };
71 
72 #endif /* _SQ_GEOM_ACC__H_ */
An SubsysReco module to skip a simulated event in which a muon or a muon pair doesn't pass through th...
Definition: SQGeomAcc.h:31
int Init(PHCompositeNode *topNode)
Definition: SQGeomAcc.cc:27
SQGeomAcc(const std::string &name="SQGeomAcc")
Definition: SQGeomAcc.cc:12
int process_event(PHCompositeNode *topNode)
Definition: SQGeomAcc.cc:50
@ PAIR_TBBT
Definition: SQGeomAcc.h:39
@ UNDEF_MUON
Definition: SQGeomAcc.h:34
@ SINGLE_B
Definition: SQGeomAcc.h:37
@ SINGLE_T
Definition: SQGeomAcc.h:36
@ PAIR_TTBB
Definition: SQGeomAcc.h:40
@ UNDEF_PLANE
Definition: SQGeomAcc.h:43
@ HODO_CHAM
Definition: SQGeomAcc.h:46
void SetPlaneMode(PlaneMode_t mode)
Definition: SQGeomAcc.h:64
virtual ~SQGeomAcc()
Definition: SQGeomAcc.cc:22
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: SQGeomAcc.cc:105
int InitRun(PHCompositeNode *topNode)
Definition: SQGeomAcc.cc:40
void SetMuonMode(MuonMode_t mode)
Definition: SQGeomAcc.h:63
void SetNumOfH1EdgeElementsExcluded(const unsigned int num)
Definition: SQGeomAcc.h:65
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32