Class Reference for E1039 Core & Analysis Software
AnaSimHit.h
Go to the documentation of this file.
1 #ifndef _ANA_SIM_HIT__H_
2 #define _ANA_SIM_HIT__H_
3 #include <map>
4 #include <TVector3.h>
5 #include <TLorentzVector.h>
6 #include <fun4all/SubsysReco.h>
8 class PHG4Particle;
9 class SQEvent;
10 class SQMCEvent;
11 class SQHitVector;
12 
14 class AnaSimHit: public SubsysReco {
16  SQEvent* m_evt;
17  SQMCEvent* m_evt_true;
18  SQHitVector* m_hit_vec;
19  PHG4TruthInfoContainer* m_g4true;
20 
21  public:
22  AnaSimHit();
23  virtual ~AnaSimHit() {;}
24  int Init(PHCompositeNode *topNode);
25  int InitRun(PHCompositeNode *topNode);
26  int process_event(PHCompositeNode *topNode);
27  int End(PHCompositeNode *topNode);
28 
29  private:
30  int GetParticleID(const int track_id);
31  void PrintHits(const std::string name, SQHitVector* hv, std::ostream& os=std::cout);
32  void CountHits(SQHitVector* hv, int& n_pri, int& n_sec);
33 };
34 
35 #endif // _ANA_SIM_HIT__H_
A SubsysReco module to look into simulated hits.
Definition: AnaSimHit.h:14
virtual ~AnaSimHit()
Definition: AnaSimHit.h:23
int process_event(PHCompositeNode *topNode)
Definition: AnaSimHit.cc:38
int InitRun(PHCompositeNode *topNode)
Definition: AnaSimHit.cc:29
int Init(PHCompositeNode *topNode)
Definition: AnaSimHit.cc:24
int End(PHCompositeNode *topNode)
Called at the end of all processing.
Definition: AnaSimHit.cc:83
An SQ interface class to hold one event header.
Definition: SQEvent.h:17
An SQ interface class to hold a list of SQHit objects.
Definition: SQHitVector.h:32
An SQ interface class to hold one simulated-event header.
Definition: SQMCEvent.h:12