ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
RE01Trajectory.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file RE01Trajectory.hh
1 //
2 // ********************************************************************
3 // * License and Disclaimer *
4 // * *
5 // * The Geant4 software is copyright of the Copyright Holders of *
6 // * the Geant4 Collaboration. It is provided under the terms and *
7 // * conditions of the Geant4 Software License, included in the file *
8 // * LICENSE and available at http://cern.ch/geant4/license . These *
9 // * include a list of copyright holders. *
10 // * *
11 // * Neither the authors of this software system, nor their employing *
12 // * institutes,nor the agencies providing financial support for this *
13 // * work make any representation or warranty, express or implied, *
14 // * regarding this software system or assume any liability for its *
15 // * use. Please see the license in the file LICENSE and URL above *
16 // * for the full disclaimer and the limitation of liability. *
17 // * *
18 // * This code implementation is the result of the scientific and *
19 // * technical work of the GEANT4 collaboration. *
20 // * By using, copying, modifying or distributing the software (or *
21 // * any work based on the software) you agree to acknowledge its *
22 // * use in resulting scientific publications, and indicate your *
23 // * acceptance of all terms of the Geant4 Software license. *
24 // ********************************************************************
25 //
28 //
29 //
30 //
31 
32 #ifndef RE01Trajectory_h
33 #define RE01Trajectory_h 1
34 
35 #include "G4VTrajectory.hh"
36 #include "G4Allocator.hh"
37 #include <stdlib.h>
38 #include "G4ThreeVector.hh"
39 #include "G4ios.hh"
40 #include "globals.hh"
41 #include "G4ParticleDefinition.hh"
42 #include "G4TrajectoryPoint.hh"
43 #include "G4Track.hh"
44 #include "G4Step.hh"
45 #include <vector>
46 
47 class G4Polyline;
48 class G4AttDef;
49 class G4AttValue;
50 
51 typedef std::vector<G4VTrajectoryPoint*> RE01TrajectoryPointContainer;
52 
54 {
55 public:
56  RE01Trajectory(const G4Track* aTrack);
57  virtual ~RE01Trajectory();
58 
59  virtual void ShowTrajectory(std::ostream& os=G4cout) const;
60  virtual void DrawTrajectory() const;
61  virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
62  virtual std::vector<G4AttValue>* CreateAttValues() const;
63  virtual void AppendStep(const G4Step* aStep);
64  virtual void MergeTrajectory(G4VTrajectory* secondTrajectory);
65 
66  inline void* operator new(size_t);
67  inline void operator delete(void*);
68  inline int operator == (const RE01Trajectory& right) const
69  {return (this==&right);}
70 
71  virtual G4int GetTrackID() const { return fTrackID; }
72  virtual G4int GetParentID() const { return fParentID; }
73  virtual G4String GetParticleName() const { return fParticleName; }
74  virtual G4double GetCharge() const { return fPDGCharge; }
75  virtual G4int GetPDGEncoding() const { return fPDGEncoding; }
76  virtual G4ThreeVector GetInitialMomentum() const { return fMomentum; }
77  virtual int GetPointEntries() const { return fPositionRecord->size(); }
78  virtual G4VTrajectoryPoint* GetPoint(G4int i) const
79  { return (*fPositionRecord)[i]; }
80 
81  private:
93 
94 };
95 
97 
98 inline void* RE01Trajectory::operator new(size_t)
99 {
102  return (void*)myTrajectoryAllocator->MallocSingle();
103 }
104 
105 inline void RE01Trajectory::operator delete(void* aTrajectory)
106 {
107  myTrajectoryAllocator->FreeSingle((RE01Trajectory*)aTrajectory);
108 }
109 
110 #endif
111