Import Geant4 9.0.0 source tree
This commit is contained in:
@@ -23,8 +23,8 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4hMultipleScattering.cc,v 1.3 2007/03/20 15:40:59 vnivanch Exp $
|
||||
// GEANT4 tag $Name: geant4-08-03 $
|
||||
// $Id: G4hMultipleScattering.cc,v 1.6 2007/06/11 15:01:26 vnivanch Exp $
|
||||
// GEANT4 tag $Name: geant4-09-00 $
|
||||
//
|
||||
// -----------------------------------------------------------------------------
|
||||
//
|
||||
@@ -47,8 +47,7 @@
|
||||
|
||||
#include "G4hMultipleScattering.hh"
|
||||
#include "G4UrbanMscModel.hh"
|
||||
#include "G4TransportationManager.hh"
|
||||
#include "G4Navigator.hh"
|
||||
#include "G4MscStepLimitType.hh"
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
@@ -57,25 +56,17 @@ using namespace std;
|
||||
G4hMultipleScattering::G4hMultipleScattering(const G4String& processName)
|
||||
: G4VMultipleScattering(processName)
|
||||
{
|
||||
lowKineticEnergy = 0.1*keV;
|
||||
highKineticEnergy = 100.*TeV;
|
||||
totBins = 120;
|
||||
|
||||
facrange = 0.2;
|
||||
dtrl = 0.05;
|
||||
lambdalimit = 1.*mm;
|
||||
facgeom = 0.1;
|
||||
|
||||
steppingAlgorithm = false;
|
||||
samplez = false ;
|
||||
isInitialized = false;
|
||||
|
||||
SetBinning(totBins);
|
||||
SetMinKinEnergy(lowKineticEnergy);
|
||||
SetMaxKinEnergy(highKineticEnergy);
|
||||
|
||||
SetLateralDisplasmentFlag(true);
|
||||
SetSkin(0.0);
|
||||
SetRangeFactor(0.2);
|
||||
SetGeomFactor(0.1);
|
||||
SetStepLimitType(fMinimal);
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
@@ -92,43 +83,34 @@ G4bool G4hMultipleScattering::IsApplicable (const G4ParticleDefinition& p)
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void G4hMultipleScattering::MscStepLimitation(G4bool algorithm, G4double factor)
|
||||
{
|
||||
steppingAlgorithm = algorithm;
|
||||
if (factor > 0.) SetFacrange(factor);
|
||||
else { if (algorithm) SetFacrange(0.02); else SetFacrange(0.2);}
|
||||
|
||||
if(verboseLevel > 1)
|
||||
G4cout << "Stepping algorithm is set to " << steppingAlgorithm
|
||||
<< " with facrange = " << facrange << G4endl;
|
||||
}
|
||||
|
||||
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
||||
|
||||
void G4hMultipleScattering::InitialiseProcess(const G4ParticleDefinition* p)
|
||||
{
|
||||
// Modification of parameters between runs
|
||||
if(isInitialized) {
|
||||
mscUrban->SetMscStepLimitation(steppingAlgorithm, facrange);
|
||||
if (p->GetParticleType() != "nucleus") {
|
||||
mscUrban->SetStepLimitType(StepLimitType());
|
||||
mscUrban->SetLateralDisplasmentFlag(LateralDisplasmentFlag());
|
||||
mscUrban->SetSkin(Skin());
|
||||
mscUrban->SetRangeFactor(RangeFactor());
|
||||
mscUrban->SetGeomFactor(GeomFactor());
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
// initialisation of parameters
|
||||
G4String part_name = p->GetParticleName();
|
||||
mscUrban = new G4UrbanMscModel(RangeFactor(),dtrl,lambdalimit,
|
||||
GeomFactor(),Skin(),
|
||||
samplez,StepLimitType());
|
||||
mscUrban->SetLateralDisplasmentFlag(LateralDisplasmentFlag());
|
||||
|
||||
if (p->GetParticleType() == "nucleus") {
|
||||
mscUrban->SetStepLimitType(fMinimal);
|
||||
SetLateralDisplasmentFlag(false);
|
||||
SetBuildLambdaTable(false);
|
||||
SetSkin(0.0);
|
||||
} else {
|
||||
SetBuildLambdaTable(true);
|
||||
SetRangeFactor(0.2);
|
||||
}
|
||||
mscUrban = new G4UrbanMscModel(facrange,dtrl,lambdalimit,
|
||||
facgeom,Skin(),
|
||||
samplez,steppingAlgorithm);
|
||||
mscUrban->SetLateralDisplasmentFlag(LateralDisplasmentFlag());
|
||||
mscUrban->SetLowEnergyLimit(lowKineticEnergy);
|
||||
mscUrban->SetHighEnergyLimit(highKineticEnergy);
|
||||
AddEmModel(1,mscUrban);
|
||||
isInitialized = true;
|
||||
}
|
||||
@@ -137,9 +119,9 @@ void G4hMultipleScattering::InitialiseProcess(const G4ParticleDefinition* p)
|
||||
|
||||
void G4hMultipleScattering::PrintInfo()
|
||||
{
|
||||
G4cout << " Boundary/stepping algorithm is active with facrange= "
|
||||
<< facrange
|
||||
<< " Step limitation " << steppingAlgorithm
|
||||
G4cout << " Boundary/stepping algorithm is active with RangeFactor= "
|
||||
<< RangeFactor()
|
||||
<< " Step limit type " << StepLimitType()
|
||||
<< G4endl;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user