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 // G4ParticleChangeForTransport class implemen << 27 // 26 // 28 // Author: Hisaya Kurashige, 10 May 1998 << 27 // $Id: G4ParticleChangeForTransport.cc,v 1.20 2010-07-21 09:30:15 gcosmo Exp $ 29 // ------------------------------------------- << 28 // GEANT4 tag $Name: geant4-09-04-patch-02 $ >> 29 // >> 30 // >> 31 // -------------------------------------------------------------- >> 32 // GEANT 4 class implementation file >> 33 // >> 34 // >> 35 // >> 36 // ------------------------------------------------------------ >> 37 // Implemented for the new scheme 10 May. 1998 H.Kurahige >> 38 // Correct tratment of fpNextTouchable 12 May. 1998 H.Kurashige >> 39 // Change to the next volume only if energy>0 19 Jan. 2004 V.Ivanchenko >> 40 // -------------------------------------------------------------- 30 41 31 #include "G4ParticleChangeForTransport.hh" 42 #include "G4ParticleChangeForTransport.hh" 32 #include "G4TouchableHandle.hh" 43 #include "G4TouchableHandle.hh" 33 #include "G4Track.hh" 44 #include "G4Track.hh" 34 #include "G4Step.hh" 45 #include "G4Step.hh" 35 #include "G4TrackFastVector.hh" 46 #include "G4TrackFastVector.hh" 36 #include "G4DynamicParticle.hh" 47 #include "G4DynamicParticle.hh" 37 48 38 // ------------------------------------------- << 49 G4ParticleChangeForTransport::G4ParticleChangeForTransport() 39 G4ParticleChangeForTransport::G4ParticleChange << 50 : G4ParticleChange(), isMomentumChanged(false), theMaterialChange(0), >> 51 theMaterialCutsCoupleChange(0), theSensitiveDetectorChange(0), >> 52 fpVectorOfAuxiliaryPointsPointer(0) >> 53 { >> 54 if (verboseLevel>2) { >> 55 G4cout << "G4ParticleChangeForTransport::G4ParticleChangeForTransport() " >> 56 << G4endl; >> 57 } >> 58 } >> 59 >> 60 G4ParticleChangeForTransport::~G4ParticleChangeForTransport() 40 { 61 { 41 // Disable flag that is enabled in G4VPartic << 62 if (verboseLevel>2) { 42 debugFlag = false; << 63 G4cout << "G4ParticleChangeForTransport::~G4ParticleChangeForTransport() " >> 64 << G4endl; >> 65 } 43 } 66 } 44 67 45 // ------------------------------------------- << 68 G4ParticleChangeForTransport:: >> 69 G4ParticleChangeForTransport(const G4ParticleChangeForTransport &r) >> 70 : G4ParticleChange(r), >> 71 fpVectorOfAuxiliaryPointsPointer(0) >> 72 { >> 73 if (verboseLevel>0) { >> 74 G4cout << "G4ParticleChangeForTransport:: copy constructor is called " >> 75 << G4endl; >> 76 } >> 77 theTouchableHandle = r.theTouchableHandle; >> 78 isMomentumChanged = r.isMomentumChanged; >> 79 theMaterialChange = r.theMaterialChange; >> 80 theMaterialCutsCoupleChange = r.theMaterialCutsCoupleChange; >> 81 theSensitiveDetectorChange = r.theSensitiveDetectorChange; >> 82 } >> 83 >> 84 // assignemnt operator >> 85 G4ParticleChangeForTransport & >> 86 G4ParticleChangeForTransport::operator=(const G4ParticleChangeForTransport &r) >> 87 { >> 88 if (verboseLevel>1) { >> 89 G4cout << "G4ParticleChangeForTransport:: assignment operator is called " >> 90 << G4endl; >> 91 } >> 92 if (this != &r) >> 93 { >> 94 theListOfSecondaries = r.theListOfSecondaries; >> 95 theSizeOftheListOfSecondaries = r.theSizeOftheListOfSecondaries; >> 96 theNumberOfSecondaries = r.theNumberOfSecondaries; >> 97 theStatusChange = r.theStatusChange; >> 98 theTouchableHandle = r.theTouchableHandle; >> 99 theMaterialChange = r.theMaterialChange; >> 100 theMaterialCutsCoupleChange = r.theMaterialCutsCoupleChange; >> 101 theSensitiveDetectorChange = r.theSensitiveDetectorChange; >> 102 theMomentumDirectionChange = r.theMomentumDirectionChange; >> 103 thePolarizationChange = r.thePolarizationChange; >> 104 thePositionChange = r.thePositionChange; >> 105 theTimeChange = r.theTimeChange; >> 106 theEnergyChange = r.theEnergyChange; >> 107 theTrueStepLength = r.theTrueStepLength; >> 108 theLocalEnergyDeposit = r.theLocalEnergyDeposit; >> 109 theSteppingControlFlag = r.theSteppingControlFlag; >> 110 } >> 111 return *this; >> 112 } >> 113 >> 114 //---------------------------------------------------------------- >> 115 // methods for updating G4Step >> 116 // >> 117 46 G4Step* G4ParticleChangeForTransport::UpdateSt 118 G4Step* G4ParticleChangeForTransport::UpdateStepForAtRest(G4Step* pStep) 47 { 119 { 48 // Update the G4Step specific attributes << 120 // Nothing happens for AtRestDoIt >> 121 if (verboseLevel>0) { >> 122 G4cout << "G4ParticleChangeForTransport::UpdateStepForAtRest() is called" >> 123 << G4endl; >> 124 G4cout << " Nothing happens for this method " << G4endl; >> 125 } >> 126 // Update the G4Step specific attributes 49 return UpdateStepInfo(pStep); 127 return UpdateStepInfo(pStep); 50 } 128 } 51 129 52 // ------------------------------------------- << 130 53 G4Step* G4ParticleChangeForTransport::UpdateSt 131 G4Step* G4ParticleChangeForTransport::UpdateStepForAlongStep(G4Step* pStep) 54 { 132 { 55 // Smooth curved tajectory representation: l 133 // Smooth curved tajectory representation: let the Step know about 56 // the auxiliary trajectory points (jacek 30 134 // the auxiliary trajectory points (jacek 30/10/2002) 57 pStep->SetPointerToVectorOfAuxiliaryPoints(f 135 pStep->SetPointerToVectorOfAuxiliaryPoints(fpVectorOfAuxiliaryPointsPointer); 58 136 59 // Most of the code assumes that transportat << 137 // copy of G4ParticleChange::UpdateStepForAlongStep 60 // so the pre- and post-step point are still << 138 // i.e. no effect for touchable >> 139 >> 140 // A physics process always calculates the final state of the >> 141 // particle relative to the initial state at the beginning >> 142 // of the Step, i.e., based on information of G4Track (or >> 143 // equivalently the PreStepPoint). >> 144 // So, the differences (delta) between these two states have to be >> 145 // calculated and be accumulated in PostStepPoint. >> 146 >> 147 // Take note that the return type of GetMomentumChange is a >> 148 // pointer to G4ThreeVector. Also it is a normalized >> 149 // momentum vector. >> 150 61 G4StepPoint* pPreStepPoint = pStep->GetPreS 151 G4StepPoint* pPreStepPoint = pStep->GetPreStepPoint(); 62 G4StepPoint* pPostStepPoint = pStep->GetPost 152 G4StepPoint* pPostStepPoint = pStep->GetPostStepPoint(); >> 153 G4Track* aTrack = pStep->GetTrack(); >> 154 G4double mass = aTrack->GetDynamicParticle()->GetMass(); >> 155 >> 156 // uodate kinetic energy >> 157 // now assume that no energy change in transportation >> 158 // However it is not true in electric fields >> 159 // Case for changing energy will be implemented in future >> 160 63 161 64 // update momentum direction and energy 162 // update momentum direction and energy 65 if(isMomentumChanged) << 163 if (isMomentumChanged) { 66 { << 164 G4double energy; 67 pPostStepPoint->SetMomentumDirection(theMo << 165 energy= pPostStepPoint->GetKineticEnergy() 68 pPostStepPoint->SetKineticEnergy(theEnergy << 166 + (theEnergyChange - pPreStepPoint->GetKineticEnergy()); >> 167 >> 168 // calculate new momentum >> 169 G4ThreeVector pMomentum = pPostStepPoint->GetMomentum() >> 170 + ( CalcMomentum(theEnergyChange, theMomentumDirectionChange, mass) >> 171 - pPreStepPoint->GetMomentum()); >> 172 G4double tMomentum = pMomentum.mag(); >> 173 G4ThreeVector direction(1.0,0.0,0.0); >> 174 if( tMomentum > 0. ){ >> 175 G4double inv_Momentum= 1.0 / tMomentum; >> 176 direction= pMomentum * inv_Momentum; >> 177 } >> 178 pPostStepPoint->SetMomentumDirection(direction); >> 179 pPostStepPoint->SetKineticEnergy( energy ); 69 } 180 } 70 if(isVelocityChanged) << 181 71 pPostStepPoint->SetVelocity(theVelocityCha << 182 // stop case should not occur >> 183 //pPostStepPoint->SetMomentumDirection(G4ThreeVector(1., 0., 0.)); >> 184 72 185 73 // update polarization 186 // update polarization 74 pPostStepPoint->SetPolarization(thePolarizat << 187 pPostStepPoint->AddPolarization( thePolarizationChange >> 188 - pPreStepPoint->GetPolarization()); 75 189 76 // update position and time 190 // update position and time 77 pPostStepPoint->SetPosition(thePositionChang << 191 pPostStepPoint->AddPosition( thePositionChange 78 pPostStepPoint->AddGlobalTime(theTimeChange << 192 - pPreStepPoint->GetPosition() ); 79 pPostStepPoint->AddLocalTime(theTimeChange - << 193 pPostStepPoint->AddGlobalTime( theTimeChange 80 pPostStepPoint->SetProperTime(theProperTimeC << 194 - pPreStepPoint->GetGlobalTime()); >> 195 pPostStepPoint->AddLocalTime( theTimeChange >> 196 - pPreStepPoint->GetGlobalTime()); >> 197 pPostStepPoint->AddProperTime( theProperTimeChange >> 198 - pPreStepPoint->GetProperTime()); 81 199 82 #ifdef G4VERBOSE 200 #ifdef G4VERBOSE 83 if(debugFlag) { CheckIt(*theCurrentTrack); } << 201 if (debugFlag) CheckIt(*aTrack); 84 #endif 202 #endif 85 203 86 // Update the G4Step specific attributes << 204 // Update the G4Step specific attributes 87 pStep->SetStepLength( theTrueStepLength ); << 205 //pStep->SetStepLength( theTrueStepLength ); 88 pStep->SetControlFlag(theSteppingControlFlag << 206 // pStep->AddTotalEnergyDeposit( theLocalEnergyDeposit ); 89 << 207 pStep->SetControlFlag( theSteppingControlFlag ); 90 return pStep; 208 return pStep; >> 209 // return UpdateStepInfo(pStep); 91 } 210 } 92 211 93 // ------------------------------------------- << 94 G4Step* G4ParticleChangeForTransport::UpdateSt 212 G4Step* G4ParticleChangeForTransport::UpdateStepForPostStep(G4Step* pStep) 95 { 213 { 96 // A physics process always calculates the f 214 // A physics process always calculates the final state of the particle 97 215 98 // Change volume only if some kinetic energy 216 // Change volume only if some kinetic energy remains 99 G4StepPoint* pPostStepPoint = pStep->GetPost 217 G4StepPoint* pPostStepPoint = pStep->GetPostStepPoint(); 100 if(pPostStepPoint->GetKineticEnergy() > 0.0) << 218 if(pPostStepPoint->GetKineticEnergy() > 0.0) { 101 { << 219 102 // update next touchable 220 // update next touchable 103 // (touchable can be changed only at PostS 221 // (touchable can be changed only at PostStepDoIt) 104 pPostStepPoint->SetTouchableHandle(theTouc << 222 pPostStepPoint->SetTouchableHandle( theTouchableHandle ); 105 223 106 pPostStepPoint->SetMaterial(theMaterialCha << 224 pPostStepPoint->SetMaterial( theMaterialChange ); 107 pPostStepPoint->SetMaterialCutsCouple(theM << 225 pPostStepPoint->SetMaterialCutsCouple( theMaterialCutsCoupleChange ); 108 pPostStepPoint->SetSensitiveDetector(theSe << 226 pPostStepPoint->SetSensitiveDetector( theSensitiveDetectorChange ); 109 } << 110 if(this->GetFirstStepInVolume()) << 111 { << 112 pStep->SetFirstStepFlag(); << 113 } << 114 else << 115 { << 116 pStep->ClearFirstStepFlag(); << 117 } 227 } 118 if(this->GetLastStepInVolume()) << 228 if( this->GetLastStepInVolume() ){ 119 { << 120 pStep->SetLastStepFlag(); 229 pStep->SetLastStepFlag(); 121 } << 230 }else{ 122 else << 231 pStep->ClearLastStepFlag(); 123 { << 124 pStep->ClearLastStepFlag(); << 125 } 232 } 126 // It used to call base class's method 233 // It used to call base class's method 127 // - but this would copy uninitialised dat 234 // - but this would copy uninitialised data members 128 // return G4ParticleChange::UpdateStepForPos 235 // return G4ParticleChange::UpdateStepForPostStep(pStep); 129 236 130 // Copying what the base class does would in 237 // Copying what the base class does would instead 131 // - also not useful 238 // - also not useful 132 // return G4VParticleChange::UpdateStepInfo( 239 // return G4VParticleChange::UpdateStepInfo(pStep); 133 240 134 return pStep; 241 return pStep; 135 } 242 } 136 243 137 // ------------------------------------------- << 244 //---------------------------------------------------------------- >> 245 // methods for printing messages >> 246 // >> 247 138 void G4ParticleChangeForTransport::DumpInfo() 248 void G4ParticleChangeForTransport::DumpInfo() const 139 { 249 { 140 // use base-class DumpInfo << 250 // use base-class DumpInfo 141 G4ParticleChange::DumpInfo(); 251 G4ParticleChange::DumpInfo(); 142 G4cout << " Touchable (pointer) : " < << 252 143 << theTouchableHandle() << G4endl; << 253 G4int oldprc = G4cout.precision(3); >> 254 G4cout << " Touchable (pointer) : " >> 255 << std::setw(20) << theTouchableHandle() << G4endl; >> 256 G4cout.precision(oldprc); 144 } 257 } 145 258