| [827] | 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 | //
|
|---|
| [1196] | 27 | // $Id: G4Trajectory.hh,v 1.25 2009/11/12 09:09:56 allison Exp $
|
|---|
| 28 | // GEANT4 tag $Name: geant4-09-03-cand-01 $
|
|---|
| [827] | 29 | //
|
|---|
| 30 | //---------------------------------------------------------------
|
|---|
| 31 | //
|
|---|
| 32 | // G4Trajectory.hh
|
|---|
| 33 | //
|
|---|
| 34 | // class description:
|
|---|
| 35 | // This class represents the trajectory of a particle tracked.
|
|---|
| 36 | // It includes information of
|
|---|
| 37 | // 1) List of trajectory points which compose the trajectory,
|
|---|
| 38 | // 2) static information of particle which generated the
|
|---|
| 39 | // trajectory,
|
|---|
| 40 | // 3) trackID and parent particle ID of the trajectory,
|
|---|
| 41 | //
|
|---|
| 42 | // Contact:
|
|---|
| 43 | // Questions and comments to this code should be sent to
|
|---|
| 44 | // Katsuya Amako (e-mail: Katsuya.Amako@kek.jp)
|
|---|
| 45 | // Makoto Asai (e-mail: asai@kekvax.kek.jp)
|
|---|
| 46 | // Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
|
|---|
| 47 | //
|
|---|
| 48 | // ---------------------------------------------------------------
|
|---|
| 49 |
|
|---|
| 50 | class G4Trajectory;
|
|---|
| 51 |
|
|---|
| 52 | #ifndef G4Trajectory_h
|
|---|
| 53 | #define G4Trajectory_h 1
|
|---|
| 54 |
|
|---|
| 55 | #include "G4VTrajectory.hh"
|
|---|
| 56 | #include "G4Allocator.hh"
|
|---|
| 57 | #include <stdlib.h> // Include from 'system'
|
|---|
| 58 | #include "G4ios.hh" // Include from 'system'
|
|---|
| 59 | #include <vector> // G4RWTValOrderedVector
|
|---|
| 60 | #include "globals.hh" // Include from 'global'
|
|---|
| 61 | #include "G4ParticleDefinition.hh" // Include from 'particle+matter'
|
|---|
| 62 | #include "G4TrajectoryPoint.hh" // Include from 'tracking'
|
|---|
| 63 | #include "G4Track.hh"
|
|---|
| 64 | #include "G4Step.hh"
|
|---|
| 65 |
|
|---|
| 66 | class G4Polyline; // Forward declaration.
|
|---|
| 67 |
|
|---|
| 68 | typedef std::vector<G4VTrajectoryPoint*> TrajectoryPointContainer;
|
|---|
| 69 | ///////////////////
|
|---|
| 70 | class G4Trajectory : public G4VTrajectory
|
|---|
| 71 | ///////////////////
|
|---|
| 72 | {
|
|---|
| 73 |
|
|---|
| 74 | //--------
|
|---|
| 75 | public: // with description
|
|---|
| 76 | //--------
|
|---|
| 77 |
|
|---|
| 78 | // Constructor/Destrcutor
|
|---|
| 79 |
|
|---|
| 80 | G4Trajectory();
|
|---|
| 81 |
|
|---|
| 82 | G4Trajectory(const G4Track* aTrack);
|
|---|
| 83 | G4Trajectory(G4Trajectory &);
|
|---|
| 84 | virtual ~G4Trajectory();
|
|---|
| 85 |
|
|---|
| 86 | // Operators
|
|---|
| 87 | inline void* operator new(size_t);
|
|---|
| 88 | inline void operator delete(void*);
|
|---|
| 89 | inline int operator == (const G4Trajectory& 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; }
|
|---|
| [1196] | 103 | inline G4double GetInitialKineticEnergy() const
|
|---|
| 104 | { return initialKineticEnergy; }
|
|---|
| [827] | 105 | inline G4ThreeVector GetInitialMomentum() const
|
|---|
| 106 | { return initialMomentum; }
|
|---|
| 107 |
|
|---|
| 108 | // Other member functions
|
|---|
| 109 | virtual void ShowTrajectory(std::ostream& os=G4cout) const;
|
|---|
| 110 | virtual void DrawTrajectory(G4int i_mode=0) 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 |
|
|---|
| 117 | G4ParticleDefinition* GetParticleDefinition();
|
|---|
| 118 |
|
|---|
| 119 | virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
|
|---|
| 120 | virtual std::vector<G4AttValue>* CreateAttValues() const;
|
|---|
| 121 |
|
|---|
| 122 | //---------
|
|---|
| 123 | private:
|
|---|
| 124 | //---------
|
|---|
| 125 |
|
|---|
| 126 | TrajectoryPointContainer* positionRecord;
|
|---|
| 127 | G4int fTrackID;
|
|---|
| 128 | G4int fParentID;
|
|---|
| 129 | G4int PDGEncoding;
|
|---|
| 130 | G4double PDGCharge;
|
|---|
| 131 | G4String ParticleName;
|
|---|
| [1196] | 132 | G4double initialKineticEnergy;
|
|---|
| [827] | 133 | G4ThreeVector initialMomentum;
|
|---|
| 134 |
|
|---|
| 135 | };
|
|---|
| 136 |
|
|---|
| 137 | #if defined G4TRACKING_ALLOC_EXPORT
|
|---|
| 138 | extern G4DLLEXPORT G4Allocator<G4Trajectory> aTrajectoryAllocator;
|
|---|
| 139 | #else
|
|---|
| 140 | extern G4DLLIMPORT G4Allocator<G4Trajectory> aTrajectoryAllocator;
|
|---|
| 141 | #endif
|
|---|
| 142 |
|
|---|
| 143 | inline void* G4Trajectory::operator new(size_t)
|
|---|
| 144 | {
|
|---|
| 145 | void* aTrajectory;
|
|---|
| 146 | aTrajectory = (void*)aTrajectoryAllocator.MallocSingle();
|
|---|
| 147 | return aTrajectory;
|
|---|
| 148 | }
|
|---|
| 149 |
|
|---|
| 150 | inline void G4Trajectory::operator delete(void* aTrajectory)
|
|---|
| 151 | {
|
|---|
| 152 | aTrajectoryAllocator.FreeSingle((G4Trajectory*)aTrajectory);
|
|---|
| 153 | }
|
|---|
| 154 |
|
|---|
| 155 | #endif
|
|---|
| 156 |
|
|---|
| 157 |
|
|---|
| 158 |
|
|---|
| 159 |
|
|---|
| 160 |
|
|---|
| 161 |
|
|---|
| 162 |
|
|---|
| 163 |
|
|---|
| 164 |
|
|---|
| 165 |
|
|---|