Class Reference for E1039 Core & Analysis Software
SQGeomAccLoose.h
Go to the documentation of this file.
1 #ifndef _SQ_GEOM_ACC_LOOSE__H_
2 #define _SQ_GEOM_ACC_LOOSE__H_
3 #include <map>
4 #include <fun4all/SubsysReco.h>
5 class PHG4HitContainer;
6 
8 
22 class SQGeomAccLoose: public SubsysReco {
23  int m_npl_per_par; //< Min number of hit planes per particle in order to regard particle good.
24  int m_npar_per_evt; //< Min number of particles per event in order to regard event good.
25 
26  PHG4HitContainer *g4hc_h1t;
27  PHG4HitContainer *g4hc_h1b;
28  PHG4HitContainer *g4hc_h2t;
29  PHG4HitContainer *g4hc_h2b;
30  PHG4HitContainer *g4hc_h3t;
31  PHG4HitContainer *g4hc_h3b;
32  PHG4HitContainer *g4hc_h4t;
33  PHG4HitContainer *g4hc_h4b;
34 
35  public:
36  SQGeomAccLoose(const std::string& name = "SQGeomAccLoose");
37  virtual ~SQGeomAccLoose();
38  int Init(PHCompositeNode *topNode);
39  int InitRun(PHCompositeNode *topNode);
40  int process_event(PHCompositeNode *topNode);
41  int End(PHCompositeNode *topNode);
42 
43  void SetNumHitPlanesPerParticle(const int val) { m_npl_per_par = val; }
44  void SetNumParticlesPerEvent (const int val) { m_npar_per_evt = val; }
45 
46  private:
47  void ExtractParticleID(const PHG4HitContainer* g4hc, std::vector<int>& vec_par_id);
48  std::vector<int> ExtractParticleID(const PHG4HitContainer* g4hc_t, const PHG4HitContainer* g4hc_b);
49  void CountHitPlanesPerParticle(const std::vector<int> vec_id, std::map<int, int>& map_nhit);
50 };
51 
52 #endif /* _SQ_GEOM_ACC_LOOSE__H_ */
An SubsysReco module to skip a simulated event in which a muon or a muon pair doesn't pass through th...
virtual ~SQGeomAccLoose()
SQGeomAccLoose(const std::string &name="SQGeomAccLoose")
int End(PHCompositeNode *topNode)
Called at the end of all processing.
void SetNumHitPlanesPerParticle(const int val)
int InitRun(PHCompositeNode *topNode)
int process_event(PHCompositeNode *topNode)
int Init(PHCompositeNode *topNode)
void SetNumParticlesPerEvent(const int val)