Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4SmoothTrajectory.hh
Go to the documentation of this file.
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 //
26 //
27 // $Id: G4SmoothTrajectory.hh 69003 2013-04-15 09:25:23Z gcosmo $
28 //
29 //---------------------------------------------------------------
30 //
31 // G4SmoothTrajectory.hh
32 //
33 // class description:
34 // This class represents the trajectory of a particle tracked.
35 // It includes information of
36 // 1) List of trajectory points which compose the trajectory,
37 // 2) static information of particle which generated the
38 // trajectory,
39 // 3) trackID and parent particle ID of the trajectory,
40 // 4) Auxiliary points will be associated to G4SmoothTrajectoryPoint
41 // to assist drawing smoothly curved trajectory.
42 //
43 // ---------------------------------------------------------------
44 
45 class G4SmoothTrajectory;
46 
47 #ifndef G4SmoothTrajectory_h
48 #define G4SmoothTrajectory_h 1
49 
50 #include <stdlib.h> // Include from 'system'
51 #include <vector>
52 
53 #include "trkgdefs.hh"
54 #include "G4VTrajectory.hh"
55 #include "G4Allocator.hh"
56 #include "G4ios.hh" // Include from 'system'
57 #include "globals.hh" // Include from 'global'
58 #include "G4ParticleDefinition.hh" // Include from 'particle+matter'
59 #include "G4SmoothTrajectoryPoint.hh" // Include from 'tracking'
60 #include "G4Track.hh"
61 #include "G4Step.hh"
62 
63 class G4Polyline; // Forward declaration
64 
65 typedef std::vector<G4VTrajectoryPoint*> TrajectoryPointContainer;
66 
68 {
69 
70 //--------
71 public: // with description
72 //--------
73 
74 // Constructor/Destrcutor
75 
77 
78  G4SmoothTrajectory(const G4Track* aTrack);
80  virtual ~G4SmoothTrajectory();
81 
82 private:
83  G4SmoothTrajectory& operator= (const G4SmoothTrajectory&);
84 
85 // Operators
86 public:
87  inline void* operator new(size_t);
88  inline void operator delete(void*);
89  inline int operator == (const G4SmoothTrajectory& right) const
90  {return (this==&right);}
91 
92 // Get/Set functions
93  inline G4int GetTrackID() const
94  { return fTrackID; }
95  inline G4int GetParentID() const
96  { return fParentID; }
97  inline G4String GetParticleName() const
98  { return ParticleName; }
99  inline G4double GetCharge() const
100  { return PDGCharge; }
101  inline G4int GetPDGEncoding() const
102  { return PDGEncoding; }
104  { return initialKineticEnergy; }
106  { return initialMomentum; }
107 
108 // Other member functions
109  virtual void ShowTrajectory(std::ostream& os=G4cout) const;
110  virtual void DrawTrajectory() const;
111  virtual void AppendStep(const G4Step* aStep);
112  virtual int GetPointEntries() const { return positionRecord->size(); }
113  virtual G4VTrajectoryPoint* GetPoint(G4int i) const
114  { return (*positionRecord)[i]; }
115  virtual void MergeTrajectory(G4VTrajectory* secondTrajectory);
116 
118 
119 // Get method for HEPRep style attributes
120  virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
121  virtual std::vector<G4AttValue>* CreateAttValues() const;
122 
123 //---------
124  private:
125 //---------
126 
127  TrajectoryPointContainer* positionRecord;
128  G4int fTrackID;
129  G4int fParentID;
130  G4int PDGEncoding;
131  G4double PDGCharge;
132  G4String ParticleName;
133  G4double initialKineticEnergy;
134  G4ThreeVector initialMomentum;
135 
136 };
137 
140 
141 inline void* G4SmoothTrajectory::operator new(size_t)
142 {
145  return (void*)aSmoothTrajectoryAllocator->MallocSingle();
146 }
147 
148 inline void G4SmoothTrajectory::operator delete(void* aTrajectory)
149 {
150  aSmoothTrajectoryAllocator->FreeSingle((G4SmoothTrajectory*)aTrajectory);
151 }
152 
153 #endif
G4double GetCharge() const
std::vector< G4VTrajectoryPoint * > TrajectoryPointContainer
virtual void MergeTrajectory(G4VTrajectory *secondTrajectory)
G4int GetParentID() const
#define G4ThreadLocal
Definition: tls.hh:52
virtual const std::map< G4String, G4AttDef > * GetAttDefs() const
int G4int
Definition: G4Types.hh:78
int operator==(const G4SmoothTrajectory &right) const
G4GLOB_DLL std::ostream G4cout
virtual int GetPointEntries() const
virtual void AppendStep(const G4Step *aStep)
G4int GetTrackID() const
#define G4TRACKING_DLL
Definition: trkgdefs.hh:48
G4ThreeVector GetInitialMomentum() const
Definition: G4Step.hh:76
virtual void DrawTrajectory() const
virtual void ShowTrajectory(std::ostream &os=G4cout) const
std::vector< G4VTrajectoryPoint * > TrajectoryPointContainer
virtual std::vector< G4AttValue > * CreateAttValues() const
G4ParticleDefinition * GetParticleDefinition()
virtual G4VTrajectoryPoint * GetPoint(G4int i) const
G4TRACKING_DLL G4ThreadLocal G4Allocator< G4SmoothTrajectory > * aSmoothTrajectoryAllocator
double G4double
Definition: G4Types.hh:76
G4double GetInitialKineticEnergy() const
G4int GetPDGEncoding() const
G4String GetParticleName() const