// // ******************************************************************** // * 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: NTSTPhysicsList.cc,v 1.5 2006/06/29 18:26:22 gunter Exp $ // GEANT4 tag $Name: geant4-09-04-ref-00 $ // // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... #include "NTSTPhysicsList.hh" #include "NTSTPhysicsListMessenger.hh" #include "G4ParticleDefinition.hh" #include "G4ParticleWithCuts.hh" #include "G4ProcessManager.hh" #include "G4ProcessVector.hh" #include "G4ParticleTypes.hh" #include "G4ParticleTable.hh" #include "G4Material.hh" #include "G4ios.hh" #include "NTSTLooperDeath.hh" #include //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... NTSTPhysicsList::NTSTPhysicsList() : G4VUserPhysicsList(), useBgsTran(false), // use G4Transportation by default MinimumEnergyCut(1*MeV), // ParticleWithCuts min E cut MaximumEnergyCut(100*TeV), // ParticleWithCuts max E cut Cut(2.*mm), // Range cut LooperCut(0*MeV), // Kill loopers below this energy theLooperDeath(0), // pointer to looperdeath process thePhotoElectricEffect(NULL),theComptonScattering(NULL), theGammaConversion(NULL), theeminusMultipleScattering(NULL),theeminusIonisation(NULL), theeminusBremsstrahlung(NULL), theeplusMultipleScattering(NULL),theeplusIonisation(NULL), theeplusBremsstrahlung(NULL), theeplusAnnihilation(NULL) { SetVerboseLevel(2); physicsListMessenger = new NTSTPhysicsListMessenger(this); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... NTSTPhysicsList::~NTSTPhysicsList() { delete theLooperDeath; } //....Ooooo0ooooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructParticle() { // In this method, static member functions should be called // for all particles which you want to use. // This ensures that objects of these particle types will be // created in the program. ConstructBosons(); ConstructLeptons(); ConstructMesons(); ConstructBarions(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructBosons() { // pseudo-particles G4Geantino::GeantinoDefinition(); G4ChargedGeantino::ChargedGeantinoDefinition(); // gamma G4Gamma::GammaDefinition(); // optical photon G4OpticalPhoton::OpticalPhotonDefinition(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructLeptons() { // leptons G4Electron::ElectronDefinition(); G4Positron::PositronDefinition(); G4MuonPlus::MuonPlusDefinition(); G4MuonMinus::MuonMinusDefinition(); G4NeutrinoE::NeutrinoEDefinition(); G4AntiNeutrinoE::AntiNeutrinoEDefinition(); G4NeutrinoMu::NeutrinoMuDefinition(); G4AntiNeutrinoMu::AntiNeutrinoMuDefinition(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructMesons() { // mesons G4PionPlus ::PionPlusDefinition(); G4PionMinus ::PionMinusDefinition(); G4PionZero ::PionZeroDefinition(); G4Eta ::EtaDefinition(); G4EtaPrime ::EtaPrimeDefinition(); G4KaonPlus ::KaonPlusDefinition(); G4KaonMinus ::KaonMinusDefinition(); G4KaonZero ::KaonZeroDefinition(); G4AntiKaonZero ::AntiKaonZeroDefinition(); G4KaonZeroLong ::KaonZeroLongDefinition(); G4KaonZeroShort::KaonZeroShortDefinition(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructBarions() { // barions G4Proton ::ProtonDefinition(); G4AntiProton ::AntiProtonDefinition(); G4Neutron ::NeutronDefinition(); G4AntiNeutron ::AntiNeutronDefinition(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructProcess() { if (useBgsTran) { G4cout << " +^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^+ " << G4endl; G4cout << " +--- BgsTransportation is not available in this version ---+ " << G4endl; } AddTransportation(); G4cout << " +^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^+ " << G4endl; G4cout << " +v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v+ " << G4endl; G4cout << " +--- ---+ " << G4endl; G4cout << " +--- G4Transportation ---+ " << G4endl; G4cout << " +--- USED !! ---+ " << G4endl; G4cout << " +--- ---+ " << G4endl; G4cout << " +^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^+ " << G4endl; G4cout << " +v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v^v+ " << G4endl; ConstructEM(); ConstructLeptHad(); ConstructHad(); ConstructGeneral(); } void NTSTPhysicsList::AddBgsTransportation() { G4Exception("BgsTransportation is not enabled in this version -- due to migration to Touchable Handles"); #if 0 // BgsTransportation *theTransportationProcess= new BgsTransportation(); // loop over all particles in G4ParticleTable theParticleIterator->reset(); while( (*theParticleIterator)() ){ G4ParticleDefinition* particle = theParticleIterator->value(); G4ProcessManager* pmanager = particle->GetProcessManager(); if (!particle->IsShortLived()) { // Add transportation process for all particles other than "shortlived" if ( pmanager == 0) { // Error !! no process manager G4Exception("G4VUserPhysicsList::AddTransportation : no process manager!"); } else { // add transportation with ordering = ( -1, "first", "first" ) pmanager ->AddProcess(theTransportationProcess); pmanager ->SetProcessOrderingToFirst(theTransportationProcess, idxAlongStep); pmanager ->SetProcessOrderingToFirst(theTransportationProcess, idxPostStep); } } else { // shortlived particle case } } #endif } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... #include "G4ComptonScattering.hh" #include "G4GammaConversion.hh" #include "G4PhotoElectricEffect.hh" #include "G4MultipleScattering.hh" #include "G4eIonisation.hh" #include "G4eBremsstrahlung.hh" #include "G4eplusAnnihilation.hh" #include "G4MuIonisation.hh" #include "G4MuBremsstrahlung.hh" #include "G4MuPairProduction.hh" #include "G4hIonisation.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructEM() { theParticleIterator->reset(); while( (*theParticleIterator)() ){ G4ParticleDefinition* particle = theParticleIterator->value(); G4ProcessManager* pmanager = particle->GetProcessManager(); G4String particleName = particle->GetParticleName(); if (particleName == "gamma") { // gamma // Construct processes for gamma thePhotoElectricEffect = new G4PhotoElectricEffect(); theComptonScattering = new G4ComptonScattering(); theGammaConversion = new G4GammaConversion(); pmanager->AddDiscreteProcess(thePhotoElectricEffect); pmanager->AddDiscreteProcess(theComptonScattering); pmanager->AddDiscreteProcess(theGammaConversion); } else if (particleName == "e-") { //electron // Construct processes for electron theeminusMultipleScattering = new G4MultipleScattering(); theeminusIonisation = new G4eIonisation(); theeminusBremsstrahlung = new G4eBremsstrahlung(); pmanager->AddProcess(theeminusMultipleScattering,-1,1,1); pmanager->AddProcess(theeminusIonisation,-1,2,2); pmanager->AddProcess(theeminusBremsstrahlung,-1,-1,3); } else if (particleName == "e+") { //positron // Construct processes for positron theeplusMultipleScattering = new G4MultipleScattering(); theeplusIonisation = new G4eIonisation(); theeplusBremsstrahlung = new G4eBremsstrahlung(); theeplusAnnihilation = new G4eplusAnnihilation(); pmanager->AddProcess(theeplusMultipleScattering,-1,1,1); pmanager->AddProcess(theeplusIonisation,-1,2,2); pmanager->AddProcess(theeplusBremsstrahlung,-1,-1,3); pmanager->AddProcess(theeplusAnnihilation,0,-1,4); } else if( particleName == "mu+" || particleName == "mu-" ) { //muon // Construct processes for muon+ pmanager->AddProcess(new G4MultipleScattering(),-1,1,1); pmanager->AddProcess(new G4MuIonisation(),-1,2,2); pmanager->AddProcess(new G4MuBremsstrahlung(),-1,-1,3); pmanager->AddProcess(new G4MuPairProduction(),-1,-1,4); } else if ((!particle->IsShortLived()) && (particle->GetPDGCharge() != 0.0) && (particle->GetParticleName() != "chargedgeantino")) { // all others charged particles except geantino pmanager->AddProcess(new G4MultipleScattering(),-1,1,1); pmanager->AddProcess(new G4hIonisation(),-1,2,2); } } } #include "G4Decay.hh" void NTSTPhysicsList::ConstructGeneral() { // Add Decay Process G4Decay* theDecayProcess = new G4Decay(); theParticleIterator->reset(); while( (*theParticleIterator)() ){ G4ParticleDefinition* particle = theParticleIterator->value(); G4ProcessManager* pmanager = particle->GetProcessManager(); if (theDecayProcess->IsApplicable(*particle)) { pmanager ->AddProcess(theDecayProcess); // set ordering for PostStepDoIt and AtRestDoIt pmanager ->SetProcessOrdering(theDecayProcess, idxPostStep); pmanager ->SetProcessOrdering(theDecayProcess, idxAtRest); } } if (LooperCut>0) { // // Set special process to kill loopers // if (theLooperDeath == 0) theLooperDeath = new NTSTLooperDeath; theLooperDeath->SetMinMomentum(LooperCut); theParticleIterator->reset(); while( (*theParticleIterator)() ){ G4ParticleDefinition* particle = theParticleIterator->value(); if (theLooperDeath->IsApplicable(*particle)) { G4ProcessManager* pmanager = particle->GetProcessManager(); pmanager->AddProcess(theLooperDeath, -1, -1, 5); } } G4cout << "### Kill loopers below " << LooperCut << G4endl; } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::SetCuts() { SetDefaultCutValue(Cut); SetCutsWithDefault(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::SetStatusEmProcess() { // Process definitions const G4String process1("phot"),process2("Comp"),process3("conv"), process4("muls"),process5("ioni"),process6("brem"), process7("anni"); static G4String lstate1("on"),lstate2("on"),lstate3("on"), lstate4("on"),lstate5("on"),lstate6("on"),lstate7("on"); G4String process,newstate; G4bool active(true); G4ProcessManager* pGammaManager = G4Gamma::GammaDefinition() -> GetProcessManager(); G4ProcessManager* pElectManager = G4Electron::ElectronDefinition() -> GetProcessManager(); G4ProcessManager* pPositManager = G4Positron::PositronDefinition() -> GetProcessManager(); // // // Loop over processes // do { // diplay the status of the processes G4cout << " ****** Processes status ****** " << G4endl; G4cout << " " << process1 << " " << process2 << " " << process3 << " " << process4 << " " << process5 << " " << process6 << " " << process7 << G4endl; G4cout << " " << lstate1 << " " << lstate2 << " " << lstate3 << " " << lstate4 << " " << lstate5 << " " << lstate6 << " " << lstate7 << G4endl; // update the status of the processes G4cout << " enter -> a process name, on/off or: ok on : " << G4endl; G4cin >> process >> newstate ; if (newstate=="on") active = true; else active = false; if (process == "phot") { pGammaManager -> SetProcessActivation (thePhotoElectricEffect, active); lstate1 = newstate; } else if (process == "Comp") { pGammaManager -> SetProcessActivation (theComptonScattering, active); lstate2 = newstate; } else if (process == "conv") { pGammaManager -> SetProcessActivation (theGammaConversion, active); lstate3 = newstate; } else if (process == "muls") { pElectManager -> SetProcessActivation (theeminusMultipleScattering, active); pPositManager -> SetProcessActivation (theeplusMultipleScattering, active); lstate4 = newstate; } else if (process == "ioni") { pElectManager -> SetProcessActivation (theeminusIonisation, active); pPositManager -> SetProcessActivation (theeplusIonisation, active); lstate5 = newstate; } else if (process == "brem") { pElectManager -> SetProcessActivation (theeminusBremsstrahlung, active); pPositManager -> SetProcessActivation (theeplusBremsstrahlung, active); lstate6 = newstate; } else if (process == "anni") { pPositManager -> SetProcessActivation (theeplusAnnihilation, active); lstate7 = newstate; } } while (process!="ok") ; G4cout << " ---> Done" << G4endl; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructLeptHad() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::ConstructHad() {;} //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::SetMinimumEnergyCut(const G4double e) { MinimumEnergyCut = e; // -- G4cerr << " SetMinimumEnergyCut is not currently implemented." << G4endl; // -- G4Exception("SetMinimumEnergyCut missing"); // G4ParticleWithCuts::SetEnergyRange(MinimumEnergyCut, MaximumEnergyCut); G4cerr << " SetMinimumEnergyCut is newly re-implemented." << G4endl; G4ProductionCutsTable::GetProductionCutsTable() ->SetEnergyRange(MinimumEnergyCut, MaximumEnergyCut); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::SetMaximumEnergyCut(const G4double e) { MaximumEnergyCut = e; // -- G4cerr << " SetMaximumEnergyCut is not currently implemented." << G4endl; // -- G4Exception("SetMaximumEnergyCut missing"); // G4ParticleWithCuts::SetEnergyRange(MinimumEnergyCut, MaximumEnergyCut); G4cerr << " SetMaximumEnergyCut is newly re-implemented." << G4endl; G4ProductionCutsTable::GetProductionCutsTable() ->SetEnergyRange(MinimumEnergyCut, MaximumEnergyCut); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.... void NTSTPhysicsList::SetLooperCut(const G4double e) { LooperCut = e; }