Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes
G4VProcess Class Referenceabstract

#include <G4VProcess.hh>

Inheritance diagram for G4VProcess:
DMXSpecialCuts G4AdjointProcessEquivalentToDirectProcess G4BiasingProcessInterface G4Cerenkov G4CoupledTransportation G4FastSimulationManagerProcess G4ImportanceProcess G4MonopoleTransportation G4ParallelWorldProcess G4ParallelWorldScoringProcess G4ScoreSplittingProcess G4SpecialCuts G4StepLimiter G4Transportation G4UserSpecialCuts G4VContinuousDiscreteProcess G4VContinuousProcess G4VDiscreteProcess G4VITProcess G4VRestContinuousDiscreteProcess G4VRestContinuousProcess G4VRestDiscreteProcess G4VRestProcess G4WeightCutOffProcess G4WeightWindowProcess G4WrapperProcess

Public Member Functions

 G4VProcess (const G4String &aName="NoName", G4ProcessType aType=fNotDefined)
 
 G4VProcess (const G4VProcess &right)
 
virtual ~G4VProcess ()
 
G4int operator== (const G4VProcess &right) const
 
G4int operator!= (const G4VProcess &right) const
 
virtual G4VParticleChangePostStepDoIt (const G4Track &track, const G4Step &stepData)=0
 
virtual G4VParticleChangeAlongStepDoIt (const G4Track &track, const G4Step &stepData)=0
 
virtual G4VParticleChangeAtRestDoIt (const G4Track &track, const G4Step &stepData)=0
 
virtual G4double AlongStepGetPhysicalInteractionLength (const G4Track &track, G4double previousStepSize, G4double currentMinimumStep, G4double &proposedSafety, G4GPILSelection *selection)=0
 
virtual G4double AtRestGetPhysicalInteractionLength (const G4Track &track, G4ForceCondition *condition)=0
 
virtual G4double PostStepGetPhysicalInteractionLength (const G4Track &track, G4double previousStepSize, G4ForceCondition *condition)=0
 
G4double GetCurrentInteractionLength () const
 
void SetPILfactor (G4double value)
 
G4double GetPILfactor () const
 
G4double AlongStepGPIL (const G4Track &track, G4double previousStepSize, G4double currentMinimumStep, G4double &proposedSafety, G4GPILSelection *selection)
 
G4double AtRestGPIL (const G4Track &track, G4ForceCondition *condition)
 
G4double PostStepGPIL (const G4Track &track, G4double previousStepSize, G4ForceCondition *condition)
 
virtual G4bool IsApplicable (const G4ParticleDefinition &)
 
virtual void BuildPhysicsTable (const G4ParticleDefinition &)
 
virtual void PreparePhysicsTable (const G4ParticleDefinition &)
 
virtual G4bool StorePhysicsTable (const G4ParticleDefinition *, const G4String &, G4bool)
 
virtual G4bool RetrievePhysicsTable (const G4ParticleDefinition *, const G4String &, G4bool)
 
const G4StringGetPhysicsTableFileName (const G4ParticleDefinition *, const G4String &directory, const G4String &tableName, G4bool ascii=false)
 
const G4StringGetProcessName () const
 
G4ProcessType GetProcessType () const
 
void SetProcessType (G4ProcessType)
 
G4int GetProcessSubType () const
 
void SetProcessSubType (G4int)
 
virtual void StartTracking (G4Track *)
 
virtual void EndTracking ()
 
virtual void SetProcessManager (const G4ProcessManager *)
 
virtual const G4ProcessManagerGetProcessManager ()
 
virtual void ResetNumberOfInteractionLengthLeft ()
 
G4double GetNumberOfInteractionLengthLeft () const
 
G4double GetTotalNumberOfInteractionLengthTraversed () const
 
G4bool isAtRestDoItIsEnabled () const
 
G4bool isAlongStepDoItIsEnabled () const
 
G4bool isPostStepDoItIsEnabled () const
 
virtual void DumpInfo () const
 
void SetVerboseLevel (G4int value)
 
G4int GetVerboseLevel () const
 
virtual void SetMasterProcess (G4VProcess *masterP)
 
const G4VProcessGetMasterProcess () const
 
virtual void BuildWorkerPhysicsTable (const G4ParticleDefinition &part)
 
virtual void PrepareWorkerPhysicsTable (const G4ParticleDefinition &)
 

Static Public Member Functions

static const G4StringGetProcessTypeName (G4ProcessType)
 

Protected Member Functions

void SubtractNumberOfInteractionLengthLeft (G4double previousStepSize)
 
void ClearNumberOfInteractionLengthLeft ()
 

Protected Attributes

const G4ProcessManageraProcessManager
 
G4VParticleChangepParticleChange
 
G4ParticleChange aParticleChange
 
G4double theNumberOfInteractionLengthLeft
 
G4double currentInteractionLength
 
G4double theInitialNumberOfInteractionLength
 
G4String theProcessName
 
G4String thePhysicsTableFileName
 
G4ProcessType theProcessType
 
G4int theProcessSubType
 
G4double thePILfactor
 
G4bool enableAtRestDoIt
 
G4bool enableAlongStepDoIt
 
G4bool enablePostStepDoIt
 
G4int verboseLevel
 

Detailed Description

Definition at line 75 of file G4VProcess.hh.

Constructor & Destructor Documentation

G4VProcess::G4VProcess ( const G4String aName = "NoName",
G4ProcessType  aType = fNotDefined 
)

Definition at line 52 of file G4VProcess.cc.

References aParticleChange, and pParticleChange.

53  : aProcessManager(0),
54  pParticleChange(0),
58  theProcessName(aName),
59  theProcessType(aType),
61  thePILfactor(1.0),
62  enableAtRestDoIt(true),
63  enableAlongStepDoIt(true),
64  enablePostStepDoIt(true),
65  verboseLevel(0),
66  masterProcessShadow(0)
67 
68 {
70 }
G4ProcessType theProcessType
Definition: G4VProcess.hh:340
G4int verboseLevel
Definition: G4VProcess.hh:368
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
G4int theProcessSubType
Definition: G4VProcess.hh:343
G4bool enableAtRestDoIt
Definition: G4VProcess.hh:350
G4double thePILfactor
Definition: G4VProcess.hh:346
G4double currentInteractionLength
Definition: G4VProcess.hh:297
G4bool enablePostStepDoIt
Definition: G4VProcess.hh:352
const G4ProcessManager * aProcessManager
Definition: G4VProcess.hh:280
G4VParticleChange * pParticleChange
Definition: G4VProcess.hh:283
G4ParticleChange aParticleChange
Definition: G4VProcess.hh:289
G4String theProcessName
Definition: G4VProcess.hh:335
G4bool enableAlongStepDoIt
Definition: G4VProcess.hh:351
G4double theInitialNumberOfInteractionLength
Definition: G4VProcess.hh:300
G4VProcess::G4VProcess ( const G4VProcess right)

Definition at line 76 of file G4VProcess.cc.

77  : aProcessManager(0),
78  pParticleChange(0),
85  thePILfactor(1.0),
90  masterProcessShadow(right.masterProcessShadow)
91 {
92 }
G4ProcessType theProcessType
Definition: G4VProcess.hh:340
G4int verboseLevel
Definition: G4VProcess.hh:368
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
G4int theProcessSubType
Definition: G4VProcess.hh:343
G4bool enableAtRestDoIt
Definition: G4VProcess.hh:350
G4double thePILfactor
Definition: G4VProcess.hh:346
G4double currentInteractionLength
Definition: G4VProcess.hh:297
G4bool enablePostStepDoIt
Definition: G4VProcess.hh:352
const G4ProcessManager * aProcessManager
Definition: G4VProcess.hh:280
G4VParticleChange * pParticleChange
Definition: G4VProcess.hh:283
G4String theProcessName
Definition: G4VProcess.hh:335
G4bool enableAlongStepDoIt
Definition: G4VProcess.hh:351
G4double theInitialNumberOfInteractionLength
Definition: G4VProcess.hh:300
G4VProcess::~G4VProcess ( )
virtual

Definition at line 72 of file G4VProcess.cc.

73 {
74 }

Member Function Documentation

virtual G4VParticleChange* G4VProcess::AlongStepDoIt ( const G4Track track,
const G4Step stepData 
)
pure virtual
virtual G4double G4VProcess::AlongStepGetPhysicalInteractionLength ( const G4Track track,
G4double  previousStepSize,
G4double  currentMinimumStep,
G4double proposedSafety,
G4GPILSelection selection 
)
pure virtual
G4double G4VProcess::AlongStepGPIL ( const G4Track track,
G4double  previousStepSize,
G4double  currentMinimumStep,
G4double proposedSafety,
G4GPILSelection selection 
)
inline

Definition at line 479 of file G4VProcess.hh.

References AlongStepGetPhysicalInteractionLength().

484 {
486  =AlongStepGetPhysicalInteractionLength(track, previousStepSize, currentMinimumStep, proposedSafety, selection);
487  return value;
488 }
virtual G4double AlongStepGetPhysicalInteractionLength(const G4Track &track, G4double previousStepSize, G4double currentMinimumStep, G4double &proposedSafety, G4GPILSelection *selection)=0
const XML_Char int const XML_Char * value
double G4double
Definition: G4Types.hh:76
virtual G4VParticleChange* G4VProcess::AtRestDoIt ( const G4Track track,
const G4Step stepData 
)
pure virtual
virtual G4double G4VProcess::AtRestGetPhysicalInteractionLength ( const G4Track track,
G4ForceCondition condition 
)
pure virtual
G4double G4VProcess::AtRestGPIL ( const G4Track track,
G4ForceCondition condition 
)
inline

Definition at line 490 of file G4VProcess.hh.

References AtRestGetPhysicalInteractionLength(), and thePILfactor.

Referenced by G4ITStepProcessor::GetAtRestIL().

492 {
495  return thePILfactor*value;
496 }
G4double condition(const G4ErrorSymMatrix &m)
virtual G4double AtRestGetPhysicalInteractionLength(const G4Track &track, G4ForceCondition *condition)=0
G4double thePILfactor
Definition: G4VProcess.hh:346
const XML_Char int const XML_Char * value
double G4double
Definition: G4Types.hh:76
virtual void G4VProcess::BuildPhysicsTable ( const G4ParticleDefinition )
inlinevirtual
void G4VProcess::BuildWorkerPhysicsTable ( const G4ParticleDefinition part)
virtual

Reimplemented in G4BiasingProcessInterface.

Definition at line 202 of file G4VProcess.cc.

References BuildPhysicsTable().

Referenced by G4BiasingProcessInterface::BuildWorkerPhysicsTable().

203 {
204  BuildPhysicsTable(part);
205 }
virtual void BuildPhysicsTable(const G4ParticleDefinition &)
Definition: G4VProcess.hh:210
void G4VProcess::ClearNumberOfInteractionLengthLeft ( )
inlineprotected
void G4VProcess::DumpInfo ( ) const
virtual

Definition at line 178 of file G4VProcess.cc.

References G4cout, G4endl, GetProcessTypeName(), theProcessName, theProcessSubType, and theProcessType.

Referenced by G4ProcessTable::DumpInfo(), export_G4VProcess(), and G4ProcessManagerMessenger::SetNewValue().

179 {
180  G4cout << "Process Name " << theProcessName ;
181  G4cout << " : Type[" << GetProcessTypeName(theProcessType) << "]";
182  G4cout << " : SubType[" << theProcessSubType << "]"<< G4endl;
183 }
G4ProcessType theProcessType
Definition: G4VProcess.hh:340
static const G4String & GetProcessTypeName(G4ProcessType)
Definition: G4VProcess.cc:141
G4int theProcessSubType
Definition: G4VProcess.hh:343
G4GLOB_DLL std::ostream G4cout
#define G4endl
Definition: G4ios.hh:61
G4String theProcessName
Definition: G4VProcess.hh:335
void G4VProcess::EndTracking ( )
virtual
G4double G4VProcess::GetCurrentInteractionLength ( ) const
inline

Definition at line 462 of file G4VProcess.hh.

References currentInteractionLength.

Referenced by G4BiasingProcessInterface::PostStepGetPhysicalInteractionLength().

463 {
465 }
G4double currentInteractionLength
Definition: G4VProcess.hh:297
const G4VProcess * G4VProcess::GetMasterProcess ( ) const
inline
G4double G4VProcess::GetNumberOfInteractionLengthLeft ( ) const
inline

Definition at line 453 of file G4VProcess.hh.

References theNumberOfInteractionLengthLeft.

454 {
456 }
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
const G4String & G4VProcess::GetPhysicsTableFileName ( const G4ParticleDefinition particle,
const G4String directory,
const G4String tableName,
G4bool  ascii = false 
)

Definition at line 186 of file G4VProcess.cc.

References G4ParticleDefinition::GetParticleName(), thePhysicsTableFileName, and theProcessName.

Referenced by export_G4VProcess(), G4VEmProcess::RetrievePhysicsTable(), G4VMultipleScattering::StorePhysicsTable(), and G4VEmProcess::StorePhysicsTable().

190 {
191  G4String thePhysicsTableFileExt;
192  if (ascii) thePhysicsTableFileExt = ".asc";
193  else thePhysicsTableFileExt = ".dat";
194 
195  thePhysicsTableFileName = directory + "/";
196  thePhysicsTableFileName += tableName + "." + theProcessName + ".";
197  thePhysicsTableFileName += particle->GetParticleName() + thePhysicsTableFileExt;
198 
200 }
const G4String & GetParticleName() const
G4String thePhysicsTableFileName
Definition: G4VProcess.hh:338
G4String theProcessName
Definition: G4VProcess.hh:335
G4double G4VProcess::GetPILfactor ( ) const
inline

Definition at line 474 of file G4VProcess.hh.

References thePILfactor.

Referenced by export_G4VProcess().

475 {
476  return thePILfactor;
477 }
G4double thePILfactor
Definition: G4VProcess.hh:346
const G4ProcessManager * G4VProcess::GetProcessManager ( )
inlinevirtual

Reimplemented in G4BiasingProcessInterface, and G4WrapperProcess.

Definition at line 514 of file G4VProcess.hh.

References aProcessManager.

Referenced by G4EmManager::BuildPhysicsTable(), G4WrapperProcess::GetProcessManager(), and G4BiasingProcessInterface::GetProcessManager().

515 {
516  return aProcessManager;
517 }
const G4ProcessManager * aProcessManager
Definition: G4VProcess.hh:280
const G4String & G4VProcess::GetProcessName ( ) const
inline

Definition at line 408 of file G4VProcess.hh.

References theProcessName.

Referenced by G4EmProcessOptions::ActivateForcedInteraction(), G4VEmProcess::ActivateForcedInteraction(), G4VEnergyLossProcess::ActivateForcedInteraction(), G4EmProcessOptions::ActivateSecondaryBiasing(), G4VEmProcess::ActivateSecondaryBiasing(), G4VEnergyLossProcess::ActivateSecondaryBiasing(), G4EmProcessOptions::ActivateSecondaryBiasingForGamma(), G4VEnergyLossProcess::AddCollaborativeProcess(), G4ProcessManager::AddProcess(), G4SteppingVerbose::AlongStepDoItAllDone(), G4SteppingVerbose::AlongStepDoItOneByOne(), G4VContinuousProcess::AlongStepGetPhysicalInteractionLength(), G4VContinuousDiscreteProcess::AlongStepGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::AlongStepGetPhysicalInteractionLength(), G4VRestContinuousProcess::AlongStepGetPhysicalInteractionLength(), G4SteppingVerbose::AtRestDoItInvoked(), G4VITRestProcess::AtRestGetPhysicalInteractionLength(), G4AntiNeutronAnnihilationAtRest::AtRestGetPhysicalInteractionLength(), G4VRestContinuousProcess::AtRestGetPhysicalInteractionLength(), G4VRestProcess::AtRestGetPhysicalInteractionLength(), G4VITRestDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4VRestDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4HadronicProcess::BiasCrossSectionByFactor(), G4VXTRenergyLoss::BuildAngleForEnergyBank(), G4VEnergyLossProcess::BuildDEDXTable(), G4VUserPhysicsList::BuildIntegralPhysicsTable(), G4VEnergyLossProcess::BuildLambdaTable(), G4DNABrownianTransportation::BuildPhysicsTable(), G4LowEnergyIonisation::BuildPhysicsTable(), G4LowEnergyBremsstrahlung::BuildPhysicsTable(), G4EmManager::BuildPhysicsTable(), G4VMultipleScattering::BuildPhysicsTable(), G4VEmProcess::BuildPhysicsTable(), G4LossTableManager::BuildPhysicsTable(), G4VEnergyLossProcess::BuildPhysicsTable(), G4ScreenedNuclearRecoil::BuildPhysicsTable(), G4HadronicProcess::CheckEnergyMomentumConservation(), G4ProcessManager::CheckOrderingParameters(), G4HadronicProcess::CheckResult(), LXeStackingAction::ClassifyNewTrack(), OpNoviceStackingAction::ClassifyNewTrack(), G4StackChecker::ClassifyNewTrack(), G4HadronDElasticPhysics::ConstructProcess(), G4HadronHElasticPhysics::ConstructProcess(), G4IonElasticPhysics::ConstructProcess(), G4HadronElasticPhysics::ConstructProcess(), G4GenericBiasingPhysics::ConstructProcess(), G4RichTrajectory::CreateAttValues(), G4RichTrajectoryPoint::CreateAttValues(), G4VPhononProcess::CreateSecondary(), G4HadronElasticProcess::Description(), DMXMaxTimeCuts::DMXMaxTimeCuts(), DMXMinEkineCuts::DMXMinEkineCuts(), DMXSpecialCuts::DMXSpecialCuts(), G4SteppingVerbose::DPSLAlongStep(), G4SteppingVerbose::DPSLPostStep(), G4HadronicProcessStore::Dump(), G4HadronicProcess::DumpState(), Em10StepCut::Em10StepCut(), export_G4VProcess(), F01StepCut::F01StepCut(), F02StepCut::F02StepCut(), F03StepCut::F03StepCut(), F04StepMax::F04StepMax(), G4AntiNeutronAnnihilationAtRest::G4AntiNeutronAnnihilationAtRest(), G4BiasingProcessInterface::G4BiasingProcessInterface(), G4Cerenkov::G4Cerenkov(), G4ErrorEnergyLoss::G4ErrorEnergyLoss(), G4ErrorTrackLengthTarget::G4ErrorTrackLengthTarget(), G4FastSimulationManagerProcess::G4FastSimulationManagerProcess(), G4ImportanceProcess::G4ImportanceProcess(), G4LowEnergyCompton::G4LowEnergyCompton(), G4LowEnergyGammaConversion::G4LowEnergyGammaConversion(), G4LowEnergyPhotoElectric::G4LowEnergyPhotoElectric(), G4LowEnergyPolarizedCompton::G4LowEnergyPolarizedCompton(), G4LowEnergyRayleigh::G4LowEnergyRayleigh(), G4MaxTimeCuts::G4MaxTimeCuts(), G4MinEkineCuts::G4MinEkineCuts(), G4OpAbsorption::G4OpAbsorption(), G4OpBoundaryProcess::G4OpBoundaryProcess(), G4OpMieHG::G4OpMieHG(), G4OpRayleigh::G4OpRayleigh(), G4OpWLS::G4OpWLS(), G4ParallelWorldProcess::G4ParallelWorldProcess(), G4ParallelWorldScoringProcess::G4ParallelWorldScoringProcess(), G4Scintillation::G4Scintillation(), G4ScoreSplittingProcess::G4ScoreSplittingProcess(), G4SpecialCuts::G4SpecialCuts(), G4StepLimiter::G4StepLimiter(), G4UserSpecialCuts::G4UserSpecialCuts(), G4VEmProcess::G4VEmProcess(), G4WeightCutOffProcess::G4WeightCutOffProcess(), G4WeightWindowProcess::G4WeightWindowProcess(), G4WeightWindowProcess::GetName(), G4ProcessManager::GetProcessVectorIndex(), G4hhIonisation::InitialiseEnergyLossProcess(), G4ProcessTable::Insert(), G4LossTableManager::LocalPhysicsTables(), G4ErrorPropagator::MakeOneStep(), G4VEmProcess::PostStepDoIt(), G4SteppingVerbose::PostStepDoItAllDone(), G4SteppingVerbose::PostStepDoItOneByOne(), G4DNASecondOrderReaction::PostStepGetPhysicalInteractionLength(), G4VITRestDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VRestDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VEmProcess::PostStepGetPhysicalInteractionLength(), G4VEnergyLossProcess::PostStepGetPhysicalInteractionLength(), LXeTrackingAction::PostUserTrackingAction(), WLSTrackingAction::PostUserTrackingAction(), G4EmConfigurator::PrepareModels(), G4EmManager::PreparePhysicsTable(), G4VMultipleScattering::PreparePhysicsTable(), G4LossTableManager::PreparePhysicsTable(), G4VEmProcess::PreparePhysicsTable(), G4VEnergyLossProcess::PreparePhysicsTable(), Em10TrackingAction::PreUserTrackingAction(), CexmcTrackingAction::PreUserTrackingAction(), G4HadronicProcessStore::PrintHtml(), G4AnnihiToMuPair::PrintInfoDefinition(), G4GammaConversionToMuons::PrintInfoDefinition(), G4LowEnergyIonisation::PrintInfoDefinition(), G4SynchrotronRadiation::PrintInfoDefinition(), G4LowEnergyBremsstrahlung::PrintInfoDefinition(), G4hImpactIonisation::PrintInfoDefinition(), G4VMultipleScattering::PrintInfoDefinition(), G4VEnergyLossProcess::PrintInfoDefinition(), G4StackManager::PushOneTrack(), G4EmManager::Register(), G4LossTableManager::Register(), G4EmManager::RegisterExtraParticle(), G4LossTableManager::RegisterExtraParticle(), G4HadronicProcess::RegisterMe(), G4PhysicsListHelper::RegisterProcess(), G4WrapperProcess::RegisterProcess(), G4ProcessTable::Remove(), G4ProcessPlacer::RemoveProcess(), G4ProcessManager::RemoveProcess(), G4VEmProcess::RetrievePhysicsTable(), G4VEnergyLossProcess::RetrievePhysicsTable(), G4VEmProcess::SetCrossSectionBiasingFactor(), G4VEnergyLossProcess::SetCrossSectionBiasingFactor(), G4VEnergyLossProcess::SetDEDXTable(), G4VEnergyLossProcess::SetInverseRangeTable(), G4VEnergyLossProcess::SetLambdaTable(), G4ProcessTableMessenger::SetNewValue(), G4ProcessTable::SetProcessActivation(), G4EmProcessOptions::SetProcessBiasingFactor(), G4ProcessManager::SetProcessOrdering(), G4ProcessManager::SetProcessOrderingToFirst(), G4ProcessManager::SetProcessOrderingToLast(), G4ProcessManager::SetProcessOrderingToSecond(), G4VEnergyLossProcess::SetRangeTableForLoss(), G4VEnergyLossProcess::SetSecondaryRangeTable(), G4VEnergyLossProcess::SetSubLambdaTable(), G4EmProcessOptions::SetVerbose(), G4FastSimulationManagerProcess::SetWorldVolume(), G4SteppingVerbose::ShowStep(), LXeSteppingVerbose::StepInfo(), ExN04SteppingVerbose::StepInfo(), OpNoviceSteppingVerbose::StepInfo(), SteppingVerbose::StepInfo(), eRositaSteppingVerbose::StepInfo(), FCALSteppingVerbose::StepInfo(), XrayFluoSteppingVerbose::StepInfo(), PurgMagSteppingVerbose::StepInfo(), ExN02SteppingVerbose::StepInfo(), RE05SteppingVerbose::StepInfo(), ExP01SteppingVerbose::StepInfo(), F05SteppingVerbose::StepInfo(), G4SteppingVerbose::StepInfo(), Em10SteppingVerbose::StepInfo(), F03SteppingVerbose::StepInfo(), F01SteppingVerbose::StepInfo(), F02SteppingVerbose::StepInfo(), G4VMultipleScattering::StorePhysicsTable(), G4VEmProcess::StorePhysicsTable(), G4VEnergyLossProcess::StorePhysicsTable(), exrdmSteppingAction::UserSteppingAction(), LXeSteppingAction::UserSteppingAction(), F04SteppingAction::UserSteppingAction(), PurgMagSteppingAction::UserSteppingAction(), G4ScoreSplittingProcess::Verbose(), G4ParallelWorldScoringProcess::Verbose(), G4SteppingVerbose::VerboseTrack(), WLSStepMax::WLSStepMax(), XrayTelStepCut::XrayTelStepCut(), and G4VEmProcess::~G4VEmProcess().

409 {
410  return theProcessName;
411 }
G4String theProcessName
Definition: G4VProcess.hh:335
G4int G4VProcess::GetProcessSubType ( ) const
inline
G4ProcessType G4VProcess::GetProcessType ( ) const
inline
const G4String & G4VProcess::GetProcessTypeName ( G4ProcessType  aType)
static

Definition at line 141 of file G4VProcess.cc.

References fDecay, fElectromagnetic, fGeneral, fHadronic, fNotDefined, fOptical, fParameterisation, fPhonon, fPhotolepton_hadron, fTransportation, and fUserDefined.

Referenced by G4RichTrajectory::CreateAttValues(), G4RichTrajectoryPoint::CreateAttValues(), G4ProcessManager::DumpInfo(), DumpInfo(), G4ProcessTableMessenger::G4ProcessTableMessenger(), and G4ProcessTableMessenger::GetCurrentValue().

142 {
143  switch (aType) {
144  case fNotDefined: return typeNotDefined; break;
145  case fTransportation: return typeTransportation; break;
146  case fElectromagnetic: return typeElectromagnetic; break;
147  case fOptical: return typeOptical; break;
148  case fHadronic: return typeHadronic; break;
149  case fPhotolepton_hadron: return typePhotolepton_hadron; break;
150  case fDecay: return typeDecay; break;
151  case fGeneral: return typeGeneral; break;
152  case fParameterisation: return typeParameterisation; break;
153  case fUserDefined: return typeUserDefined; break;
154  case fPhonon: return typePhonon; break;
155  default: ;
156  }
157 
158  return noType;
159 }
G4double G4VProcess::GetTotalNumberOfInteractionLengthTraversed ( ) const
inline

Definition at line 458 of file G4VProcess.hh.

References theInitialNumberOfInteractionLength, and theNumberOfInteractionLengthLeft.

459 {
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
G4double theInitialNumberOfInteractionLength
Definition: G4VProcess.hh:300
G4int G4VProcess::GetVerboseLevel ( ) const
inline

Definition at line 442 of file G4VProcess.hh.

References verboseLevel.

Referenced by G4ProcessTable::DumpInfo(), and export_G4VProcess().

443 {
444  return verboseLevel;
445 }
G4int verboseLevel
Definition: G4VProcess.hh:368
G4bool G4VProcess::isAlongStepDoItIsEnabled ( ) const
inline

Definition at line 526 of file G4VProcess.hh.

References enableAlongStepDoIt.

Referenced by G4ProcessManager::CheckOrderingParameters().

527 {
528  return enableAlongStepDoIt;
529 }
G4bool enableAlongStepDoIt
Definition: G4VProcess.hh:351
virtual G4bool G4VProcess::IsApplicable ( const G4ParticleDefinition )
inlinevirtual

Reimplemented in G4ScreenedNuclearRecoil, G4BiasingProcessInterface, G4OpBoundaryProcess, G4VEnergyLossProcess, G4Scintillation, G4WrapperProcess, G4Cerenkov, G4AdjointProcessEquivalentToDirectProcess, G4OpWLS, G4SynchrotronRadiationInMat, G4Decay, G4VEmProcess, G4OpRayleigh, G4VMultipleScattering, G4OpAbsorption, G4RadioactiveDecay, G4eLowEnergyLoss, G4PolarizedPhotoElectricEffect, G4MuIonisation, G4hIonisation, G4eBremsstrahlung, G4PhotoElectricEffect, G4eIonisation, G4SynchrotronRadiation, G4VXTRenergyLoss, G4MuBremsstrahlung, G4hImpactIonisation, G4GammaConversion, G4ionIonisation, G4PolarizedCompton, G4AdjointhMultipleScattering, G4LowEnergyBremsstrahlung, G4LowEnergyPolarizedCompton, G4MuPairProduction, G4ComptonScattering, G4ElectronCapture, G4LowEnergyIonisation, G4NeutronKiller, G4ElectronCapture, G4ElectronCapture, G4UnknownDecay, G4OpMieHG, G4NuclearStopping, G4ePolarizedIonisation, G4eplusAnnihilation, G4MuonMinusCaptureAtRest, G4LowEnergyPhotoElectric, G4mplIonisation, G4PolarizedGammaConversion, CexmcHadronicProcess, G4eplusPolarizedAnnihilation, G4hMultipleScattering, G4GammaConversionToMuons, G4LowEnergyGammaConversion, G4hBremsstrahlung, G4hhIonisation, G4MuMultipleScattering, G4eMultipleScattering, G4HadronStoppingProcess, G4LowEnergyCompton, G4LowEnergyRayleigh, G4eeToHadrons, G4TransitionRadiation, G4hPairProduction, G4alphaIonisation, G4DNAMolecularDissociation, G4AnnihiToMuPair, G4MicroElecInelastic, G4MuElecInelastic, G4CoulombScattering, G4VTransitionRadiation, G4MuonMinusCapture, G4RayleighScattering, G4AntiNeutronAnnihilationAtRest, G4HadronicAbsorptionFritiof, ML2StepMax, G4ChargeExchangeProcess, G4HadronFissionProcess, G4HadronCaptureProcess, IORTStepMax, G4ErrorEnergyLoss, StepMax, StepMax, StepMax, G4MicroElecElastic, G4MuElecElastic, G4HadronInelasticProcess, StepMax, G4DNAElectronSolvatation, G4DNAExcitation, G4DNAIonisation, StepMax, StepMax, StepLimiter, HadrontherapyStepMax, StepMax, StepMax, StepMax, StepMax, StepMax, StepMax, StepMax, StepMax, StepMax, WLSStepMax, StepMax, G4DNAChargeDecrease, G4DNAAttachment, G4DNAElastic, G4HadronicAbsorptionBertini, XrayFluoStepMax, G4DNAChargeIncrease, G4DNAVibExcitation, F04StepMax, StepMax, G4MuonNuclearProcess, G4VPhononProcess, and G4PhononDownconversion.

Definition at line 205 of file G4VProcess.hh.

Referenced by G4ProcessManager::AddProcess(), PhysicsList::AddStepMax(), XPhysicsList::ConstructProcess(), exrdmPhysListHadron::ConstructProcess(), export_G4VProcess(), G4AdjointProcessEquivalentToDirectProcess::IsApplicable(), G4WrapperProcess::IsApplicable(), and G4BiasingProcessInterface::IsApplicable().

205 {return true;}
G4bool G4VProcess::isAtRestDoItIsEnabled ( ) const
inline

Definition at line 520 of file G4VProcess.hh.

References enableAtRestDoIt.

Referenced by G4ProcessManager::CheckOrderingParameters().

521 {
522  return enableAtRestDoIt;
523 }
G4bool enableAtRestDoIt
Definition: G4VProcess.hh:350
G4bool G4VProcess::isPostStepDoItIsEnabled ( ) const
inline

Definition at line 532 of file G4VProcess.hh.

References enablePostStepDoIt.

Referenced by G4ProcessManager::CheckOrderingParameters().

533 {
534  return enablePostStepDoIt;
535 }
G4bool enablePostStepDoIt
Definition: G4VProcess.hh:352
G4int G4VProcess::operator!= ( const G4VProcess right) const

Definition at line 173 of file G4VProcess.cc.

174 {
175  return (this != &right);
176 }
G4int G4VProcess::operator== ( const G4VProcess right) const

Definition at line 168 of file G4VProcess.cc.

169 {
170  return (this == &right);
171 }
virtual G4VParticleChange* G4VProcess::PostStepDoIt ( const G4Track track,
const G4Step stepData 
)
pure virtual

Implemented in G4ScreenedNuclearRecoil, G4VEnergyLossProcess, G4OpBoundaryProcess, G4VMultipleScattering, G4hImpactIonisation, G4BiasingProcessInterface, G4VEmProcess, G4Scintillation, G4ParallelWorldScoringProcess, G4ScoreSplittingProcess, G4Cerenkov, G4FastSimulationManagerProcess, G4OpWLS, G4eLowEnergyLoss, G4ParallelWorldProcess, G4OpRayleigh, G4ITTransportation, G4OpAbsorption, G4hRDEnergyLoss, G4VContinuousProcess, G4GammaConversionToMuons, G4HadronicProcess, G4AnnihiToMuPair, G4VRestContinuousProcess, G4RDVeLowEnergyLoss, G4WeightWindowProcess, G4VRestProcess, G4ImportanceProcess, G4WeightCutOffProcess, G4VITRestProcess, G4VXTRenergyLoss, G4ForwardXrayTR, G4SynchrotronRadiationInMat, G4MonopoleTransportation, G4Decay, G4VAdjointReverseReaction, G4NeutronKiller, G4ElectronCapture, G4LowEnergyBremsstrahlung, G4CoupledTransportation, G4LowEnergyIonisation, G4LowEnergyPolarizedCompton, G4WrapperProcess, G4OpMieHG, G4ElectronCapture, G4ElectronCapture, G4ErrorTrackLengthTarget, G4Transportation, G4LowEnergyPhotoElectric, G4SynchrotronRadiation, G4VDiscreteProcess, G4LowEnergyGammaConversion, G4VErrorLimitProcess, G4VRestContinuousDiscreteProcess, XrayTelStepCut, G4AdjointProcessEquivalentToDirectProcess, G4VContinuousDiscreteProcess, G4VRestDiscreteProcess, G4LowEnergyCompton, G4DNABrownianTransportation, G4TransitionRadiation, G4LowEnergyRayleigh, G4VITRestDiscreteProcess, CexmcHadronicProcess, ML2StepMax, G4DNASecondOrderReaction, G4VTransitionRadiation, StepMax, IORTStepMax, StepMax, StepMax, G4UnknownDecay, CexmcStudiedProcess, DMXSpecialCuts, StepMax, StepMax, StepMax, StepMax, StepMax, G4SpecialCuts, StepMax, StepMax, StepMax, WLSStepMax, StepLimiter, HadrontherapyStepMax, StepMax, StepMax, StepMax, StepMax, G4UserSpecialCuts, StepMax, F04StepMax, G4StepLimiter, XrayFluoStepMax, F01StepCut, F02StepCut, F03StepCut, Em10StepCut, StepMax, G4HadronElasticProcess, G4PhononReflection, G4PhononDownconversion, and G4PhononScattering.

Referenced by G4ITStepProcessor::InvokePSDIP(), CexmcStudiedProcess::PostStepDoIt(), G4AdjointProcessEquivalentToDirectProcess::PostStepDoIt(), G4WrapperProcess::PostStepDoIt(), and G4BiasingProcessInterface::PostStepDoIt().

virtual G4double G4VProcess::PostStepGetPhysicalInteractionLength ( const G4Track track,
G4double  previousStepSize,
G4ForceCondition condition 
)
pure virtual

Implemented in G4VEnergyLossProcess, G4VMultipleScattering, G4BiasingProcessInterface, G4VEmProcess, G4ParallelWorldScoringProcess, G4Decay, G4ScoreSplittingProcess, G4Cerenkov, G4FastSimulationManagerProcess, G4ParallelWorldProcess, G4WrapperProcess, G4PolarizedCompton, G4ITTransportation, G4AdjointProcessEquivalentToDirectProcess, G4WeightWindowProcess, G4MonopoleTransportation, G4VRestContinuousProcess, G4eplusPolarizedAnnihilation, G4VRestProcess, G4CoupledTransportation, G4ImportanceProcess, G4UnknownDecay, G4WeightCutOffProcess, G4ePolarizedIonisation, G4VContinuousProcess, G4Transportation, G4VITRestProcess, G4NeutronKiller, G4ElectronCapture, G4HadronStoppingProcess, G4ElectronCapture, G4ElectronCapture, G4ErrorTrackLengthTarget, G4VDiscreteProcess, G4VRestContinuousDiscreteProcess, XrayTelStepCut, G4VContinuousDiscreteProcess, G4VRestDiscreteProcess, G4VErrorLimitProcess, ML2StepMax, G4ErrorStepLengthLimitProcess, G4VITRestDiscreteProcess, G4ErrorMagFieldLimitProcess, StepMax, G4DNASecondOrderReaction, IORTStepMax, CexmcStudiedProcess, StepMax, StepMax, StepMax, StepMax, StepMax, StepMax, StepMax, DMXMaxTimeCuts, StepMax, StepMax, StepMax, WLSStepMax, G4MaxTimeCuts, DMXSpecialCuts, StepLimiter, G4SpecialCuts, HadrontherapyStepMax, StepMax, StepMax, StepMax, StepMax, StepMax, F04StepMax, G4UserSpecialCuts, DMXMinEkineCuts, XrayFluoStepMax, G4MinEkineCuts, StepMax, G4StepLimiter, F01StepCut, F02StepCut, F03StepCut, and Em10StepCut.

Referenced by G4AdjointProcessEquivalentToDirectProcess::PostStepGetPhysicalInteractionLength(), G4WrapperProcess::PostStepGetPhysicalInteractionLength(), G4BiasingProcessInterface::PostStepGetPhysicalInteractionLength(), and PostStepGPIL().

G4double G4VProcess::PostStepGPIL ( const G4Track track,
G4double  previousStepSize,
G4ForceCondition condition 
)
inline

Definition at line 498 of file G4VProcess.hh.

References PostStepGetPhysicalInteractionLength(), and thePILfactor.

501 {
503  =PostStepGetPhysicalInteractionLength(track, previousStepSize, condition);
504  return thePILfactor*value;
505 }
G4double condition(const G4ErrorSymMatrix &m)
virtual G4double PostStepGetPhysicalInteractionLength(const G4Track &track, G4double previousStepSize, G4ForceCondition *condition)=0
G4double thePILfactor
Definition: G4VProcess.hh:346
const XML_Char int const XML_Char * value
double G4double
Definition: G4Types.hh:76
virtual void G4VProcess::PreparePhysicsTable ( const G4ParticleDefinition )
inlinevirtual
void G4VProcess::PrepareWorkerPhysicsTable ( const G4ParticleDefinition part)
virtual

Reimplemented in G4BiasingProcessInterface.

Definition at line 207 of file G4VProcess.cc.

References PreparePhysicsTable().

Referenced by G4BiasingProcessInterface::PrepareWorkerPhysicsTable().

208 {
209  PreparePhysicsTable(part);
210 }
virtual void PreparePhysicsTable(const G4ParticleDefinition &)
Definition: G4VProcess.hh:217
void G4VProcess::ResetNumberOfInteractionLengthLeft ( )
virtual

Reimplemented in G4WrapperProcess, G4BiasingProcessInterface, G4AdjointProcessEquivalentToDirectProcess, and G4VITProcess.

Definition at line 95 of file G4VProcess.cc.

References G4UniformRand, theInitialNumberOfInteractionLength, and theNumberOfInteractionLengthLeft.

Referenced by G4AntiNeutronAnnihilationAtRest::AtRestDoIt(), G4AntiNeutronAnnihilationAtRest::AtRestGetPhysicalInteractionLength(), G4VRestContinuousProcess::AtRestGetPhysicalInteractionLength(), G4VRestProcess::AtRestGetPhysicalInteractionLength(), G4VRestDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4VRestDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4BiasingProcessInterface::PostStepGetPhysicalInteractionLength(), G4AdjointProcessEquivalentToDirectProcess::ResetNumberOfInteractionLengthLeft(), G4BiasingProcessInterface::ResetNumberOfInteractionLengthLeft(), G4WrapperProcess::ResetNumberOfInteractionLengthLeft(), and G4Decay::StartTracking().

96 {
99 }
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
#define G4UniformRand()
Definition: Randomize.hh:87
G4double theInitialNumberOfInteractionLength
Definition: G4VProcess.hh:300
virtual G4bool G4VProcess::RetrievePhysicsTable ( const G4ParticleDefinition ,
const G4String ,
G4bool   
)
inlinevirtual
void G4VProcess::SetMasterProcess ( G4VProcess masterP)
virtual

Reimplemented in G4BiasingProcessInterface.

Definition at line 212 of file G4VProcess.cc.

Referenced by G4BiasingProcessInterface::SetMasterProcess().

213 {
214  masterProcessShadow = masterP;
215 }
void G4VProcess::SetPILfactor ( G4double  value)
inline

Definition at line 467 of file G4VProcess.hh.

References thePILfactor.

Referenced by export_G4VProcess().

468 {
469  if (value>0.) {
471  }
472 }
G4double thePILfactor
Definition: G4VProcess.hh:346
const XML_Char int const XML_Char * value
void G4VProcess::SetProcessManager ( const G4ProcessManager procMan)
inlinevirtual

Reimplemented in G4BiasingProcessInterface, and G4WrapperProcess.

Definition at line 508 of file G4VProcess.hh.

References aProcessManager.

Referenced by G4ProcessManager::AddProcess(), G4WrapperProcess::SetProcessManager(), and G4BiasingProcessInterface::SetProcessManager().

509 {
510  aProcessManager = procMan;
511 }
const G4ProcessManager * aProcessManager
Definition: G4VProcess.hh:280
void G4VProcess::SetProcessSubType ( G4int  value)
inline

Definition at line 432 of file G4VProcess.hh.

References theProcessSubType.

Referenced by G4alphaIonisation::G4alphaIonisation(), G4AnnihiToMuPair::G4AnnihiToMuPair(), G4AntiNeutronAnnihilationAtRest::G4AntiNeutronAnnihilationAtRest(), G4BiasingProcessInterface::G4BiasingProcessInterface(), G4Cerenkov::G4Cerenkov(), G4ComptonScattering::G4ComptonScattering(), G4CoulombScattering::G4CoulombScattering(), G4CoupledTransportation::G4CoupledTransportation(), G4Decay::G4Decay(), G4DecayWithSpin::G4DecayWithSpin(), G4DNAAttachment::G4DNAAttachment(), G4DNABrownianTransportation::G4DNABrownianTransportation(), G4DNAChargeDecrease::G4DNAChargeDecrease(), G4DNAChargeIncrease::G4DNAChargeIncrease(), G4DNAElastic::G4DNAElastic(), G4DNAElectronSolvatation::G4DNAElectronSolvatation(), G4DNAExcitation::G4DNAExcitation(), G4DNAIonisation::G4DNAIonisation(), G4DNAMolecularDissociation::G4DNAMolecularDissociation(), G4DNAVibExcitation::G4DNAVibExcitation(), G4eBremsstrahlung::G4eBremsstrahlung(), G4eeToHadrons::G4eeToHadrons(), G4eIonisation::G4eIonisation(), G4eplusAnnihilation::G4eplusAnnihilation(), G4eplusPolarizedAnnihilation::G4eplusPolarizedAnnihilation(), G4ePolarizedIonisation::G4ePolarizedIonisation(), G4FastSimulationManagerProcess::G4FastSimulationManagerProcess(), G4GammaConversion::G4GammaConversion(), G4GammaConversionToMuons::G4GammaConversionToMuons(), G4HadronicProcess::G4HadronicProcess(), G4hhIonisation::G4hhIonisation(), G4hIonisation::G4hIonisation(), G4ionIonisation::G4ionIonisation(), G4ITTransportation::G4ITTransportation(), G4MicroElecElastic::G4MicroElecElastic(), G4MicroElecInelastic::G4MicroElecInelastic(), G4MonopoleTransportation::G4MonopoleTransportation(), G4mplIonisation::G4mplIonisation(), G4MuBremsstrahlung::G4MuBremsstrahlung(), G4MuElecElastic::G4MuElecElastic(), G4MuElecInelastic::G4MuElecInelastic(), G4MuIonisation::G4MuIonisation(), G4MuonMinusCaptureAtRest::G4MuonMinusCaptureAtRest(), G4MuPairProduction::G4MuPairProduction(), G4NeutronKiller::G4NeutronKiller(), G4NuclearStopping::G4NuclearStopping(), G4OpAbsorption::G4OpAbsorption(), G4OpBoundaryProcess::G4OpBoundaryProcess(), G4OpMieHG::G4OpMieHG(), G4OpRayleigh::G4OpRayleigh(), G4OpWLS::G4OpWLS(), G4PhotoElectricEffect::G4PhotoElectricEffect(), G4PionDecayMakeSpin::G4PionDecayMakeSpin(), G4PolarizedCompton::G4PolarizedCompton(), G4PolarizedGammaConversion::G4PolarizedGammaConversion(), G4PolarizedPhotoElectricEffect::G4PolarizedPhotoElectricEffect(), G4RadioactiveDecay::G4RadioactiveDecay(), G4RayleighScattering::G4RayleighScattering(), G4Scintillation::G4Scintillation(), G4ScreenedNuclearRecoil::G4ScreenedNuclearRecoil(), G4StepLimiter::G4StepLimiter(), G4SynchrotronRadiation::G4SynchrotronRadiation(), G4SynchrotronRadiationInMat::G4SynchrotronRadiationInMat(), G4TransitionRadiation::G4TransitionRadiation(), G4Transportation::G4Transportation(), G4UnknownDecay::G4UnknownDecay(), G4UserSpecialCuts::G4UserSpecialCuts(), G4VMultipleScattering::G4VMultipleScattering(), and G4Decay::SetExtDecayer().

433 {
435 }
G4int theProcessSubType
Definition: G4VProcess.hh:343
const XML_Char int const XML_Char * value
void G4VProcess::SetProcessType ( G4ProcessType  aType)
inline
void G4VProcess::SetVerboseLevel ( G4int  value)
inline
void G4VProcess::StartTracking ( G4Track )
virtual

Reimplemented in G4VEnergyLossProcess, G4WrapperProcess, G4AdjointProcessEquivalentToDirectProcess, G4Decay, G4BiasingProcessInterface, G4VMultipleScattering, G4MonopoleTransportation, G4Transportation, G4VEmProcess, G4CoupledTransportation, G4FastSimulationManagerProcess, G4VITProcess, G4ParallelWorldProcess, G4ParallelWorldScoringProcess, G4WeightWindowProcess, G4ScoreSplittingProcess, G4ImportanceProcess, G4WeightCutOffProcess, G4ITTransportation, G4DNABrownianTransportation, G4DNASecondOrderReaction, and G4VPhononProcess.

Definition at line 101 of file G4VProcess.cc.

References currentInteractionLength, G4cout, G4endl, theInitialNumberOfInteractionLength, theNumberOfInteractionLengthLeft, theProcessName, and verboseLevel.

Referenced by G4VPhononProcess::StartTracking(), G4DNASecondOrderReaction::StartTracking(), G4ITTransportation::StartTracking(), G4MonopoleTransportation::StartTracking(), G4Transportation::StartTracking(), G4BiasingProcessInterface::StartTracking(), G4AdjointProcessEquivalentToDirectProcess::StartTracking(), and G4WrapperProcess::StartTracking().

102 {
106 #ifdef G4VERBOSE
107  if (verboseLevel>2) {
108  G4cout << "G4VProcess::StartTracking() [" << theProcessName << "]" <<G4endl;
109  }
110 #endif
111 }
G4int verboseLevel
Definition: G4VProcess.hh:368
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
G4GLOB_DLL std::ostream G4cout
G4double currentInteractionLength
Definition: G4VProcess.hh:297
#define G4endl
Definition: G4ios.hh:61
G4String theProcessName
Definition: G4VProcess.hh:335
G4double theInitialNumberOfInteractionLength
Definition: G4VProcess.hh:300
virtual G4bool G4VProcess::StorePhysicsTable ( const G4ParticleDefinition ,
const G4String ,
G4bool   
)
inlinevirtual
void G4VProcess::SubtractNumberOfInteractionLengthLeft ( G4double  previousStepSize)
inlineprotected

Definition at line 544 of file G4VProcess.hh.

References currentInteractionLength, EventMustBeAborted, G4cerr, G4endl, G4Exception(), theNumberOfInteractionLengthLeft, theProcessName, and verboseLevel.

Referenced by G4DNASecondOrderReaction::PostStepGetPhysicalInteractionLength(), G4VITRestDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VRestDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VDiscreteProcess::PostStepGetPhysicalInteractionLength(), and G4Decay::PostStepGetPhysicalInteractionLength().

546 {
547  if (currentInteractionLength>0.0) {
550  theNumberOfInteractionLengthLeft=CLHEP::perMillion;
551  }
552 
553  } else {
554 #ifdef G4VERBOSE
555  if (verboseLevel>0) {
556  G4cerr << "G4VProcess::SubtractNumberOfInteractionLengthLeft()";
557  G4cerr << " [" << theProcessName << "]" <<G4endl;
558  G4cerr << " currentInteractionLength = " << currentInteractionLength << " [mm]";
559  G4cerr << " previousStepSize = " << previousStepSize << " [mm]";
560  G4cerr << G4endl;
561  }
562 #endif
563  G4String msg = "Negative currentInteractionLength for ";
564  msg += theProcessName;
565  G4Exception("G4VProcess::SubtractNumberOfInteractionLengthLeft()",
566  "ProcMan201",EventMustBeAborted,
567  msg);
568  }
569 }
G4int verboseLevel
Definition: G4VProcess.hh:368
G4double theNumberOfInteractionLengthLeft
Definition: G4VProcess.hh:293
G4double currentInteractionLength
Definition: G4VProcess.hh:297
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *comments)
Definition: G4Exception.cc:41
#define G4endl
Definition: G4ios.hh:61
G4String theProcessName
Definition: G4VProcess.hh:335
G4GLOB_DLL std::ostream G4cerr

Field Documentation

G4ParticleChange G4VProcess::aParticleChange
protected

Definition at line 289 of file G4VProcess.hh.

Referenced by G4ErrorEnergyLoss::AlongStepDoIt(), G4ContinuousGainOfEnergy::AlongStepDoIt(), G4eLowEnergyLoss::AlongStepDoIt(), G4hImpactIonisation::AlongStepDoIt(), G4AntiNeutronAnnihilationAtRest::AtRestDoIt(), G4MuonMinusCaptureAtRest::AtRestDoIt(), G4DNAMolecularDissociation::DecayIt(), G4HadronicProcess::FillResult(), G4DNAMolecularDissociation::G4DNAMolecularDissociation(), G4VProcess(), G4PhononDownconversion::PostStepDoIt(), G4PhononScattering::PostStepDoIt(), G4PhononReflection::PostStepDoIt(), Em10StepCut::PostStepDoIt(), F02StepCut::PostStepDoIt(), F03StepCut::PostStepDoIt(), XrayFluoStepMax::PostStepDoIt(), F01StepCut::PostStepDoIt(), G4StepLimiter::PostStepDoIt(), F04StepMax::PostStepDoIt(), G4UserSpecialCuts::PostStepDoIt(), HadrontherapyStepMax::PostStepDoIt(), StepLimiter::PostStepDoIt(), WLSStepMax::PostStepDoIt(), StepMax::PostStepDoIt(), DMXSpecialCuts::PostStepDoIt(), G4SpecialCuts::PostStepDoIt(), IORTStepMax::PostStepDoIt(), ML2StepMax::PostStepDoIt(), G4LowEnergyRayleigh::PostStepDoIt(), G4LowEnergyCompton::PostStepDoIt(), G4TransitionRadiation::PostStepDoIt(), XrayTelStepCut::PostStepDoIt(), G4LowEnergyGammaConversion::PostStepDoIt(), G4SynchrotronRadiation::PostStepDoIt(), G4LowEnergyPhotoElectric::PostStepDoIt(), G4LowEnergyPolarizedCompton::PostStepDoIt(), G4LowEnergyIonisation::PostStepDoIt(), G4OpMieHG::PostStepDoIt(), G4LowEnergyBremsstrahlung::PostStepDoIt(), G4ForwardXrayTR::PostStepDoIt(), G4SynchrotronRadiationInMat::PostStepDoIt(), G4AnnihiToMuPair::PostStepDoIt(), G4GammaConversionToMuons::PostStepDoIt(), G4OpAbsorption::PostStepDoIt(), G4OpRayleigh::PostStepDoIt(), G4OpWLS::PostStepDoIt(), G4Cerenkov::PostStepDoIt(), G4Scintillation::PostStepDoIt(), G4hImpactIonisation::PostStepDoIt(), and G4OpBoundaryProcess::PostStepDoIt().

const G4ProcessManager* G4VProcess::aProcessManager
protected

Definition at line 280 of file G4VProcess.hh.

Referenced by GetProcessManager(), and SetProcessManager().

G4double G4VProcess::currentInteractionLength
protected
G4bool G4VProcess::enableAlongStepDoIt
protected
G4bool G4VProcess::enableAtRestDoIt
protected
G4bool G4VProcess::enablePostStepDoIt
protected
G4VParticleChange* G4VProcess::pParticleChange
protected

Definition at line 283 of file G4VProcess.hh.

Referenced by G4VMultipleScattering::AddEmModel(), G4VEmProcess::AddEmModel(), G4VEnergyLossProcess::AddEmModel(), G4VContinuousProcess::AlongStepDoIt(), G4VContinuousDiscreteProcess::AlongStepDoIt(), G4VRestContinuousDiscreteProcess::AlongStepDoIt(), G4VRestContinuousProcess::AlongStepDoIt(), G4ParallelWorldProcess::AlongStepDoIt(), G4WeightCutOffProcess::AlongStepDoIt(), G4ParallelWorldScoringProcess::AlongStepDoIt(), G4ImportanceProcess::AlongStepDoIt(), G4WeightWindowProcess::AlongStepDoIt(), G4VITRestProcess::AtRestDoIt(), G4VRestContinuousProcess::AtRestDoIt(), G4eplusAnnihilation::AtRestDoIt(), G4VRestProcess::AtRestDoIt(), G4VITRestDiscreteProcess::AtRestDoIt(), G4VRestDiscreteProcess::AtRestDoIt(), G4VRestContinuousDiscreteProcess::AtRestDoIt(), G4ScoreSplittingProcess::AtRestDoIt(), G4ParallelWorldScoringProcess::AtRestDoIt(), G4ParallelWorldProcess::AtRestDoIt(), G4Decay::G4Decay(), G4DNAMolecularDissociation::G4DNAMolecularDissociation(), G4ElectronCapture::G4ElectronCapture(), G4ImportanceProcess::G4ImportanceProcess(), G4ITTransportation::G4ITTransportation(), G4ParallelWorldProcess::G4ParallelWorldProcess(), G4ParallelWorldScoringProcess::G4ParallelWorldScoringProcess(), G4RadioactiveDecay::G4RadioactiveDecay(), G4ScoreSplittingProcess::G4ScoreSplittingProcess(), G4UnknownDecay::G4UnknownDecay(), G4VEmProcess::G4VEmProcess(), G4VEnergyLossProcess::G4VEnergyLossProcess(), G4VMultipleScattering::G4VMultipleScattering(), G4VProcess(), G4VXTRenergyLoss::G4VXTRenergyLoss(), G4WeightCutOffProcess::G4WeightCutOffProcess(), G4WeightWindowProcess::G4WeightWindowProcess(), G4VTransitionRadiation::PostStepDoIt(), G4VITRestDiscreteProcess::PostStepDoIt(), G4VContinuousDiscreteProcess::PostStepDoIt(), G4VRestDiscreteProcess::PostStepDoIt(), G4VRestContinuousDiscreteProcess::PostStepDoIt(), G4VDiscreteProcess::PostStepDoIt(), G4ElectronCapture::PostStepDoIt(), G4NeutronKiller::PostStepDoIt(), G4ParallelWorldProcess::PostStepDoIt(), G4Cerenkov::PostStepDoIt(), G4ScoreSplittingProcess::PostStepDoIt(), G4ParallelWorldScoringProcess::PostStepDoIt(), G4VEmProcess::PostStepDoIt(), G4VEnergyLossProcess::PostStepDoIt(), and G4ScreenedNuclearRecoil::PostStepDoIt().

G4double G4VProcess::theInitialNumberOfInteractionLength
protected
G4double G4VProcess::theNumberOfInteractionLengthLeft
protected
G4String G4VProcess::thePhysicsTableFileName
protected

Definition at line 338 of file G4VProcess.hh.

Referenced by GetPhysicsTableFileName().

G4double G4VProcess::thePILfactor
protected

Definition at line 346 of file G4VProcess.hh.

Referenced by AtRestGPIL(), GetPILfactor(), PostStepGPIL(), and SetPILfactor().

G4String G4VProcess::theProcessName
protected
G4int G4VProcess::theProcessSubType
protected

Definition at line 343 of file G4VProcess.hh.

Referenced by DumpInfo(), GetProcessSubType(), and SetProcessSubType().

G4ProcessType G4VProcess::theProcessType
protected
G4int G4VProcess::verboseLevel
protected

Definition at line 368 of file G4VProcess.hh.

Referenced by G4VEmProcess::ActivateForcedInteraction(), G4VEnergyLossProcess::ActivateForcedInteraction(), G4VEmProcess::ActivateSecondaryBiasing(), G4VEnergyLossProcess::ActivateSecondaryBiasing(), G4VEnergyLossProcess::AddCollaborativeProcess(), G4MonopoleTransportation::AlongStepDoIt(), G4VContinuousProcess::AlongStepGetPhysicalInteractionLength(), G4VContinuousDiscreteProcess::AlongStepGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::AlongStepGetPhysicalInteractionLength(), G4VRestContinuousProcess::AlongStepGetPhysicalInteractionLength(), G4AntiNeutronAnnihilationAtRest::AtRestDoIt(), G4ParallelWorldScoringProcess::AtRestDoIt(), G4VITRestProcess::AtRestGetPhysicalInteractionLength(), G4AntiNeutronAnnihilationAtRest::AtRestGetPhysicalInteractionLength(), G4VRestContinuousProcess::AtRestGetPhysicalInteractionLength(), G4VRestProcess::AtRestGetPhysicalInteractionLength(), G4VITRestDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4VRestDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::AtRestGetPhysicalInteractionLength(), G4VXTRenergyLoss::BuildAngleForEnergyBank(), G4VXTRenergyLoss::BuildAngleTable(), G4eLowEnergyLoss::BuildDEDXTable(), G4VEnergyLossProcess::BuildDEDXTable(), G4VXTRenergyLoss::BuildEnergyTable(), G4VXTRenergyLoss::BuildGlobalAngleTable(), G4VEnergyLossProcess::BuildLambdaTable(), G4DNABrownianTransportation::BuildPhysicsTable(), G4ChargeExchangeProcess::BuildPhysicsTable(), G4ElectronCapture::BuildPhysicsTable(), G4LowEnergyIonisation::BuildPhysicsTable(), G4LowEnergyBremsstrahlung::BuildPhysicsTable(), G4hImpactIonisation::BuildPhysicsTable(), G4SynchrotronRadiation::BuildPhysicsTable(), G4VXTRenergyLoss::BuildPhysicsTable(), G4VMultipleScattering::BuildPhysicsTable(), G4VEmProcess::BuildPhysicsTable(), G4VEnergyLossProcess::BuildPhysicsTable(), G4VPhononProcess::CreateSecondary(), DMXMaxTimeCuts::DMXMaxTimeCuts(), DMXMinEkineCuts::DMXMinEkineCuts(), DMXSpecialCuts::DMXSpecialCuts(), Em10StepCut::Em10StepCut(), EndTracking(), F01StepCut::F01StepCut(), F02StepCut::F02StepCut(), F03StepCut::F03StepCut(), F04StepMax::F04StepMax(), G4AntiNeutronAnnihilationAtRest::G4AntiNeutronAnnihilationAtRest(), G4Cerenkov::G4Cerenkov(), G4ChargeExchangeProcess::G4ChargeExchangeProcess(), G4DNABrownianTransportation::G4DNABrownianTransportation(), G4DNAMolecularDissociation::G4DNAMolecularDissociation(), G4ePolarizedIonisation::G4ePolarizedIonisation(), G4ErrorEnergyLoss::G4ErrorEnergyLoss(), G4FastSimulationManagerProcess::G4FastSimulationManagerProcess(), G4ImportanceProcess::G4ImportanceProcess(), G4LowEnergyBremsstrahlung::G4LowEnergyBremsstrahlung(), G4LowEnergyCompton::G4LowEnergyCompton(), G4LowEnergyGammaConversion::G4LowEnergyGammaConversion(), G4LowEnergyIonisation::G4LowEnergyIonisation(), G4LowEnergyPhotoElectric::G4LowEnergyPhotoElectric(), G4LowEnergyPolarizedCompton::G4LowEnergyPolarizedCompton(), G4LowEnergyRayleigh::G4LowEnergyRayleigh(), G4MaxTimeCuts::G4MaxTimeCuts(), G4MinEkineCuts::G4MinEkineCuts(), G4MonopoleTransportation::G4MonopoleTransportation(), G4OpAbsorption::G4OpAbsorption(), G4OpBoundaryProcess::G4OpBoundaryProcess(), G4OpMieHG::G4OpMieHG(), G4OpRayleigh::G4OpRayleigh(), G4OpWLS::G4OpWLS(), G4ParallelWorldProcess::G4ParallelWorldProcess(), G4ParallelWorldScoringProcess::G4ParallelWorldScoringProcess(), G4Scintillation::G4Scintillation(), G4ScoreSplittingProcess::G4ScoreSplittingProcess(), G4SpecialCuts::G4SpecialCuts(), G4StepLimiter::G4StepLimiter(), G4StrawTubeXTRadiator::G4StrawTubeXTRadiator(), G4SynchrotronRadiation::G4SynchrotronRadiation(), G4TransparentRegXTRadiator::G4TransparentRegXTRadiator(), G4UserSpecialCuts::G4UserSpecialCuts(), G4VXTRenergyLoss::G4VXTRenergyLoss(), G4WeightCutOffProcess::G4WeightCutOffProcess(), G4WeightWindowProcess::G4WeightWindowProcess(), G4VXTRenergyLoss::GetAngleVector(), G4ChargeExchangeProcess::GetElementCrossSection(), G4VXTRenergyLoss::GetGasZmuProduct(), G4PhononScattering::GetMeanFreePath(), G4PhononDownconversion::GetMeanFreePath(), G4SynchrotronRadiation::GetMeanFreePath(), G4eplusPolarizedAnnihilation::GetMeanFreePath(), G4VXTRenergyLoss::GetMeanFreePath(), G4PolarizedCompton::GetMeanFreePath(), G4ScreenedNuclearRecoil::GetNewCrossSectionHandler(), G4VXTRenergyLoss::GetNumberOfPhotons(), G4VXTRenergyLoss::GetPlateZmuProduct(), G4SynchrotronRadiation::GetRandomEnergySR(), G4ScreenedNuclearRecoil::GetVerboseLevel(), GetVerboseLevel(), G4hhIonisation::InitialiseEnergyLossProcess(), G4eeToHadrons::InitialiseProcess(), G4HadronElasticProcess::PostStepDoIt(), G4DNASecondOrderReaction::PostStepDoIt(), G4LowEnergyPolarizedCompton::PostStepDoIt(), G4OpMieHG::PostStepDoIt(), G4VXTRenergyLoss::PostStepDoIt(), G4OpAbsorption::PostStepDoIt(), G4OpRayleigh::PostStepDoIt(), G4OpWLS::PostStepDoIt(), G4Cerenkov::PostStepDoIt(), G4ScoreSplittingProcess::PostStepDoIt(), G4ParallelWorldScoringProcess::PostStepDoIt(), G4Scintillation::PostStepDoIt(), G4VEmProcess::PostStepDoIt(), G4OpBoundaryProcess::PostStepDoIt(), G4DNASecondOrderReaction::PostStepGetPhysicalInteractionLength(), G4VITRestDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VRestDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VRestContinuousDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4VDiscreteProcess::PostStepGetPhysicalInteractionLength(), G4eplusPolarizedAnnihilation::PostStepGetPhysicalInteractionLength(), G4PolarizedCompton::PostStepGetPhysicalInteractionLength(), G4VEmProcess::PostStepGetPhysicalInteractionLength(), G4VEnergyLossProcess::PostStepGetPhysicalInteractionLength(), G4VMultipleScattering::PreparePhysicsTable(), G4VEmProcess::PreparePhysicsTable(), G4VEnergyLossProcess::PreparePhysicsTable(), G4VMultipleScattering::PrintInfoDefinition(), G4VEnergyLossProcess::PrintInfoDefinition(), G4VEmProcess::RetrievePhysicsTable(), G4VEnergyLossProcess::RetrievePhysicsTable(), G4VEmProcess::SetCrossSectionBiasingFactor(), G4VEnergyLossProcess::SetCrossSectionBiasingFactor(), G4VEnergyLossProcess::SetInverseRangeTable(), G4ElectronCapture::SetKinEnergyLimit(), G4NeutronKiller::SetKinEnergyLimit(), G4VEnergyLossProcess::SetLambdaTable(), G4VEnergyLossProcess::SetRangeTableForLoss(), G4VEnergyLossProcess::SetSecondaryRangeTable(), G4VEnergyLossProcess::SetSubLambdaTable(), G4NeutronKiller::SetTimeLimit(), SetVerboseLevel(), G4FastSimulationManagerProcess::SetWorldVolume(), G4XTRRegularRadModel::SpectralXTRdEdx(), G4RegularXTRadiator::SpectralXTRdEdx(), G4TransparentRegXTRadiator::SpectralXTRdEdx(), StartTracking(), G4VMultipleScattering::StorePhysicsTable(), G4VEnergyLossProcess::StorePhysicsTable(), SubtractNumberOfInteractionLengthLeft(), WLSStepMax::WLSStepMax(), XrayTelStepCut::XrayTelStepCut(), G4MonopoleTransportation::~G4MonopoleTransportation(), and G4VEmProcess::~G4VEmProcess().


The documentation for this class was generated from the following files: