Geant4 Cross Reference |
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 // G4RichTrajectoryPoint 27 // 28 // Class description: 29 // 30 // This class extends G4TrajectoryPoint. 31 // From G4Trajectory, the following information is included: 32 // 1) Position (end of step). 33 // The extended information, only publicly accessible through AttValues, 34 // includes: 35 // 2) Auxiliary points, as in G4SmoothTrajectory. 36 // 3) Total energy deposit. 37 // 4) Remaining energy. 38 // 5) Process defining end of step. 39 // 6) Global time (from start of event) at pre- amd post-step. 40 // ...and more. 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@slac.stanford.edu) 46 // Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp) 47 // and on the extended code to: 48 // John Allison (e-mail: John.Allison@manchester.ac.uk) 49 // Joseph Perl (e-mail: perl@slac.stanford.edu) 50 // -------------------------------------------------------------------- 51 #ifndef G4RICHTRAJECTORYPOINT_HH 52 #define G4RICHTRAJECTORYPOINT_HH 53 54 #include "G4StepStatus.hh" 55 #include "G4ThreeVector.hh" 56 #include "G4TouchableHandle.hh" 57 #include "G4VTrajectoryPoint.hh" 58 #include "globals.hh" // Include from 'global' 59 60 #include "trkgdefs.hh" 61 class G4ClonedRichTrajectoryPoint; 62 63 #include "trkgdefs.hh" 64 65 #include <vector> 66 67 class G4Track; 68 class G4Step; 69 class G4VProcess; 70 71 class G4RichTrajectoryPoint : public G4VTrajectoryPoint 72 { 73 74 friend class G4ClonedRichTrajectoryPoint; 75 76 public: // without description 77 // Constructors/Destructor 78 // 79 G4RichTrajectoryPoint(); 80 G4RichTrajectoryPoint(const G4Track*); // For first point. 81 G4RichTrajectoryPoint(const G4Step*); // For subsequent points. 82 G4RichTrajectoryPoint(const G4RichTrajectoryPoint& right); 83 ~G4RichTrajectoryPoint() override; 84 85 // Operators 86 // 87 G4RichTrajectoryPoint& operator=(const G4RichTrajectoryPoint&) = delete; 88 inline G4bool operator==(const G4RichTrajectoryPoint& right) const; 89 inline void* operator new(size_t); 90 inline void operator delete(void* aRichTrajectoryPoint); 91 92 // Get/Set functions 93 // 94 95 inline const G4ThreeVector GetPosition() const override { return fPosition; } 96 97 inline const std::vector<G4ThreeVector>* GetAuxiliaryPoints() const override; 98 const std::map<G4String, G4AttDef>* GetAttDefs() const override; 99 std::vector<G4AttValue>* CreateAttValues() const override; 100 101 private: 102 G4ThreeVector fPosition{0., 0., 0.}; 103 104 // Extended member data 105 // 106 std::vector<G4ThreeVector>* fpAuxiliaryPointVector = nullptr; 107 G4double fTotEDep = 0.0; 108 G4double fRemainingEnergy = 0.0; 109 const G4VProcess* fpProcess = nullptr; 110 G4StepStatus fPreStepPointStatus = fUndefined; 111 G4StepStatus fPostStepPointStatus = fUndefined; 112 G4double fPreStepPointGlobalTime = 0.0; 113 G4double fPostStepPointGlobalTime = 0.0; 114 G4TouchableHandle fpPreStepPointVolume; 115 G4TouchableHandle fpPostStepPointVolume; 116 G4double fPreStepPointWeight = 0.0; 117 G4double fPostStepPointWeight = 0.0; 118 }; 119 120 extern G4TRACKING_DLL G4Allocator<G4RichTrajectoryPoint>*& aRichTrajectoryPointAllocator(); 121 122 inline void* G4RichTrajectoryPoint::operator new(size_t) 123 { 124 if (aRichTrajectoryPointAllocator() == nullptr) { 125 aRichTrajectoryPointAllocator() = new G4Allocator<G4RichTrajectoryPoint>; 126 } 127 return (void*)aRichTrajectoryPointAllocator()->MallocSingle(); 128 } 129 130 inline void G4RichTrajectoryPoint::operator delete(void* aRichTrajectoryPoint) 131 { 132 aRichTrajectoryPointAllocator()->FreeSingle((G4RichTrajectoryPoint*)aRichTrajectoryPoint); 133 } 134 135 inline G4bool G4RichTrajectoryPoint::operator==(const G4RichTrajectoryPoint& r) const 136 { 137 return (this == &r); 138 } 139 140 inline const std::vector<G4ThreeVector>* G4RichTrajectoryPoint::GetAuxiliaryPoints() const 141 { 142 return fpAuxiliaryPointVector; 143 } 144 145 #endif 146