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