Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4ParticleChangeForDecay << 27 // 26 // 28 // Class description: << 27 // $Id: G4ParticleChangeForDecay.hh,v 1.10 2010-07-21 09:30:15 gcosmo Exp $ >> 28 // GEANT4 tag $Name: not supported by cvs2svn $ >> 29 29 // 30 // 30 // Concrete class for ParticleChange which has << 31 // >> 32 // ------------------------------------------------------------ >> 33 // GEANT 4 class header file 31 // 34 // 32 // This class contains the results after invoc << 35 // 33 // This includes secondary particles generated << 36 // ------------------------------------------------------------ 34 << 37 // Implemented for the new scheme 23 Mar. 1998 H.Kurahige 35 // Author: Hisaya Kurashige, 23 March 1998 << 38 // 36 // ------------------------------------------- << 39 // Class Description 37 #ifndef G4ParticleChangeForDecay_hh << 40 // This class is a concrete class for ParticleChange which 38 #define G4ParticleChangeForDecay_hh 1 << 41 // has functionality for G4Decay. >> 42 // >> 43 // This class contains the results after invocation of the decay process. >> 44 // This includes secondary particles generated by the interaction. >> 45 // ------------------------------------------------------------ >> 46 #ifndef G4ParticleChangeForDecay_h >> 47 #define G4ParticleChangeForDecay_h 1 39 48 40 #include "globals.hh" 49 #include "globals.hh" 41 #include "G4ios.hh" 50 #include "G4ios.hh" 42 #include "G4ThreeVector.hh" 51 #include "G4ThreeVector.hh" 43 #include "G4VParticleChange.hh" << 44 << 45 class G4DynamicParticle; 52 class G4DynamicParticle; >> 53 #include "G4VParticleChange.hh" 46 54 47 class G4ParticleChangeForDecay final : public << 55 class G4ParticleChangeForDecay: public G4VParticleChange 48 { 56 { 49 public: << 57 public: 50 << 58 // default constructor 51 G4ParticleChangeForDecay(); 59 G4ParticleChangeForDecay(); 52 60 53 ~G4ParticleChangeForDecay() override = def << 61 // destructor 54 << 62 virtual ~G4ParticleChangeForDecay(); 55 G4ParticleChangeForDecay(const G4ParticleC << 56 G4ParticleChangeForDecay& operator=(const << 57 << 58 // --- the following methods are for updatin << 59 // Return the pointer to the G4Step after up << 60 // by using final state information of the t << 61 // !!! No effect for AlongSteyp << 62 << 63 G4Step* UpdateStepForAtRest(G4Step* Step) << 64 G4Step* UpdateStepForPostStep(G4Step* Step << 65 << 66 void Initialize(const G4Track&) final; << 67 // Initialize all properties by using G4 << 68 << 69 void ProposeGlobalTime(G4double t); << 70 void ProposeLocalTime(G4double t); << 71 // Get/Propose the final global/local ti << 72 // NOTE: DO NOT INVOKE both methods in a << 73 // Each method affects both local << 74 << 75 G4double GetGlobalTime(G4double timeDelay << 76 G4double GetLocalTime(G4double timeDelay = << 77 // Convert the time delay to the glocbal << 78 // Can get the final global/local time << 79 << 80 const G4ThreeVector* GetPolarization() con << 81 void ProposePolarization(G4double Px, G4do << 82 void ProposePolarization(const G4ThreeVect << 83 // Get/Propose the final Polarization ve << 84 63 85 // --- Dump and debug methods --- << 64 protected: >> 65 // hide copy constructor and assignment operaor as protected >> 66 G4ParticleChangeForDecay(const G4ParticleChangeForDecay &right); >> 67 G4ParticleChangeForDecay & operator=(const G4ParticleChangeForDecay &right); 86 68 87 void DumpInfo() const final; << 69 public: >> 70 // equal/unequal operator >> 71 G4bool operator==(const G4ParticleChangeForDecay &right) const; >> 72 G4bool operator!=(const G4ParticleChangeForDecay &right) const; >> 73 >> 74 public: // with description >> 75 // ---------------------------------------------------- >> 76 // --- the following methods are for updating G4Step ----- >> 77 // Return the pointer to the G4Step after updating the Step information >> 78 // by using final state information of the track given by a physics >> 79 // process >> 80 >> 81 // !!! No effect for AlongSteyp >> 82 // virtual G4Step* UpdateStepForAlongStep(G4Step* Step); >> 83 >> 84 virtual G4Step* UpdateStepForAtRest(G4Step* Step); >> 85 virtual G4Step* UpdateStepForPostStep(G4Step* Step); >> 86 >> 87 virtual void Initialize(const G4Track&); >> 88 // Initialize all propoerties by using G4Track information >> 89 >> 90 G4double GetGlobalTime() const; >> 91 void ProposeGlobalTime(G4double t); >> 92 // Get/Propose the final GlobalTime 88 93 89 G4bool CheckIt(const G4Track&) final; << 94 G4double GetGlobalTime(G4double timeDelay) const; >> 95 // Convert the time delay to the global time. 90 96 91 private: << 97 const G4ThreeVector* GetPolarization() const; >> 98 void ProposePolarization(G4double Px, G4double Py, G4double Pz); >> 99 void ProposePolarization(const G4ThreeVector& finalPoralization); >> 100 // Get/Propose the final Polarization vector. 92 101 93 G4double theGlobalTime0 = 0.0; << 102 public: 94 // The global time at Initial << 103 virtual void DumpInfo() const; 95 G4double theLocalTime0 = 0.0; << 96 // The local time at Initial << 97 104 98 G4double theTimeChange = 0.0; << 105 protected: 99 // The change of local time of a given p << 106 G4double theTimeChange; >> 107 // The change of global time of a given particle. 100 108 101 G4ThreeVector thePolarizationChange; 109 G4ThreeVector thePolarizationChange; 102 // The changed (final) polarization of a << 110 // The changed (final) polarization of a given track >> 111 >> 112 public: >> 113 // for Debug >> 114 virtual G4bool CheckIt(const G4Track&); 103 }; 115 }; 104 116 105 // ---------------------- << 117 inline 106 // Inline methods << 118 G4double G4ParticleChangeForDecay::GetGlobalTime() const 107 // ---------------------- << 108 << 109 inline << 110 void G4ParticleChangeForDecay::ProposeGlobalTi << 111 { 119 { 112 theTimeChange = (t - theGlobalTime0) + theLo << 120 return theTimeChange; 113 } 121 } 114 122 115 inline << 123 inline 116 G4double G4ParticleChangeForDecay::GetGlobalTi << 124 void G4ParticleChangeForDecay::ProposeGlobalTime(G4double t) 117 { << 118 // Convert the time delay to the global tim << 119 return theGlobalTime0 + (theTimeChange - the << 120 } << 121 << 122 inline << 123 void G4ParticleChangeForDecay::ProposeLocalTim << 124 { 125 { 125 theTimeChange = t; 126 theTimeChange = t; 126 } 127 } 127 << 128 128 inline 129 inline 129 G4double G4ParticleChangeForDecay::GetLocalTim << 130 G4double G4ParticleChangeForDecay::GetGlobalTime(G4double timeDelay) const 130 { 131 { 131 // Convert the time delay to the local time << 132 // Convert the time delay to the global time. 132 return theTimeChange + timeDelay; 133 return theTimeChange + timeDelay; 133 } 134 } 134 135 135 inline 136 inline 136 const G4ThreeVector* G4ParticleChangeForDecay: << 137 const G4ThreeVector* G4ParticleChangeForDecay::GetPolarization() const 137 { 138 { 138 return &thePolarizationChange; 139 return &thePolarizationChange; 139 } 140 } 140 141 141 inline 142 inline 142 void G4ParticleChangeForDecay::ProposePolariza << 143 void G4ParticleChangeForDecay::ProposePolarization(const G4ThreeVector& finalPoralization) 143 const G4ThreeVector& finalPoralization) << 144 { 144 { 145 thePolarizationChange = finalPoralization; 145 thePolarizationChange = finalPoralization; 146 } 146 } 147 147 148 inline 148 inline 149 void G4ParticleChangeForDecay::ProposePolariza << 149 void G4ParticleChangeForDecay::ProposePolarization( 150 << 150 G4double Px, 151 << 151 G4double Py, >> 152 G4double Pz ) 152 { 153 { 153 thePolarizationChange.setX(Px); 154 thePolarizationChange.setX(Px); 154 thePolarizationChange.setY(Py); 155 thePolarizationChange.setY(Py); 155 thePolarizationChange.setZ(Pz); 156 thePolarizationChange.setZ(Pz); 156 } 157 } 157 158 158 #endif 159 #endif 159 160