Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4RayTrajectory.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: G4RayTrajectory.hh 71495 2013-06-17 09:13:30Z gcosmo $
28 //
29 //
30 
31 // class description:
32 //
33 // This is a concrete class of G4VTrajectory which represents a trajectory of a ray.
34 // This class is used by G4RayTracer. Objects of this class are created by G4RTTrackingAction.
35 // This class does not have concrete implementations of draw and print methods but
36 // information stored in this class is used by determining a colour of a pixel of the picture.
37 //
38 
39 ///////////////////
40 //G4RayTrajectory.hh
41 ///////////////////
42 
43 #ifndef G4RayTrajectory_h
44 #define G4RayTrajectory_h 1
45 
46 class G4Step;
47 
48 #include "G4VTrajectory.hh"
49 #include "G4Allocator.hh"
50 #include <stdlib.h>
51 #include <vector>
52 #include "globals.hh"
53 #include "G4Track.hh"
54 #include "G4RayTrajectoryPoint.hh"
55 
56 
58 {
59  public:
60 
61  G4RayTrajectory();
63  virtual ~G4RayTrajectory();
64 
65  private:
66 
67  G4RayTrajectory& operator= (const G4RayTrajectory&);
68 
69  public:
70 
71  inline void* operator new(size_t);
72  inline void operator delete(void*);
73  // inline int operator == (const G4RayTrajectory& right){return (this==&right);}
74 
75  virtual void AppendStep(const G4Step*);
76  virtual void ShowTrajectory(std::ostream&) const;
77  virtual void DrawTrajectory() const {;}
78  virtual int GetPointEntries() const {return positionRecord->size();}
79  virtual G4VTrajectoryPoint* GetPoint(G4int i) const
80  { return (*positionRecord)[i]; }
82  { return (*positionRecord)[i]; }
83  virtual void MergeTrajectory(G4VTrajectory* secondTrajectory);
84 
85 // Get/Set functions to satisfy pure virtual functions of base class.
86  inline G4int GetTrackID() const { return 0; }
87  inline G4int GetParentID() const { return 0; }
88  inline G4String GetParticleName() const { return ""; }
89  inline G4double GetCharge() const { return 0.; }
90  inline G4int GetPDGEncoding() const { return 0; }
91  inline G4ThreeVector GetInitialMomentum() const { return G4ThreeVector(); }
92 
93  private:
94 
95  std::vector<G4RayTrajectoryPoint*>* positionRecord;
96 };
97 
98 #if defined G4VIS_ALLOC_EXPORT
100 #else
102 #endif
103 
104 inline void* G4RayTrajectory::operator new(size_t)
105 {
108  return (void*)rayTrajectoryAllocator->MallocSingle();
109 }
110 
111 inline void G4RayTrajectory::operator delete(void* aTrajectory)
112 {
113  rayTrajectoryAllocator->FreeSingle((G4RayTrajectory*)aTrajectory);
114 }
115 
116 
117 #endif
118 
G4DLLIMPORT G4ThreadLocal G4Allocator< G4RayTrajectory > * rayTrajectoryAllocator
G4int GetPDGEncoding() const
#define G4DLLEXPORT
Definition: G4Types.hh:62
CLHEP::Hep3Vector G4ThreeVector
#define G4DLLIMPORT
Definition: G4Types.hh:63
G4String GetParticleName() const
G4int GetParentID() const
#define G4ThreadLocal
Definition: tls.hh:52
int G4int
Definition: G4Types.hh:78
virtual int GetPointEntries() const
G4int GetTrackID() const
virtual ~G4RayTrajectory()
G4double GetCharge() const
Definition: G4Step.hh:76
virtual void MergeTrajectory(G4VTrajectory *secondTrajectory)
G4RayTrajectoryPoint * GetPointC(G4int i) const
G4ThreeVector GetInitialMomentum() const
virtual void DrawTrajectory() const
virtual void AppendStep(const G4Step *)
double G4double
Definition: G4Types.hh:76
virtual G4VTrajectoryPoint * GetPoint(G4int i) const
virtual void ShowTrajectory(std::ostream &) const