405 lines
11 KiB
C++
405 lines
11 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * 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. *
|
|
// * *
|
|
// * This code implementation is the intellectual property of the *
|
|
// * GEANT4 collaboration. *
|
|
// * By copying, distributing or modifying the Program (or any work *
|
|
// * based on the Program) you indicate your acceptance of this *
|
|
// * statement, and all its terms. *
|
|
// ********************************************************************
|
|
//
|
|
//
|
|
// $Id: F01PhysicsList.cc,v 1.8 2003/08/27 17:38:54 vnivanch Exp $
|
|
// GEANT4 tag $Name: fieldex-V05-02-00 $
|
|
//
|
|
|
|
#include "G4Timer.hh"
|
|
|
|
#include "F01PhysicsList.hh"
|
|
#include "F01DetectorConstruction.hh"
|
|
#include "F01PhysicsListMessenger.hh"
|
|
|
|
#include "G4ParticleDefinition.hh"
|
|
#include "G4ParticleWithCuts.hh"
|
|
#include "G4ProcessManager.hh"
|
|
#include "G4ProcessVector.hh"
|
|
#include "G4ParticleTypes.hh"
|
|
#include "G4ParticleTable.hh"
|
|
#include "G4Material.hh"
|
|
#include "G4EnergyLossTables.hh"
|
|
#include "G4UnitsTable.hh"
|
|
#include "G4ios.hh"
|
|
#include <iomanip>
|
|
|
|
#include "G4FastSimulationManagerProcess.hh"
|
|
|
|
|
|
/////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
|
|
F01PhysicsList::F01PhysicsList(F01DetectorConstruction* p)
|
|
: G4VUserPhysicsList(), MaxChargedStep(DBL_MAX),
|
|
thePhotoElectricEffect(0), theComptonScattering(0), theGammaConversion(0),
|
|
theeminusMultipleScattering(0), theeminusIonisation(0),
|
|
theeminusBremsstrahlung(0),
|
|
theeplusMultipleScattering(0),theeplusIonisation(0),
|
|
theeplusBremsstrahlung(0), theeplusAnnihilation(0),
|
|
theeminusStepCut(0),theeplusStepCut(0)
|
|
{
|
|
pDet = p;
|
|
|
|
defaultCutValue = 1.000*mm ;
|
|
|
|
cutForGamma = defaultCutValue ;
|
|
cutForElectron = defaultCutValue ;
|
|
|
|
SetVerboseLevel(1);
|
|
physicsListMessenger = new F01PhysicsListMessenger(this);
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
|
|
F01PhysicsList::~F01PhysicsList()
|
|
{
|
|
delete physicsListMessenger;
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
|
|
void F01PhysicsList::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();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
|
|
void F01PhysicsList::ConstructBosons()
|
|
{
|
|
// gamma
|
|
|
|
G4Gamma::GammaDefinition();
|
|
|
|
// charged geantino
|
|
|
|
G4ChargedGeantino::ChargedGeantinoDefinition();
|
|
|
|
|
|
}
|
|
|
|
void F01PhysicsList::ConstructLeptons()
|
|
{
|
|
// leptons
|
|
|
|
G4Electron::ElectronDefinition();
|
|
G4Positron::PositronDefinition();
|
|
G4MuonPlus::MuonPlusDefinition();
|
|
G4MuonMinus::MuonMinusDefinition();
|
|
|
|
G4NeutrinoE::NeutrinoEDefinition();
|
|
G4AntiNeutrinoE::AntiNeutrinoEDefinition();
|
|
G4NeutrinoMu::NeutrinoMuDefinition();
|
|
G4AntiNeutrinoMu::AntiNeutrinoMuDefinition();
|
|
}
|
|
|
|
void F01PhysicsList::ConstructMesons()
|
|
{
|
|
// mesons
|
|
|
|
G4PionPlus::PionPlusDefinition();
|
|
G4PionMinus::PionMinusDefinition();
|
|
G4PionZero::PionZeroDefinition();
|
|
G4KaonPlus::KaonPlusDefinition();
|
|
G4KaonMinus::KaonMinusDefinition();
|
|
}
|
|
|
|
|
|
void F01PhysicsList::ConstructBarions()
|
|
{
|
|
// barions
|
|
|
|
G4Proton::ProtonDefinition();
|
|
G4AntiProton::AntiProtonDefinition();
|
|
}
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
|
|
void F01PhysicsList::ConstructProcess()
|
|
{
|
|
AddTransportation();
|
|
AddParameterisation();
|
|
|
|
ConstructEM();
|
|
ConstructGeneral();
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
//
|
|
|
|
#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"
|
|
#include "G4PAIonisation.hh"
|
|
#include "G4ForwardXrayTR.hh"
|
|
|
|
#include "F01StepCut.hh"
|
|
|
|
#include "G4IonisationByLogicalVolume.hh"
|
|
|
|
void F01PhysicsList::ConstructEM()
|
|
{
|
|
theParticleIterator->reset();
|
|
|
|
while( (*theParticleIterator)() )
|
|
{
|
|
G4ParticleDefinition* particle = theParticleIterator->value();
|
|
G4ProcessManager* pmanager = particle->GetProcessManager();
|
|
G4String particleName = particle->GetParticleName();
|
|
|
|
if (particleName == "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-")
|
|
{
|
|
// Construct processes for electron
|
|
|
|
// theeminusMultipleScattering = new G4MultipleScattering();
|
|
theeminusIonisation = new G4eIonisation();
|
|
theeminusBremsstrahlung = new G4eBremsstrahlung();
|
|
|
|
|
|
theeminusStepCut = new F01StepCut();
|
|
|
|
// pmanager->AddProcess(theeminusMultipleScattering,-1,1,1);
|
|
|
|
pmanager->AddProcess(theeminusIonisation,-1,2,2);
|
|
|
|
|
|
pmanager->AddProcess(theeminusBremsstrahlung,-1,1,1);
|
|
|
|
|
|
pmanager->AddProcess(theeminusStepCut,-1,-1,4);
|
|
theeminusStepCut->SetMaxStep(MaxChargedStep) ;
|
|
|
|
}
|
|
else if (particleName == "e+")
|
|
{
|
|
// Construct processes for positron
|
|
|
|
// theeplusMultipleScattering = new G4MultipleScattering();
|
|
theeplusIonisation = new G4eIonisation();
|
|
theeplusBremsstrahlung = new G4eBremsstrahlung();
|
|
// theeplusAnnihilation = new G4eplusAnnihilation();
|
|
|
|
|
|
theeplusStepCut = new F01StepCut();
|
|
|
|
// pmanager->AddProcess(theeplusMultipleScattering,-1,1,1);
|
|
pmanager->AddProcess(theeplusIonisation,-1,2,2);
|
|
pmanager->AddProcess(theeplusBremsstrahlung,-1,-1,3);
|
|
// pmanager->AddProcess(theeplusAnnihilation,0,-1,4);
|
|
|
|
|
|
pmanager->AddProcess(theeplusStepCut,-1,-1,5);
|
|
theeplusStepCut->SetMaxStep(MaxChargedStep) ;
|
|
|
|
}
|
|
else if( particleName == "mu+" ||
|
|
particleName == "mu-" )
|
|
{
|
|
// Construct processes for muon+
|
|
|
|
F01StepCut* muonStepCut = new F01StepCut();
|
|
|
|
G4MuIonisation* themuIonisation = new G4MuIonisation() ;
|
|
pmanager->AddProcess(new G4MultipleScattering(),-1,1,1);
|
|
pmanager->AddProcess(themuIonisation,-1,2,2);
|
|
pmanager->AddProcess(new G4MuBremsstrahlung(),-1,-1,3);
|
|
pmanager->AddProcess(new G4MuPairProduction(),-1,-1,4);
|
|
|
|
pmanager->AddProcess( muonStepCut,-1,-1,3);
|
|
muonStepCut->SetMaxStep(MaxChargedStep) ;
|
|
|
|
}
|
|
else if (
|
|
particleName == "proton"
|
|
|| particleName == "antiproton"
|
|
|| particleName == "pi+"
|
|
|| particleName == "pi-"
|
|
|| particleName == "kaon+"
|
|
|| particleName == "kaon-"
|
|
)
|
|
{
|
|
F01StepCut* thehadronStepCut = new F01StepCut();
|
|
|
|
G4hIonisation* thehIonisation = new G4hIonisation() ;
|
|
G4MultipleScattering* thehMultipleScattering =
|
|
new G4MultipleScattering() ;
|
|
|
|
|
|
pmanager->AddProcess(thehMultipleScattering,-1,1,1);
|
|
pmanager->AddProcess(thehIonisation,-1,2,2);
|
|
|
|
|
|
pmanager->AddProcess( thehadronStepCut,-1,-1,3);
|
|
thehadronStepCut->SetMaxStep(MaxChargedStep) ;
|
|
thehadronStepCut->SetMaxStep(10*mm) ;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#include "G4Decay.hh"
|
|
|
|
void F01PhysicsList::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);
|
|
}
|
|
}
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
void F01PhysicsList::AddParameterisation()
|
|
{
|
|
G4FastSimulationManagerProcess* theFastSimulationManagerProcess =
|
|
new G4FastSimulationManagerProcess() ;
|
|
theParticleIterator->reset();
|
|
|
|
while( (*theParticleIterator)() )
|
|
{
|
|
G4ParticleDefinition* particle = theParticleIterator->value() ;
|
|
G4ProcessManager* pmanager = particle->GetProcessManager() ;
|
|
|
|
// both postStep and alongStep action are required: because
|
|
// of the use of ghost volumes. If no ghost, the postStep is sufficient.
|
|
|
|
pmanager->AddProcess(theFastSimulationManagerProcess, -1, 1, 1);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
void F01PhysicsList::SetCuts()
|
|
{
|
|
G4Timer theTimer ;
|
|
theTimer.Start() ;
|
|
if (verboseLevel >0)
|
|
{
|
|
G4cout << "F01PhysicsList::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(cutForGamma,"gamma");
|
|
|
|
SetCutValue(cutForElectron,"e-");
|
|
SetCutValue(cutForElectron,"e+");
|
|
|
|
if (verboseLevel>1) DumpCutValuesTable();
|
|
|
|
theTimer.Stop();
|
|
G4cout.precision(6);
|
|
G4cout << G4endl ;
|
|
G4cout << "total time(SetCuts)=" << theTimer.GetUserElapsed() << " s " <<G4endl;
|
|
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
void F01PhysicsList::SetGammaCut(G4double val)
|
|
{
|
|
cutForGamma = val;
|
|
}
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
void F01PhysicsList::SetElectronCut(G4double val)
|
|
{
|
|
cutForElectron = val;
|
|
}
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
void F01PhysicsList::SetMaxStep(G4double step)
|
|
{
|
|
MaxChargedStep = step ;
|
|
G4cout << " MaxChargedStep=" << MaxChargedStep << G4endl;
|
|
G4cout << G4endl;
|
|
}
|