// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: muEnergyLossTest.cc,v 1.7 2006/06/29 19:49:56 gunter Exp $ // GEANT4 tag $Name: geant4-09-04-beta-cand-01 $ // //----------------------------------------------------------------- // new testprogram for testing the mu processes: // G4MuEnergyLoss // G4MuIonisation // G4MuBremstrahlung // G4MuPairProduction // G4MuNuclearInteraction //----------------------------------------------------------------- // created by L. Urban , May 1998 //--------------------------------------------------------------- #include "G4ios.hh" #include #include #include "globals.hh" #include "G4Timer.hh" #include "G4MuEnergyLoss.hh" #include "G4MuIonisation.hh" #include "G4MuBremsstrahlung.hh" #include "G4MuPairProduction.hh" #include "G4MuNuclearInteraction.hh" #include "G4DynamicParticle.hh" #include "G4Element.hh" #include "G4Material.hh" #include "G4PVPlacement.hh" #include "G4LogicalVolume.hh" #include "G4GRSVolume.hh" #include "G4Box.hh" #include "G4ProcessManager.hh" #include "G4Step.hh" #include "G4StepPoint.hh" #include "G4Track.hh" #include "G4Gamma.hh" #include "G4Electron.hh" #include "G4Positron.hh" #include "G4MuonPlus.hh" #include "G4MuonMinus.hh" #include "G4GPILSelection.hh" G4VPhysicalVolume* BuildVolume(G4Material* matworld) // it builds a simple box filled with material matword ....... { G4Box *myWorldBox= new G4Box ("WBox",10000.*cm,10000.*cm,10000.*cm); G4LogicalVolume *myWorldLog = new G4LogicalVolume(myWorldBox,matworld, "WLog",0,0,0) ; G4PVPlacement *myWorldPhys = new G4PVPlacement(0,G4ThreeVector(), "WPhys", myWorldLog, 0,false,0) ; return myWorldPhys ; } int main() { //-------- set output format------- G4cout.setf( std::ios::scientific, std::ios::floatfield ); G4int nrandom; G4double ran ; G4cout << "Give the number of random numbers you want to Generate at start!" << G4endl; G4cin >> nrandom ; if( nrandom>0) { for (G4int ir=0; irAddElement(elN, .7); Air->AddElement(elO, .3); G4Material* H2O = new G4Material ("Water" , 1.*g/cm3, 2); H2O->AddElement(elH,2); H2O->AddElement(elO,1); a = 55.85*g/mole; density = 7.87*g/cm3; G4Material* Fe = new G4Material(name="Iron", z=26., a, density); a = 196.97*g/mole; density = 19.32*g/cm3; G4Material* Au = new G4Material(name="Gold", z=79., a, density); a = 207.19*g/mole; density = 11.35*g/cm3; G4Material* Pb = new G4Material(name="Lead", z=82., a, density); a = 238.03*g/mole; density = 18.95*g/cm3; G4Material* U = new G4Material(name="Uranium", z=92., a, density); //VacuumOnEarth (air with a very low density , like in the beam pipe of an accelerator) density = 1.0e-10*g/cm3; G4Material* VacuumOnEarth = new G4Material(name="VacuumOnEarth", density, nel=2); VacuumOnEarth->AddElement(elN, .7); VacuumOnEarth->AddElement(elO, .3); //VacuumInSpace (H , density is extremely small) a = 1.01*g/mole; density = 1.0e-50*g/cm3; G4Material* VacuumInSpace = new G4Material(name="VacuumInSpace", z=1., a, density) ; const G4MaterialTable* theMaterialTable ; G4Material* apttoMaterial ; G4String MaterialName ; G4Timer theTimer ; G4double mloss,sloss,dEdxdelta,dEdxbrems ; //--------- Particle definition --------- G4ParticleDefinition* theGamma = G4Gamma::GammaDefinition(); G4ParticleDefinition* theElectron = G4Electron::ElectronDefinition(); G4ParticleDefinition* thePositron = G4Positron::PositronDefinition(); G4ParticleDefinition* theMuonPlus = G4MuonPlus::MuonPlusDefinition(); G4ParticleDefinition* theMuonMinus = G4MuonMinus::MuonMinusDefinition(); G4ParticleDefinition* thePionZero = G4PionZero::PionZeroDefinition(); G4double* GammaKineticEnergyCuts ; G4double* ElectronKineticEnergyCuts ; G4double* PositronKineticEnergyCuts ; G4double* ParticleKineticEnergyCuts ; theMaterialTable = G4Material::GetMaterialTable() ; G4double cutinrange,CutInRangeele,CutInRangepos ; G4ParticleDefinition* theParticle ; G4GPILSelection selection; G4double energy, momentum, mass; G4ProcessVector* palongget ; G4ProcessVector* palongdo ; G4ProcessVector* ppostget ; G4ProcessVector* ppostdo ; G4String confirm ; G4cout << " Do you want the mu+ as particle (yes/no)? " << std::flush; G4cin >> confirm ; if(confirm == "yes") { mass=theMuonPlus->GetPDGMass(); theParticle = theMuonPlus; } else { G4cout << " Do you want the mu- as particle (yes/no)? " << std::flush; G4cin >> confirm ; if(confirm == "yes") { mass=theMuonMinus->GetPDGMass(); theParticle = theMuonMinus; } } energy = 1.*GeV + mass ; momentum=std::sqrt(energy*energy-mass*mass) ; G4ParticleMomentum theMomentum(momentum,0.,0.); G4double pModule = theMomentum.mag(); G4DynamicParticle aParticle(theParticle,energy,theMomentum); aParticle.SetKineticEnergy(energy-mass); G4MuIonisation theParticleIonisation ; G4ProcessManager* theParticleProcessManager = theParticle->GetProcessManager(); theParticleProcessManager->AddProcess(&theParticleIonisation,-1,0,0) ; G4MuBremsstrahlung theParticleBremsstrahlung ; theParticleProcessManager->AddProcess(&theParticleBremsstrahlung,-1,-1,1) ; G4MuPairProduction theParticlePairProduction ; theParticleProcessManager->AddProcess(&theParticlePairProduction,-1,-1,2) ; G4MuNuclearInteraction theParticleNuclearInteraction ; theParticleProcessManager->AddProcess(&theParticleNuclearInteraction,-1,-1,3) ; G4ForceCondition cond ; G4ForceCondition* condition = &cond ; G4double currentSafety ; G4double& refsafety=currentSafety; theTimer.Start() ; G4cout << "cut for GAMMA in mm =" ; G4cin >> cutinrange ; cutinrange *= mm; theGamma->SetCuts(cutinrange) ; G4cout << "gamma,cut in range(mm)=" << theGamma->GetCuts()/mm << G4endl ; GammaKineticEnergyCuts = theGamma->GetCutsInEnergy() ; for (G4int icut=0; icutlength(); icut++) { G4cout << "material index=" << icut << " kin.energy cut(MeV)=" << GammaKineticEnergyCuts[icut]/MeV << G4endl ; } theTimer.Stop() ; G4cout << " time = " << theTimer.GetUserElapsed() << G4endl; theTimer.Start() ; G4cout << "cut for ELECTRON in mm =" ; G4cin >> cutinrange ; cutinrange *= mm; CutInRangeele = cutinrange ; theElectron->SetCuts(cutinrange) ; G4cout << "electron,cut in range(mm)=" << theElectron->GetCuts()/mm << G4endl ; ElectronKineticEnergyCuts = theElectron->GetCutsInEnergy() ; for ( icut=0; icutlength(); icut++) { G4cout << "material index=" << icut << " kin.energy cut(MeV)=" << ElectronKineticEnergyCuts[icut]/MeV << G4endl ; } theTimer.Stop() ; G4cout << " time = " << theTimer.GetUserElapsed() << G4endl; theTimer.Start() ; G4cout << "cut for POSITRON in mm =" ; G4cin >> cutinrange ; cutinrange *= mm; CutInRangepos = cutinrange ; thePositron->SetCuts(cutinrange) ; G4cout << "positron,cut in range(mm)=" << thePositron->GetCuts()/mm << G4endl ; PositronKineticEnergyCuts = thePositron->GetCutsInEnergy() ; for ( icut=0; icutlength(); icut++) { G4cout << "material index=" << icut << " kin.energy cut(MeV)=" << PositronKineticEnergyCuts[icut]/MeV << G4endl ; } theTimer.Stop() ; G4cout << " time = " << theTimer.GetUserElapsed() << G4endl; theTimer.Start() ; G4cout << "cut for muons in mm =" ; G4cin >> cutinrange ; cutinrange *= mm; theParticle->SetCuts(cutinrange) ; G4cout << "cut in range(mm)=" << theParticle->GetLengthCuts()/mm << G4endl ; ParticleKineticEnergyCuts = theParticle->GetEnergyCuts() ; for ( icut=0; icutlength(); icut++) { G4cout << "material index=" << icut << " kin.energy cut(MeV)=" << ParticleKineticEnergyCuts[icut]/MeV << G4endl ; } theTimer.Stop() ; G4cout << " time = " << theTimer.GetUserElapsed() << G4endl; G4cout << " ------ ----- " << G4endl ; palongget = aParticle.GetDefinition()->GetProcessManager() ->GetAlongStepProcessVector(typeGPIL); ppostget = aParticle.GetDefinition()->GetProcessManager() ->GetPostStepProcessVector(typeGPIL); palongdo = aParticle.GetDefinition()->GetProcessManager() ->GetAlongStepProcessVector(typeDoIt); ppostdo = aParticle.GetDefinition()->GetProcessManager() ->GetPostStepProcessVector(typeDoIt); //---------------------------------- Physics -------------------------------- G4int itry=1, Ntry=1, Nstart, ir; G4double r ; //************************************************************************** const G4int Nbin=137 ; G4double TkinMeV[Nbin] = {0.00001,0.000015,0.00002,0.00003,0.00004,0.00005,0.00006,0.00008, 0.0001,0.00015,0.0002,0.0003,0.0004,0.0005,0.0006,0.0008, 0.001,0.0015,0.002,0.003,0.004,0.005,0.006,0.008, 0.01,0.015,0.02,0.03,0.04,0.05,0.06,0.08, 0.1,0.15,0.2,0.3,0.4,0.5,0.6,0.8, 1.,1.5,2.,3.,4.,5.,6.,8., 10.,15.,20.,30.,40.,50.,60.,80., 100.,150.,200.,300.,400.,500.,600.,800., 1.0e3,1.5e3,2.0e3,3.0e3,4.0e3,5.0e3,6.0e3,8.0e3, 1.0e4,1.5e4,2.0e4,3.0e4,4.0e4,5.0e4,6.0e4,8.0e4, 1.0e5,1.5e5,2.0e5,3.0e5,4.0e5,5.0e5,6.0e5,8.0e5, 1.0e6,1.5e6,2.0e6,3.0e6,4.0e6,5.0e6,6.0e6,8.0e6, 1.0e7,1.5e7,2.0e7,3.0e7,4.0e7,5.0e7,6.0e7,8.0e7, 1.0e8,1.5e8,2.0e8,3.0e8,4.0e8,5.0e8,6.0e8,8.0e8, 1.0e9,1.5e9,2.0e9,3.0e9,4.0e9,5.0e9,6.0e9,8.0e9, 1.e10,1.5e10,2.e10,3.e10,4.e10,5.e10,6.e10,8.e10, 1.e11,1.5e11,2.e11,3.e11,4.e11,5.e11,6.e11,8.e11, 1.e12} ; for (G4int k=0; k= theMaterialTable->length() ) { G4cout << "that was the last material in the table --> STOP" << G4endl; return EXIT_FAILURE ; } apttoMaterial = (*theMaterialTable)[ J ] ; MaterialName = apttoMaterial->GetName() ; G4cout << "material=" << MaterialName << G4endl ; G4cout << "Do you want the Energyloss test 1. for this material?" << G4endl ; G4cout << "type a positive number if the answer is YES" << G4endl ; G4cout << "type a negative number if the answer is NO " << G4endl ; G4int icont ; G4cin >> icont ; if ( icont < 0 ) goto NEXTMATERIAL ; //---------- Volume definition --------------------- G4VPhysicalVolume* myVolume ; myVolume = BuildVolume(apttoMaterial) ; //--------- track and Step definition (for this test ONLY!)------------ G4ThreeVector aPosition(0.,0.,0.); const G4ThreeVector aDirection(0.,0.,1.) ; const G4ThreeVector transl(0.,0.,0.) ; G4double aTime = 0. ; G4Track* tracke = new G4Track(&aParticle,aTime,aPosition) ; G4Track& trackele = (*tracke) ; //(*tracke).SetVolume(myVolume) ; G4GRSVolume* touche = new G4GRSVolume(myVolume,NULL,transl); (*tracke).SetTouchable(touche); (*tracke).SetMomentumDirection(aDirection) ; G4Step* Step = new G4Step() ; G4Step& Step = (*Step) ; tracke->SetStep(Step); G4StepPoint* aPoint = new G4StepPoint(); (*aPoint).SetPosition(aPosition) ; G4double safety = 10000.*cm ; (*aPoint).SetSafety(safety) ; (*Step).SetPostStepPoint(aPoint) ; //************************************************************************** G4cout << G4endl; G4cout <<" " << MaterialName << " Energyloss test 1." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "kin.en.(MeV) dE/dx(MeV/mm) range(mm) Step(mm)" << " dEdx(GeVcm2/g)" << G4endl ; G4cout << G4endl ; for ( G4int i=0 ; iAlongStepGetPhysicalInteractionLength( trackele, previousStepSize, currentMinimumStep, refsafety, &selection) ; dEdx = theParticleIonisation.GetdEdx() ; range = theParticleIonisation.GetRangeNow() ; T = TkinMeV[i] ; G4cout <<" " << T/MeV << " " << dEdx/(MeV/mm) << " " ; G4cout << range/mm << " " << stepLimit/mm << " " << dEdx/(GeV/cm)/(apttoMaterial->GetDensity()/(g/cm3)) << G4endl ; } G4cout << G4endl; ENERGYLOSS2: ; G4cout << "material=" << MaterialName << G4endl ; G4cout << "Do you want the Energyloss test 2. for this material?" << G4endl ; G4cout << "type a positive number if the answer is YES" << G4endl ; G4cout << "type a negative number if the answer is NO " << G4endl ; G4cin >> icont ; if ( icont < 0 ) goto ENERGYLOSS3 ; G4double TMeV,stepmm,stepmx,meanloss,lossnow ; G4cout << "give an energy value in MeV " ; G4cin >> TMeV ; TMeV *= MeV; trueStep = cutinrange ; previousStepSize = cutinrange ; currentMinimumStep = trueStep ; (*tracke).SetKineticEnergy(TMeV) ; stepmx = (*palongget)(0)->AlongStepGetPhysicalInteractionLength( trackele, previousStepSize, currentMinimumStep, refsafety, &selection); G4cout << " give a steplength in mm , the max. meaningful Step is " << stepmx/mm << " mm" <> stepmm ; stepmm *= mm; (*Step).SetTrack(tracke) ; (*Step).SetStepLength(stepmm); aParticleChange = (G4ParticleChange*) ((*palongdo)(0)->AlongStepDoIt(trackele,Step)); meanloss = theParticleIonisation.GetMeanLoss() ; lossnow = TMeV-(*aParticleChange).GetEnergyChange(); G4cout << G4endl; G4cout <<" " << MaterialName << " Energyloss test 2." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "kin.en.(MeV) Step(mm) meanloss(MeV) act.loss(MeV)" << G4endl ; G4cout << TMeV/MeV << " " << stepmm/mm << " " << meanloss/MeV << " " << lossnow/MeV << G4endl ; G4cout << " status change:" << (*aParticleChange).GetStatusChange() << G4endl ; G4cout << G4endl ; goto ENERGYLOSS2 ; ENERGYLOSS3: ; G4cout << "material=" << MaterialName << G4endl ; G4cout << "Do you want the Energyloss test 3. for this material?" << G4endl ; G4cout << "type a positive number if the answer is YES" << G4endl ; G4cout << "type a negative number if the answer is NO " << G4endl ; G4cin >> icont ; if ( icont < 0 ) goto DELTARAY1 ; G4cout << "give an energy value in MeV " ; G4cin >> TMeV ; TMeV *= MeV; trueStep = cutinrange ; previousStepSize = cutinrange ; currentMinimumStep = trueStep ; (*tracke).SetKineticEnergy(TMeV) ; stepmx = (*palongget)(0)->AlongStepGetPhysicalInteractionLength( trackele, previousStepSize, currentMinimumStep, refsafety, &selection); G4cout << " give a steplength in mm , the max. meaningful Step is " << stepmx << " mm" <> stepmm ; stepmm *= mm; (*Step).SetTrack(tracke) ; (*Step).SetStepLength(stepmm); G4cout << " give number of events you want " ; G4int nbev,ibev ; G4cin >> nbev ; meanloss=0.; theTimer.Start(); for ( ibev=0; ibevAlongStepDoIt(trackele,Step)); lossnow = TMeV-(*aParticleChange).GetEnergyChange(); meanloss += lossnow ; } theTimer.Stop(); meanloss /= nbev ; G4cout << G4endl; G4cout <<" " << MaterialName << " Energyloss test 3." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "kin.en.(MeV) Step(mm) meanloss(MeV) time/event(sec) " << G4endl ; G4cout << TMeV/MeV << " " << stepmm/mm << " " << meanloss/MeV << " " << theTimer.GetUserElapsed()/nbev << G4endl ; G4cout << G4endl ; goto ENERGYLOSS3 ; DELTARAY1: ; G4cout << "material=" << MaterialName << G4endl ; G4cout << "Do you want the delta ray test 1. for this material?" << G4endl ; G4cout << "type a positive number if the answer is YES" << G4endl ; G4cout << "type a negative number if the answer is NO " << G4endl ; G4cin >> icont ; if ( icont < 0 ) goto DELTARAY2 ; G4cout << G4endl; G4cout <<" " << MaterialName << " delta ray test 1." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "kin.en.(MeV) mean free path(mm)" << G4endl ; G4cout << G4endl ; for ( i=0 ; i> icont ; G4double newenergy,dx,dy,dz,Tdelta,ddx,ddy,ddz ; G4int nd ; const G4ThreeVector* momdir ; G4ParticleMomentum ddir ; if ( icont < 0 ) goto BREMS1 ; G4cout << "give an energy value in MeV " ; G4cin >> TMeV ; TMeV *= MeV; stepmm = 1.*mm ; (*Step).SetTrack(tracke) ; (*Step).SetStepLength(stepmm); (*tracke).SetKineticEnergy(TMeV) ; aParticleChange = (G4ParticleChange*) ((*ppostdo)(0)->PostStepDoIt(trackele,Step)); newenergy=(*aParticleChange).GetEnergyChange() ; momdir=(*aParticleChange).GetMomentumChange(); dx = (*momdir).x(); dy = (*momdir).y(); dz = (*momdir).z(); nd=aParticleChange->GetNumberOfSecondaries(); if(nd>0) { Tdelta=aParticleChange->GetSecondary(0)->GetKineticEnergy(); ddir=aParticleChange->GetSecondary(0)-> GetMomentumDirection(); ddx = (ddir).x(); ddy = (ddir).y(); ddz = (ddir).z(); } (*aParticleChange).Clear(); G4cout << G4endl; G4cout <<" " << MaterialName << " delta ray test 2." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "T=" << TMeV/MeV << " newT=" << newenergy/MeV << " (MeV)" << G4endl ; G4cout << " status change:" << (*aParticleChange).GetStatusChange() << G4endl ; if(nd>0) G4cout << "Tdelta=" << Tdelta/MeV << G4endl ; G4cout << "new direction:" << dx << " " << dy << " " << dz << G4endl; if(nd>0) G4cout << "delta direction:" << ddx << " " << ddy << " " << ddz << G4endl ; //............................................ nbev=50000 ; mloss = 0. ; sloss = 0. ; theTimer.Start(); for (ibev=0 ; ibevPostStepDoIt(trackele,Step)); nd=aParticleChange->GetNumberOfSecondaries(); Tdelta=0. ; if(nd>0) { Tdelta=aParticleChange->GetSecondary(0)->GetKineticEnergy(); } mloss += Tdelta ; sloss += Tdelta*Tdelta ; (*aParticleChange).Clear(); } theTimer.Stop(); mloss /= nbev ; sloss /= nbev ; sloss = (sloss-mloss*mloss)/nbev ; if(sloss>0.) sloss = std::sqrt(sloss) ; else sloss = 0. ; previousStepSize = cutinrange ; stepLimit = theParticleIonisation.GetMeanFreePath( trackele, previousStepSize, condition) ; dEdxdelta=mloss/stepLimit ; G4cout << " mean energy loss due to delta production (in MeV)=" << mloss/MeV << " +- " << sloss/MeV << G4endl ; G4cout << " dE/dx due to delta production (in MeV/mm,from " << nbev << " events )=" << dEdxdelta/(MeV/mm) << G4endl ; G4cout << "in GeVcm2/g =" << dEdxdelta/(GeV/cm)/(apttoMaterial->GetDensity()/(g/cm3)) << G4endl ; G4cout << " time/delta =" << theTimer.GetUserElapsed()/nbev << G4endl ; G4cout << G4endl ; //.................................. goto DELTARAY2 ; BREMS1: ; G4cout << "material=" << MaterialName << G4endl ; G4cout << "Do you want the brems test 1. for this material?" << G4endl ; G4cout << "type a positive number if the answer is YES" << G4endl ; G4cout << "type a negative number if the answer is NO " << G4endl ; G4cin >> icont ; if ( icont < 0 ) goto BREMS2 ; G4cout << G4endl; G4cout <<" " << MaterialName << " brems test 1." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "kin.en.(MeV) mean free path(mm)" << G4endl ; G4cout << G4endl ; for ( i=0 ; i> icont ; if ( icont < 0 ) goto PAIR1 ; G4cout << "give an energy value in MeV " ; G4cin >> TMeV ; TMeV *= MeV; stepmm = 1. ; (*Step).SetTrack(tracke) ; (*Step).SetStepLength(stepmm); (*tracke).SetKineticEnergy(TMeV) ; aParticleChange = (G4ParticleChange*) ((*ppostdo)(1)->PostStepDoIt(trackele,Step)); newenergy=(*aParticleChange).GetEnergyChange() ; momdir=(*aParticleChange).GetMomentumChange(); dx = (*momdir).x(); dy = (*momdir).y(); dz = (*momdir).z(); nd=aParticleChange->GetNumberOfSecondaries(); if(nd>0) { Tdelta=aParticleChange->GetSecondary(0)->GetKineticEnergy(); ddir=aParticleChange->GetSecondary(0)-> GetMomentumDirection(); ddx = (ddir).x(); ddy = (ddir).y(); ddz = (ddir).z(); } (*aParticleChange).Clear(); G4cout << G4endl; G4cout <<" " << MaterialName << " brems test 2." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "T=" << TMeV/MeV << " newT=" << newenergy/MeV << " (MeV)" << G4endl ; G4cout << " status change:" << (*aParticleChange).GetStatusChange() << G4endl ; if(nd>0) G4cout << "Tgamma=" << Tdelta/MeV << G4endl ; G4cout << "new direction:" << dx << " " << dy << " " << dz << G4endl; if(nd>0) G4cout << "gamma direction:" << ddx << " " << ddy << " " << ddz << G4endl ; nbev=50000 ; mloss = 0. ; sloss = 0. ; theTimer.Start(); for (ibev=0 ; ibevPostStepDoIt(trackele,Step)); nd=aParticleChange->GetNumberOfSecondaries(); Tdelta=0. ; if(nd>0) { Tdelta=aParticleChange->GetSecondary(0)->GetKineticEnergy(); } mloss += Tdelta ; sloss += Tdelta*Tdelta ; (*aParticleChange).Clear(); } theTimer.Stop(); mloss /= nbev ; sloss /= nbev ; sloss = std::sqrt((sloss-mloss*mloss)/nbev) ; previousStepSize = cutinrange ; stepLimit = theParticleBremsstrahlung.GetMeanFreePath( trackele, previousStepSize, condition) ; dEdxbrems=mloss/stepLimit ; G4cout << " mean energy loss due to bremsstrahlung (in MeV)=" << mloss/MeV << " +- " << sloss/MeV << G4endl ; G4cout << " dE/dx due to bremsstrahlung (in MeV/mm,from " << nbev << " events )=" << dEdxbrems/(MeV/mm) << G4endl; G4cout << "in GeVcm2/g =" << dEdxbrems/(GeV/cm)/(apttoMaterial->GetDensity()/(g/cm3)) << G4endl ; G4cout << " time/brems =" << theTimer.GetUserElapsed()/nbev << G4endl ; G4cout << G4endl ; goto BREMS2 ; PAIR1: ; G4cout << "material=" << MaterialName << G4endl ; G4cout << "Do you want the pair test 1. for this material?" << G4endl ; G4cout << "type a positive number if the answer is YES" << G4endl ; G4cout << "type a negative number if the answer is NO " << G4endl ; G4cin >> icont ; if ( icont < 0 ) goto PAIR2 ; G4cout << G4endl; G4cout <<" " << MaterialName << " pair test 1." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "kin.en.(MeV) mean free path(mm)" << G4endl ; G4cout << G4endl ; for ( i=0 ; i> icont ; if ( icont < 0 ) goto NUCL1 ; G4cout << "give an energy value in MeV " ; G4cin >> TMeV ; TMeV *= MeV; stepmm = 1. ; (*Step).SetTrack(tracke) ; (*Step).SetStepLength(stepmm); (*tracke).SetKineticEnergy(TMeV) ; aParticleChange = (G4ParticleChange*) ((*ppostdo)(2)->PostStepDoIt(trackele,Step)); newenergy=(*aParticleChange).GetEnergyChange() ; momdir=(*aParticleChange).GetMomentumChange(); dx = (*momdir).x(); dy = (*momdir).y(); dz = (*momdir).z(); nd=aParticleChange->GetNumberOfSecondaries(); if(nd>0) { Tdelta1=aParticleChange->GetSecondary(0)->GetKineticEnergy(); ddir1=aParticleChange->GetSecondary(0)-> GetMomentumDirection(); ddx1 = (ddir1).x(); ddy1 = (ddir1).y(); ddz1 = (ddir1).z(); } if(nd>1) { Tdelta2=aParticleChange->GetSecondary(1)->GetKineticEnergy(); ddir2=aParticleChange->GetSecondary(1)-> GetMomentumDirection(); ddx2 = (ddir2).x(); ddy2 = (ddir2).y(); ddz2 = (ddir2).z(); } (*aParticleChange).Clear(); G4cout << G4endl; G4cout <<" " << MaterialName << " pair test 2." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "T=" << TMeV/MeV << " newT=" << newenergy/MeV << " (MeV)" << G4endl ; G4cout << " status change:" << (*aParticleChange).GetStatusChange() << G4endl ; if(nd>0) G4cout << "T1=" << Tdelta1/MeV << G4endl ; if(nd>1) G4cout << "T2=" << Tdelta2/MeV << G4endl ; G4cout << "new direction:" << dx << " " << dy << " " << dz << G4endl; if(nd>0) G4cout << "direction1:" << ddx1 << " " << ddy1 << " " << ddz1 << G4endl ; if(nd>1) G4cout << "direction2:" << ddx2 << " " << ddy2 << " " << ddz2 << G4endl ; nbev=50000 ; mloss = 0. ; sloss = 0. ; theTimer.Start(); for (ibev=0 ; ibevPostStepDoIt(trackele,Step)); nd=aParticleChange->GetNumberOfSecondaries(); Tdelta=0. ; if(nd>0) { Tdelta1=aParticleChange->GetSecondary(0)->GetKineticEnergy(); Tdelta=Tdelta1; } if(nd>1) { Tdelta2=aParticleChange->GetSecondary(1)->GetKineticEnergy(); Tdelta+=Tdelta2; } mloss += Tdelta ; sloss += Tdelta*Tdelta ; (*aParticleChange).Clear(); } theTimer.Stop(); mloss /= nbev ; sloss /= nbev ; sloss = std::sqrt((sloss-mloss*mloss)/nbev) ; previousStepSize = cutinrange ; stepLimit = theParticlePairProduction.GetMeanFreePath( trackele, previousStepSize, condition) ; dEdxpair=mloss/stepLimit ; G4cout << " mean energy loss due to pair production (in MeV)=" << mloss/MeV << " +- " << sloss/MeV << G4endl ; G4cout << " dE/dx due to pair production (in MeV/mm,from " << nbev << " events )=" << dEdxpair/(MeV/mm) << G4endl; G4cout << "in GeVcm2/g =" << dEdxpair/(GeV/cm)/(apttoMaterial->GetDensity()/(g/cm3)) << G4endl ; G4cout << " time/pair =" << theTimer.GetUserElapsed()/nbev << G4endl ; G4cout << G4endl ; goto PAIR2 ; NUCL1: ; G4cout << "material=" << MaterialName << G4endl ; G4cout << "Do you want the nucl.int. test 1. for this material?" << G4endl ; G4cout << "type a positive number if the answer is YES" << G4endl ; G4cout << "type a negative number if the answer is NO " << G4endl ; G4cin >> icont ; if ( icont < 0 ) goto NUCL2 ; G4cout << G4endl; G4cout <<" " << MaterialName << " nucl.int. test 1." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "kin.en.(MeV) mean free path(mm)" << G4endl ; G4cout << G4endl ; for ( i=0 ; i> icont ; if ( icont < 0 ) goto NEXTMATERIAL ; G4cout << "give an energy value in MeV " ; G4cin >> TMeV ; TMeV *= MeV; stepmm = 1. ; (*Step).SetTrack(tracke) ; (*Step).SetStepLength(stepmm); (*tracke).SetKineticEnergy(TMeV) ; aParticleChange = (G4ParticleChange*) ((*ppostdo)(3)->PostStepDoIt(trackele,Step)); newenergy=(*aParticleChange).GetEnergyChange() ; momdir=(*aParticleChange).GetMomentumChange(); dx = (*momdir).x(); dy = (*momdir).y(); dz = (*momdir).z(); nd=aParticleChange->GetNumberOfSecondaries(); if(nd>0) { Tdelta1=aParticleChange->GetSecondary(0)->GetKineticEnergy(); ddir1=aParticleChange->GetSecondary(0)-> GetMomentumDirection(); ddx1 = (ddir1).x(); ddy1 = (ddir1).y(); ddz1 = (ddir1).z(); } (*aParticleChange).Clear(); G4cout << G4endl; G4cout <<" " << MaterialName << " nucl.int. test 2." << G4endl ; G4cout << " ++++++++++++++++++++++++++++++++++++++++++++" << G4endl ; G4cout << G4endl ; G4cout << "T=" << TMeV/MeV << " newT=" << newenergy/MeV << " (MeV)" << G4endl ; G4cout << " status change:" << (*aParticleChange).GetStatusChange() << G4endl ; if(nd>0) G4cout << "T1=" << Tdelta1/MeV << G4endl ; if(nd>1) G4cout << "T2=" << Tdelta2/MeV << G4endl ; G4cout << "new direction:" << dx << " " << dy << " " << dz << G4endl; if(nd>0) G4cout << "direction1:" << ddx1 << " " << ddy1 << " " << ddz1 << G4endl ; if(nd>1) G4cout << "direction2:" << ddx2 << " " << ddy2 << " " << ddz2 << G4endl ; nbev=50000 ; mloss = 0. ; sloss = 0. ; theTimer.Start(); for (ibev=0 ; ibevPostStepDoIt(trackele,Step)); nd=aParticleChange->GetNumberOfSecondaries(); Tdelta=0. ; // secondary is not generated .................................... Tdelta1 = TMeV - (*aParticleChange).GetEnergyChange() ; Tdelta=Tdelta1; if(nd>0) { // secondary is not generated .................................... //Tdelta1=aParticleChange->GetSecondary(0)->GetKineticEnergy(); Tdelta=Tdelta1; } mloss += Tdelta ; sloss += Tdelta*Tdelta ; (*aParticleChange).Clear(); } theTimer.Stop(); mloss /= nbev ; sloss /= nbev ; sloss = std::sqrt((sloss-mloss*mloss)/nbev) ; previousStepSize = cutinrange ; stepLimit = theParticleNuclearInteraction.GetMeanFreePath( trackele, previousStepSize, condition) ; dEdxpair=mloss/stepLimit ; G4cout << " mean energy loss due to nucl.int. production (in MeV)=" << mloss/MeV << " +- " << sloss/MeV << G4endl ; G4cout << " dE/dx due to nucl.int. production (in MeV/mm,from " << nbev << " events )=" << dEdxpair/(MeV/mm) << G4endl; G4cout << "in GeVcm2/g =" << dEdxpair/(GeV/cm)/(apttoMaterial->GetDensity()/(g/cm3)) << G4endl ; G4cout << " time/nucl =" << theTimer.GetUserElapsed()/nbev << G4endl ; G4cout << G4endl ; goto NUCL2 ; if( J < theMaterialTable->length()-1 ) goto NEXTMATERIAL ; return EXIT_SUCCESS; }