Class Reference for E1039 Core & Analysis Software
MCHit.hh
Go to the documentation of this file.
1 #ifndef MCHit_h
2 #define MCHit_h 1
3 
4 // Based on ParN02 TrackerHit example
5 
6 #include <G4Circle.hh>
7 #include <G4VisAttributes.hh>
8 #include <G4Colour.hh>
9 #include <G4VVisManager.hh>
10 #include <G4VHit.hh>
11 #include <G4THitsCollection.hh>
12 #include <G4Allocator.hh>
13 #include <G4ThreeVector.hh>
14 
15 class MCHit : public G4VHit
16 {
17  public:
18 
19  MCHit();
20  ~MCHit();
21 
22  inline void* operator new(size_t);
23  inline void operator delete(void*);
24 
25  private:
26  G4int fPid;
27  G4String fName;
28  G4ThreeVector fPosition;
29  G4double fDE;
30  G4String fVolume;
31  G4ThreeVector fMomentum;
32  G4ThreeVector fVertex;
33  G4double fTime;
34  G4int fTrackID;
35  G4int fParentID;
36  G4ThreeVector fVertexMomentumDirection;
37  G4double fVertexKineticEnergy;
38 
39  public:
40 
41  inline G4int GetParticleID() const {return fPid;};
42  inline void SetParticleID(G4int particle_id) {fPid=particle_id;};
43 
44  inline G4String GetParticleName() const {return fName;};
45  inline void SetParticleName(G4String pName) {fName=pName;};
46 
47  inline G4ThreeVector GetPosition() const {return fPosition;};
48  inline void SetPosition(G4ThreeVector pos) {fPosition=pos;};
49 
50  inline G4double GetDE() const {return fDE;};
51  inline void SetDE(G4double de) {fDE=de;};
52 
53  inline G4String GetVolume() const {return fVolume;};
54  inline void SetVolume(G4String volume) {fVolume=volume;};
55 
56  inline G4ThreeVector GetMomentum() const {return fMomentum;};
57  inline void SetMomentum(G4ThreeVector p) {fMomentum=p;};
58 
59  inline G4ThreeVector GetVertex() const {return fVertex;};
60  inline void SetVertex(G4ThreeVector v0) {fVertex=v0;};
61 
62  inline G4double GetTime() const {return fTime;};
63  inline void SetTime(G4double time) {fTime=time;};
64 
65  inline G4int GetTrackID() const {return fTrackID;};
66  inline void SetTrackID(G4int tid) {fTrackID=tid;};
67 
68  inline G4int GetParentID() const {return fParentID;};
69  inline void SetParentID(G4int parentID) {fParentID=parentID;};
70 
71  inline G4ThreeVector GetVertexMomentumDirection() const {return fVertexMomentumDirection;};
72  inline void SetVertexMomentumDirection(G4ThreeVector vmd) {fVertexMomentumDirection=vmd;};
73 
74  inline G4double GetVertexKineticEnergy() const {return fVertexKineticEnergy;};
75  inline void SetVertexKineticEnergy(G4double vke) {fVertexKineticEnergy=vke;};
76 };
77 
78 // vector collection of one type of hits
79 typedef G4THitsCollection<MCHit> MCHitsCollection;
80 
81 extern G4Allocator<MCHit> MCHitAllocator;
82 
83 inline void* MCHit::operator new(size_t)
84 {
85  void* aHit;
86  aHit = (void*) MCHitAllocator.MallocSingle();
87  return aHit;
88 }
89 
90 inline void MCHit::operator delete(void* aHit)
91 {
92  MCHitAllocator.FreeSingle((MCHit*) aHit);
93 }
94 
95 #endif
G4THitsCollection< MCHit > MCHitsCollection
Definition: MCHit.hh:79
G4Allocator< MCHit > MCHitAllocator
Definition: MCHit.cc:3
Definition: MCHit.hh:16
G4int GetParentID() const
Definition: MCHit.hh:68
G4int GetTrackID() const
Definition: MCHit.hh:65
G4ThreeVector GetVertex() const
Definition: MCHit.hh:59
G4double GetDE() const
Definition: MCHit.hh:50
G4int GetParticleID() const
Definition: MCHit.hh:41
void SetDE(G4double de)
Definition: MCHit.hh:51
void SetVertexKineticEnergy(G4double vke)
Definition: MCHit.hh:75
void SetParentID(G4int parentID)
Definition: MCHit.hh:69
void SetVertex(G4ThreeVector v0)
Definition: MCHit.hh:60
G4String GetVolume() const
Definition: MCHit.hh:53
G4double GetTime() const
Definition: MCHit.hh:62
G4double GetVertexKineticEnergy() const
Definition: MCHit.hh:74
G4ThreeVector GetVertexMomentumDirection() const
Definition: MCHit.hh:71
G4ThreeVector GetPosition() const
Definition: MCHit.hh:47
MCHit()
Definition: MCHit.cc:5
void SetParticleID(G4int particle_id)
Definition: MCHit.hh:42
void SetVolume(G4String volume)
Definition: MCHit.hh:54
~MCHit()
Definition: MCHit.cc:9
void SetTime(G4double time)
Definition: MCHit.hh:63
G4ThreeVector GetMomentum() const
Definition: MCHit.hh:56
void SetVertexMomentumDirection(G4ThreeVector vmd)
Definition: MCHit.hh:72
void SetPosition(G4ThreeVector pos)
Definition: MCHit.hh:48
void SetTrackID(G4int tid)
Definition: MCHit.hh:66
void SetParticleName(G4String pName)
Definition: MCHit.hh:45
void SetMomentum(G4ThreeVector p)
Definition: MCHit.hh:57
G4String GetParticleName() const
Definition: MCHit.hh:44