Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4TrajectoryPoint.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: G4TrajectoryPoint.hh 69003 2013-04-15 09:25:23Z gcosmo $
28 //
29 //---------------------------------------------------------------
30 //
31 // G4TrajectoryPoint.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) termination condition 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 // Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
46 //
47 // ---------------------------------------------------------------
48 
49 #ifndef G4TrajectoryPoint_h
50 #define G4TrajectoryPoint_h 1
51 
52 #include "trkgdefs.hh"
53 #include "G4VTrajectoryPoint.hh"
54 #include "globals.hh" // Include from 'global'
55 #include "G4ThreeVector.hh" // Include from 'geometry'
56 #include "G4Allocator.hh" // Include from 'particle+matter'
57 
58 
59 ////////////////////////
61 ////////////////////////
62 {
63 
64 //--------
65 public: // without description
66 //--------
67 
68 // Constructor/Destructor
72  virtual ~G4TrajectoryPoint();
73 
74 // Operators
75  inline void *operator new(size_t);
76  inline void operator delete(void *aTrajectoryPoint);
77  inline int operator==(const G4TrajectoryPoint& right) const
78  { return (this==&right); };
79 
80 // Get/Set functions
81  inline const G4ThreeVector GetPosition() const
82  { return fPosition; };
83 
84 // Get method for HEPRep style attributes
85  virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
86  virtual std::vector<G4AttValue>* CreateAttValues() const;
87 
88 //---------
89  private:
90 //---------
91 
92 // Member data
93  G4ThreeVector fPosition;
94 
95 };
96 
99 
100 inline void* G4TrajectoryPoint::operator new(size_t)
101 {
104  return (void *) aTrajectoryPointAllocator->MallocSingle();
105 }
106 
107 inline void G4TrajectoryPoint::operator delete(void *aTrajectoryPoint)
108 {
109  aTrajectoryPointAllocator->FreeSingle((G4TrajectoryPoint *) aTrajectoryPoint);
110 }
111 
112 #endif
virtual ~G4TrajectoryPoint()
virtual std::vector< G4AttValue > * CreateAttValues() const
const G4ThreeVector GetPosition() const
#define G4ThreadLocal
Definition: tls.hh:52
#define G4TRACKING_DLL
Definition: trkgdefs.hh:48
int operator==(const G4TrajectoryPoint &right) const
G4TRACKING_DLL G4ThreadLocal G4Allocator< G4TrajectoryPoint > * aTrajectoryPointAllocator
virtual const std::map< G4String, G4AttDef > * GetAttDefs() const