249 lines
7.7 KiB
C++
Executable File
249 lines
7.7 KiB
C++
Executable File
//
|
|
// ********************************************************************
|
|
// * 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. *
|
|
// ********************************************************************
|
|
//
|
|
// Please cite the following paper if you use this software
|
|
// Nucl.Instrum.Meth.B260:20-27, 2007
|
|
|
|
#include "PhysicsList.hh"
|
|
#include "G4SystemOfUnits.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
PhysicsList::PhysicsList(): G4VUserPhysicsList()
|
|
{
|
|
defaultCutValue = 1*micrometer;
|
|
fCutForGamma = defaultCutValue;
|
|
fCutForElectron = defaultCutValue;
|
|
fCutForPositron = defaultCutValue;
|
|
fCutForProton = defaultCutValue;
|
|
|
|
SetVerboseLevel(1);
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
PhysicsList::~PhysicsList()
|
|
{}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::ConstructParticle()
|
|
{
|
|
ConstructBosons();
|
|
ConstructLeptons();
|
|
ConstructBarions();
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::ConstructBosons()
|
|
{
|
|
// gamma
|
|
G4Gamma::GammaDefinition();
|
|
|
|
// optical photon
|
|
G4OpticalPhoton::OpticalPhotonDefinition();
|
|
}
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::ConstructLeptons()
|
|
{
|
|
// leptons
|
|
G4Electron::ElectronDefinition();
|
|
G4Positron::PositronDefinition();
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::ConstructBarions()
|
|
{
|
|
// barions
|
|
G4Proton::ProtonDefinition();
|
|
G4AntiProton::AntiProtonDefinition();
|
|
G4GenericIon::GenericIonDefinition();
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::ConstructProcess()
|
|
{
|
|
AddTransportation();
|
|
ConstructEM();
|
|
ConstructGeneral();
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#include "G4PhotoElectricEffect.hh"
|
|
#include "G4ComptonScattering.hh"
|
|
#include "G4GammaConversion.hh"
|
|
|
|
#include "G4eMultipleScattering.hh"
|
|
#include "G4eIonisation.hh"
|
|
#include "G4eBremsstrahlung.hh"
|
|
#include "G4eplusAnnihilation.hh"
|
|
|
|
#include "G4MuMultipleScattering.hh"
|
|
#include "G4WentzelVIModel.hh"
|
|
|
|
#include "G4MuIonisation.hh"
|
|
#include "G4MuBremsstrahlung.hh"
|
|
#include "G4MuPairProduction.hh"
|
|
#include "G4CoulombScattering.hh"
|
|
|
|
#include "G4hMultipleScattering.hh"
|
|
#include "G4ionIonisation.hh"
|
|
#include "G4hIonisation.hh"
|
|
#include "G4hBremsstrahlung.hh"
|
|
#include "G4hPairProduction.hh"
|
|
|
|
#include "G4StepLimiter.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::ConstructEM()
|
|
{
|
|
|
|
G4PhysicsListHelper* ph = G4PhysicsListHelper::GetPhysicsListHelper();
|
|
|
|
// ****************************************************************
|
|
// Identical to G4EmStandardPhysics but added G4StepLimiter process
|
|
// ****************************************************************
|
|
|
|
|
|
auto particleIterator=GetParticleIterator();
|
|
particleIterator->reset();
|
|
|
|
while( (*particleIterator)() ){
|
|
|
|
G4ParticleDefinition* particle = particleIterator->value();
|
|
|
|
G4String particleName = particle->GetParticleName();
|
|
|
|
if (particleName == "gamma") {
|
|
|
|
ph->RegisterProcess(new G4PhotoElectricEffect(), particle);
|
|
ph->RegisterProcess(new G4ComptonScattering(), particle);
|
|
ph->RegisterProcess(new G4GammaConversion(), particle);
|
|
|
|
} else if (particleName == "e-") {
|
|
|
|
ph->RegisterProcess(new G4eMultipleScattering(), particle);
|
|
ph->RegisterProcess(new G4eIonisation(), particle);
|
|
ph->RegisterProcess(new G4eBremsstrahlung(), particle);
|
|
|
|
} else if (particleName == "e+") {
|
|
|
|
ph->RegisterProcess(new G4eMultipleScattering(), particle);
|
|
ph->RegisterProcess(new G4eIonisation(), particle);
|
|
ph->RegisterProcess(new G4eBremsstrahlung(), particle);
|
|
ph->RegisterProcess(new G4eplusAnnihilation(), particle);
|
|
|
|
} else if( particleName == "mu+" ||
|
|
particleName == "mu-" ) {
|
|
|
|
G4MuMultipleScattering* msc = new G4MuMultipleScattering();
|
|
msc->AddEmModel(0, new G4WentzelVIModel());
|
|
|
|
ph->RegisterProcess(msc, particle);
|
|
ph->RegisterProcess(new G4MuIonisation(), particle);
|
|
ph->RegisterProcess(new G4MuBremsstrahlung(), particle);
|
|
ph->RegisterProcess(new G4MuPairProduction(), particle);
|
|
ph->RegisterProcess(new G4CoulombScattering(), particle);
|
|
|
|
} else if (particleName == "alpha" ||
|
|
particleName == "He3") {
|
|
|
|
ph->RegisterProcess(new G4hMultipleScattering(), particle);
|
|
ph->RegisterProcess(new G4ionIonisation(), particle);
|
|
|
|
} else if (particleName == "GenericIon") {
|
|
|
|
ph->RegisterProcess(new G4hMultipleScattering(), particle);
|
|
ph->RegisterProcess(new G4ionIonisation(), particle);
|
|
|
|
} else if (particleName == "proton") {
|
|
ph->RegisterProcess(new G4hMultipleScattering(), particle);
|
|
ph->RegisterProcess(new G4hIonisation(), particle);
|
|
ph->RegisterProcess(new G4hBremsstrahlung(), particle);
|
|
ph->RegisterProcess(new G4hPairProduction(), particle);
|
|
|
|
ph->RegisterProcess(new G4StepLimiter(), particle);
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::ConstructGeneral()
|
|
{ }
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::SetCuts()
|
|
{
|
|
if (verboseLevel >0){
|
|
G4cout << "PhysicsList::SetCuts:";
|
|
G4cout << "CutLength : " << G4BestUnit(defaultCutValue,"Length") << G4endl;
|
|
}
|
|
|
|
SetCutValue(fCutForGamma, "gamma");
|
|
SetCutValue(fCutForElectron, "e-");
|
|
SetCutValue(fCutForPositron, "e+");
|
|
SetCutValue(fCutForProton, "proton");
|
|
SetCutValue(fCutForProton, "anti_proton");
|
|
|
|
if (verboseLevel>0) DumpCutValuesTable();
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::SetGammaCut(G4double val)
|
|
{
|
|
fCutForGamma = val;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::SetElectronCut(G4double val)
|
|
{
|
|
fCutForElectron = val;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::SetPositronCut(G4double val)
|
|
{
|
|
fCutForPositron = val;
|
|
}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void PhysicsList::SetProtonCut(G4double val)
|
|
{
|
|
fCutForProton = val;
|
|
}
|