ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4TrajectoryPoint.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4TrajectoryPoint.hh
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 //
28 //---------------------------------------------------------------
29 //
30 // G4TrajectoryPoint.hh
31 //
32 // class description:
33 // This class represents the trajectory of a particle tracked.
34 // It includes information of
35 // 1) List of trajectory points which compose the trajectory,
36 // 2) static information of particle which generated the
37 // trajectory,
38 // 3) trackID and parent particle ID of the trajectory,
39 // 4) termination condition of the trajectory.
40 //
41 // Contact:
42 // Questions and comments to this code should be sent to
43 // Katsuya Amako (e-mail: Katsuya.Amako@kek.jp)
44 // Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
45 //
46 // ---------------------------------------------------------------
47 
48 #ifndef G4TrajectoryPoint_h
49 #define G4TrajectoryPoint_h 1
50 
51 #include "trkgdefs.hh"
52 #include "G4VTrajectoryPoint.hh"
53 #include "globals.hh" // Include from 'global'
54 #include "G4ThreeVector.hh" // Include from 'geometry'
55 #include "G4Allocator.hh" // Include from 'particle+matter'
56 
57 
61 {
62 
63 //--------
64 public: // without description
65 //--------
66 
67 // Constructor/Destructor
71  virtual ~G4TrajectoryPoint();
72 
73 // Operators
74  inline void *operator new(size_t);
75  inline void operator delete(void *aTrajectoryPoint);
76  inline G4bool operator==(const G4TrajectoryPoint& right) const
77  { return (this==&right); };
78 
79 // Get/Set functions
80  inline const G4ThreeVector GetPosition() const
81  { return fPosition; };
82 
83 // Get method for HEPRep style attributes
84  virtual const std::map<G4String,G4AttDef>* GetAttDefs() const;
85  virtual std::vector<G4AttValue>* CreateAttValues() const;
86 
87 //---------
88  private:
89 //---------
90 
91 // Member data
93 
94 };
95 
96 extern G4TRACKING_DLL
98 
99 inline void* G4TrajectoryPoint::operator new(size_t)
100 {
103  return (void *) aTrajectoryPointAllocator()->MallocSingle();
104 }
105 
106 inline void G4TrajectoryPoint::operator delete(void *aTrajectoryPoint)
107 {
108  aTrajectoryPointAllocator()->FreeSingle((G4TrajectoryPoint *) aTrajectoryPoint);
109 }
110 
111 #endif