CMS 3D CMS Logo

TrackWithHistory.h
Go to the documentation of this file.
1 #ifndef SimG4Core_TrackWithHistory_H
2 #define SimG4Core_TrackWithHistory_H
3 
4 #include "G4Track.hh"
7 
8 #include "G4Allocator.hh"
9 
10 class G4VProcess;
17 public:
21  TrackWithHistory(const G4Track *g4track);
23 
24  inline void *operator new(size_t);
25  inline void operator delete(void *TrackWithHistory);
26 
27  void save() { saved_ = true; }
28  unsigned int trackID() const { return trackID_; }
29  int particleID() const { return particleID_; }
30  int parentID() const { return parentID_; }
31  int genParticleID() const { return genParticleID_; }
32  const math::XYZVectorD &momentum() const { return momentum_; }
33  double totalEnergy() const { return totalEnergy_; }
34  const math::XYZVectorD &vertexPosition() const { return vertexPosition_; }
35  double globalTime() const { return globalTime_; }
36  double localTime() const { return localTime_; }
37  double properTime() const { return properTime_; }
38  const G4VProcess *creatorProcess() const { return creatorProcess_; }
39  double weight() const { return weight_; }
40  void setTrackID(int i) { trackID_ = i; }
41  void setParentID(int i) { parentID_ = i; }
43  bool storeTrack() const { return storeTrack_; }
44  bool saved() const { return saved_; }
50  void checkAtEnd(const G4Track *);
51 
52 private:
53  unsigned int trackID_;
55  int parentID_;
58  double totalEnergy_;
60  double globalTime_;
61  double localTime_;
62  double properTime_;
63  const G4VProcess *creatorProcess_;
64  double weight_;
66  bool saved_;
67  int extractGenID(const G4Track *gt) const;
68 };
69 
70 extern G4ThreadLocal G4Allocator<TrackWithHistory> *fpTrackWithHistoryAllocator;
71 
72 inline void *TrackWithHistory::operator new(size_t) {
74  fpTrackWithHistoryAllocator = new G4Allocator<TrackWithHistory>;
75  return (void *)fpTrackWithHistoryAllocator->MallocSingle();
76 }
77 
78 inline void TrackWithHistory::operator delete(void *aTwH) {
79  fpTrackWithHistoryAllocator->FreeSingle((TrackWithHistory *)aTwH);
80 }
81 
82 #endif
const G4VProcess * creatorProcess_
G4ThreadLocal G4Allocator< TrackWithHistory > * fpTrackWithHistoryAllocator
void setParentID(int i)
double properTime() const
int extractGenID(const G4Track *gt) const
math::XYZVectorD vertexPosition_
math::XYZVectorD momentum_
bool saved() const
double totalEnergy() const
void setGenParticleID(int i)
unsigned int trackID_
bool storeTrack() const
ROOT::Math::DisplacementVector3D< ROOT::Math::Cartesian3D< double > > XYZVectorD
spatial vector with cartesian internal representation
Definition: Vector3D.h:8
double localTime() const
void setTrackID(int i)
unsigned int trackID() const
void checkAtEnd(const G4Track *)
int particleID() const
int parentID() const
const G4VProcess * creatorProcess() const
double weight() const
const math::XYZVectorD & momentum() const
double globalTime() const
const math::XYZVectorD & vertexPosition() const
int genParticleID() const
TrackWithHistory(const G4Track *g4track)