Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
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$
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
46
47#ifndef G4SmoothTrajectory_h
48#define G4SmoothTrajectory_h 1
49
50#include "G4VTrajectory.hh"
51#include "G4Allocator.hh"
52#include <stdlib.h> // Include from 'system'
53#include "G4ios.hh" // Include from 'system'
54#include <vector> // G4RWTValOrderedVector
55#include "globals.hh" // Include from 'global'
56#include "G4ParticleDefinition.hh" // Include from 'particle+matter'
57#include "G4SmoothTrajectoryPoint.hh" // Include from 'tracking'
58#include "G4Track.hh"
59#include "G4Step.hh"
60
61class G4Polyline; // Forward declaration.
62
63typedef std::vector<G4VTrajectoryPoint*> TrajectoryPointContainer;
65{
66
67//--------
68public: // with description
69//--------
70
71// Constructor/Destrcutor
72
74
75 G4SmoothTrajectory(const G4Track* aTrack);
77 virtual ~G4SmoothTrajectory();
78
79private:
80 G4SmoothTrajectory& operator= (const G4SmoothTrajectory&);
81
82// Operators
83public:
84 inline void* operator new(size_t);
85 inline void operator delete(void*);
86 inline int operator == (const G4SmoothTrajectory& right) const
87 {return (this==&right);}
88
89// Get/Set functions
90 inline G4int GetTrackID() const
91 { return fTrackID; }
92 inline G4int GetParentID() const
93 { return fParentID; }
95 { return ParticleName; }
96 inline G4double GetCharge() const
97 { return PDGCharge; }
98 inline G4int GetPDGEncoding() const
99 { return PDGEncoding; }
101 { return initialKineticEnergy; }
103 { return initialMomentum; }
104
105// Other member functions
106 virtual void ShowTrajectory(std::ostream& os=G4cout) const;
107 //virtual void DrawTrajectory() const;
108 virtual void DrawTrajectory(G4int i_mode = 0) const;
109 virtual void AppendStep(const G4Step* aStep);
110 virtual int GetPointEntries() const { return positionRecord->size(); }
112 { return (*positionRecord)[i]; }
113 virtual void MergeTrajectory(G4VTrajectory* secondTrajectory);
114
116
117// Get method for HEPRep style attributes
118 virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
119 virtual std::vector<G4AttValue>* CreateAttValues() const;
120
121//---------
122 private:
123//---------
124
125 TrajectoryPointContainer* positionRecord;
126 G4int fTrackID;
127 G4int fParentID;
128 G4int PDGEncoding;
129 G4double PDGCharge;
130 G4String ParticleName;
131 G4double initialKineticEnergy;
132 G4ThreeVector initialMomentum;
133
134};
135
136#if defined G4TRACKING_ALLOC_EXPORT
138#else
140#endif
141
142inline void* G4SmoothTrajectory::operator new(size_t)
143{
144 void* aTrajectory;
145 aTrajectory = (void*)aSmoothTrajectoryAllocator.MallocSingle();
146 return aTrajectory;
147}
148
149inline void G4SmoothTrajectory::operator delete(void* aTrajectory)
150{
151 aSmoothTrajectoryAllocator.FreeSingle((G4SmoothTrajectory*)aTrajectory);
152}
153
154#endif
std::vector< G4VTrajectoryPoint * > TrajectoryPointContainer
G4DLLIMPORT G4Allocator< G4SmoothTrajectory > aSmoothTrajectoryAllocator
double G4double
Definition: G4Types.hh:64
#define G4DLLIMPORT
Definition: G4Types.hh:56
#define G4DLLEXPORT
Definition: G4Types.hh:55
int G4int
Definition: G4Types.hh:66
G4DLLIMPORT std::ostream G4cout
virtual int GetPointEntries() const
G4int GetPDGEncoding() const
G4String GetParticleName() const
G4int GetParentID() const
G4ThreeVector GetInitialMomentum() const
G4int GetTrackID() const
virtual G4VTrajectoryPoint * GetPoint(G4int i) const
int operator==(const G4SmoothTrajectory &right) const
G4double GetInitialKineticEnergy() const
virtual void AppendStep(const G4Step *aStep)
G4ParticleDefinition * GetParticleDefinition()
virtual void MergeTrajectory(G4VTrajectory *secondTrajectory)
virtual std::vector< G4AttValue > * CreateAttValues() const
G4double GetCharge() const
virtual const std::map< G4String, G4AttDef > * GetAttDefs() const
virtual void DrawTrajectory(G4int i_mode=0) const
virtual void ShowTrajectory(std::ostream &os=G4cout) const
Definition: G4Step.hh:78