// // ******************************************************************** // * 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: PhysicsList.cc,v 1.19 2010/01/19 17:28:20 maire Exp $ // GEANT4 tag $Name: geant4-09-04-beta-01 $ // //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #include "PhysicsList.hh" #include "PhysicsListMessenger.hh" #include "PhysListEmStandard_option0.hh" #include "PhysListEmStandard_option2.hh" #include "PhysListEmStandard_option3.hh" #include "PhysListEmStandard_GS.hh" #include "PhysListEmStandard_WVI.hh" #include "PhysListEmStandard_SS.hh" #include "StepMax.hh" #include "G4ParticleDefinition.hh" #include "G4ProcessManager.hh" #include "G4LossTableManager.hh" // Bosons #include "G4ChargedGeantino.hh" #include "G4Geantino.hh" #include "G4Gamma.hh" // leptons #include "G4Electron.hh" #include "G4Positron.hh" // Hadrons #include "G4Proton.hh" //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... PhysicsList::PhysicsList(DetectorConstruction* det) : G4VModularPhysicsList(), detector(det) { G4LossTableManager::Instance(); pMessenger = new PhysicsListMessenger(this); // EM physics emName = G4String("standard_opt3"); emPhysicsList = new PhysListEmStandard_option3(emName,detector); defaultCutValue = 10*km; SetVerboseLevel(1); G4LossTableManager::Instance(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... PhysicsList::~PhysicsList() { delete emPhysicsList; delete pMessenger; } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void PhysicsList::ConstructParticle() { // pseudo-particles G4Geantino::GeantinoDefinition(); G4ChargedGeantino::ChargedGeantinoDefinition(); // gamma G4Gamma::GammaDefinition(); // leptons G4Electron::ElectronDefinition(); G4Positron::PositronDefinition(); // baryons G4Proton::ProtonDefinition(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void PhysicsList::ConstructProcess() { AddTransportation(); emPhysicsList->ConstructProcess(); AddStepMax(); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void PhysicsList::AddStepMax() { // Step limitation seen as a process StepMax* stepMaxProcess = new StepMax(); theParticleIterator->reset(); while ((*theParticleIterator)()){ G4ParticleDefinition* particle = theParticleIterator->value(); G4ProcessManager* pmanager = particle->GetProcessManager(); if (stepMaxProcess->IsApplicable(*particle) && !particle->IsShortLived()) { pmanager ->AddDiscreteProcess(stepMaxProcess); } } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... void PhysicsList::AddPhysicsList(const G4String& name) { if (verboseLevel>-1) { G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << G4endl; } if (name == emName) return; if (name == "standard_opt0") { emName = name; delete emPhysicsList; emPhysicsList = new PhysListEmStandard_option0(name,detector); } else if (name == "standard_opt2") { emName = name; delete emPhysicsList; emPhysicsList = new PhysListEmStandard_option2(name,detector); } else if (name == "standard_opt3") { emName = name; delete emPhysicsList; emPhysicsList = new PhysListEmStandard_option3(name,detector); } else if (name == "standard_GS") { emName = name; delete emPhysicsList; emPhysicsList = new PhysListEmStandard_GS(name,detector); } else if (name == "standard_WVI") { emName = name; delete emPhysicsList; emPhysicsList = new PhysListEmStandard_WVI(name,detector); } else if (name == "standard_SS") { emName = name; delete emPhysicsList; emPhysicsList = new PhysListEmStandard_SS(name,detector); } else { G4cout << "PhysicsList::AddPhysicsList: <" << name << ">" << " is not defined" << G4endl; } } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... #include "G4UnitsTable.hh" void PhysicsList::SetCuts() { if (verboseLevel >0){ G4cout << "PhysicsList::SetCuts:"; G4cout << "CutLength : " << G4BestUnit(defaultCutValue,"Length") << G4endl; } // set cut values for gamma at first and for e- second and next for e+, // because some processes for e+/e- need cut values for gamma SetCutValue(defaultCutValue, "gamma"); SetCutValue(defaultCutValue, "e-"); SetCutValue(defaultCutValue, "e+"); SetCutValue(defaultCutValue, "proton"); } //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......