Loading...
Searching...
No Matches
RE01Trajectory.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/// \file runAndEvent/RE01/include/RE01Trajectory.hh
27/// \brief Definition of the RE01Trajectory class
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
47class G4Polyline;
48class G4AttDef;
49class G4AttValue;
50
51typedef std::vector<G4VTrajectoryPoint*> RE01TrajectoryPointContainer;
52
53class RE01Trajectory : public G4VTrajectory
54{
55public:
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:
83 G4int fTrackID;
84 G4int fParentID;
88 G4double fPDGCharge;
90 G4ThreeVector fMomentum;
91 G4ThreeVector fVertexPosition;
92 G4double fGlobalTime;
93
94};
95
97
98inline void* RE01Trajectory::operator new(size_t)
99{
102 return (void*)myTrajectoryAllocator->MallocSingle();
103}
104
105inline void RE01Trajectory::operator delete(void* aTrajectory)
106{
107 myTrajectoryAllocator->FreeSingle((RE01Trajectory*)aTrajectory);
108}
109
110#endif
111
std::vector< G4VTrajectoryPoint * > RE01TrajectoryPointContainer
G4ThreadLocal G4Allocator< RE01Trajectory > * myTrajectoryAllocator
virtual void MergeTrajectory(G4VTrajectory *secondTrajectory)
virtual G4String GetParticleName() const
virtual ~RE01Trajectory()
G4ThreeVector fVertexPosition
virtual G4int GetPDGEncoding() const
RE01TrajectoryPointContainer * fPositionRecord
G4ParticleDefinition * fParticleDefinition
virtual G4ThreeVector GetInitialMomentum() const
virtual void ShowTrajectory(std::ostream &os=G4cout) const
G4ThreeVector fMomentum
virtual int GetPointEntries() const
virtual std::vector< G4AttValue > * CreateAttValues() const
virtual void DrawTrajectory() const
virtual const std::map< G4String, G4AttDef > * GetAttDefs() const
virtual G4VTrajectoryPoint * GetPoint(G4int i) const
virtual void AppendStep(const G4Step *aStep)
virtual G4int GetParentID() const
G4String fParticleName
int operator==(const RE01Trajectory &right) const
virtual G4int GetTrackID() const
virtual G4double GetCharge() const

Applications | User Support | Publications | Collaboration