#include <G4VParticleChange.hh>
Definition at line 68 of file G4VParticleChange.hh.
◆ G4VParticleChange() [1/2]
G4VParticleChange::G4VParticleChange |
( |
| ) |
|
◆ ~G4VParticleChange()
virtual G4VParticleChange::~G4VParticleChange |
( |
| ) |
|
|
virtualdefault |
◆ G4VParticleChange() [2/2]
◆ AddSecondary()
void G4VParticleChange::AddSecondary |
( |
G4Track * | aSecondary | ) |
|
◆ CheckIt()
◆ CheckSecondary()
Definition at line 273 of file G4VParticleChange.cc.
274{
276
277
280 G4double accuracy = std::abs(dir.mag2() - 1.0);
282 {
283 isOK = false;
285#ifdef G4VERBOSE
287 {
289 G4cout <<
" G4VParticleChange::CheckSecondary : " <<
G4endl;
290 G4cout <<
" the momentum direction " << dir
291 <<
" is not unit vector !!" <<
G4endl;
292 G4cout <<
" Difference=" << accuracy
293 << " Ekin(MeV)=" << ekin/MeV
295 << " created by " << mname
297 }
298#endif
300 }
301
302
303 if(ekin < 0.0)
304 {
305 isOK = false;
307#ifdef G4VERBOSE
309 {
311 G4cout <<
" G4VParticleChange::CheckSecondary : " <<
G4endl;
312 G4cout <<
" Ekin(MeV)=" << ekin <<
" is negative !! "
314 << " created by " << mname
316 }
317#endif
319 }
320
321
324 {
325 isOK = false;
327#ifdef G4VERBOSE
329 {
331 G4cout <<
" G4VParticleChange::CheckSecondary : " <<
G4endl;
332 G4cout <<
" The global time of secondary goes back compared to the parent !!" <<
G4endl;
334 <<
" SecondaryTime(ns)= " << time/
ns
337 G4cout <<
" Ekin(MeV)=" << ekin
339 <<
" created by " << mname <<
G4endl;
340 }
341#endif
343 }
344
345
346 if(!isOK)
347 {
349 {
350#ifdef G4VERBOSE
352#endif
353 G4Exception(
"G4VParticleChange::CheckSecondary()",
"TRACK001",
354 JustWarning,
"Secondary with illegal time and/or energy and/or momentum");
355 }
356 }
357 return isOK;
358}
const G4String & GetParticleName() const
const G4ParticleDefinition * GetParticleDefinition() const
const G4String GetCreatorModelName() const
G4double GetGlobalTime() const
const G4ThreeVector & GetMomentumDirection() const
G4double GetKineticEnergy() const
void SetKineticEnergy(const G4double aValue)
void SetMomentumDirection(const G4ThreeVector &aValue)
void SetGlobalTime(const G4double aValue)
static const G4double accuracyForWarning
G4double theParentGlobalTime
Referenced by AddSecondary().
◆ Clear()
void G4VParticleChange::Clear |
( |
| ) |
|
|
inline |
◆ ClearDebugFlag()
void G4VParticleChange::ClearDebugFlag |
( |
| ) |
|
|
inline |
◆ ComputeBeta()
◆ DumpInfo()
void G4VParticleChange::DumpInfo |
( |
| ) |
const |
|
virtual |
Reimplemented in G4FastStep, G4ParticleChange, G4ParticleChangeForDecay, G4ParticleChangeForGamma, G4ParticleChangeForLoss, and G4ParticleChangeForTransport.
Definition at line 133 of file G4VParticleChange.cc.
134{
136 G4String vname = (nullptr == vol) ? G4String("") : vol->GetName();
138 G4cout <<
" -----------------------------------------------" <<
G4endl;
147 G4cout <<
" Kinetic energy (MeV): "
149 G4cout <<
" Position (mm) : "
156 G4cout <<
" -----------------------------------------------" <<
G4endl;
157
158 G4cout <<
" # of secondaries : " << std::setw(20)
160
161 G4cout <<
" -----------------------------------------------" <<
G4endl;
162
163 G4cout <<
" Energy Deposit (MeV): " << std::setw(20)
165
166 G4cout <<
" NIEL Energy Deposit (MeV): " << std::setw(20)
168
169 G4cout <<
" Track Status : " << std::setw(20);
171 {
173 }
175 {
176 G4cout <<
" StopButAlive";
177 }
179 {
181 }
183 {
184 G4cout <<
" KillTrackAndSecondaries";
185 }
187 {
189 }
191 {
192 G4cout <<
" PostponeToNextEvent";
193 }
195 G4cout <<
" TruePathLength (mm) : " << std::setw(20)
197 G4cout <<
" Stepping Control : " << std::setw(20)
200 {
202 }
204 {
206 }
207
208#ifdef G4VERBOSE
210 {
211 G4cout <<
" -----------------------------------------------" <<
G4endl;
212 G4cout <<
" G4VParticleChange warnings closed " <<
G4endl;
213 G4cout <<
" -----------------------------------------------" <<
G4endl;
214 }
215#endif
216
218}
@ fKillTrackAndSecondaries
G4bool theFirstStepInVolume
G4TrackStatus theStatusChange
G4SteppingControl theSteppingControlFlag
G4bool theLastStepInVolume
G4double theNonIonizingEnergyDeposit
const G4Track * theCurrentTrack
Referenced by CheckIt(), CheckSecondary(), G4FastStep::DumpInfo(), G4ParticleChange::DumpInfo(), G4ParticleChangeForDecay::DumpInfo(), G4ParticleChangeForGamma::DumpInfo(), and G4ParticleChangeForLoss::DumpInfo().
◆ GetAccuracyForException()
G4double G4VParticleChange::GetAccuracyForException |
( |
| ) |
const |
|
protected |
◆ GetAccuracyForWarning()
G4double G4VParticleChange::GetAccuracyForWarning |
( |
| ) |
const |
|
protected |
◆ GetCurrentTrack()
const G4Track * G4VParticleChange::GetCurrentTrack |
( |
| ) |
const |
|
inline |
◆ GetDebugFlag()
G4bool G4VParticleChange::GetDebugFlag |
( |
| ) |
const |
|
inline |
◆ GetFirstStepInVolume()
G4bool G4VParticleChange::GetFirstStepInVolume |
( |
| ) |
const |
|
inline |
◆ GetLastStepInVolume()
G4bool G4VParticleChange::GetLastStepInVolume |
( |
| ) |
const |
|
inline |
◆ GetLocalEnergyDeposit()
G4double G4VParticleChange::GetLocalEnergyDeposit |
( |
| ) |
const |
|
inline |
◆ GetNonIonizingEnergyDeposit()
G4double G4VParticleChange::GetNonIonizingEnergyDeposit |
( |
| ) |
const |
|
inline |
◆ GetNumberOfSecondaries()
G4int G4VParticleChange::GetNumberOfSecondaries |
( |
| ) |
const |
|
inline |
◆ GetParentWeight()
G4double G4VParticleChange::GetParentWeight |
( |
| ) |
const |
|
inline |
◆ GetSecondary()
G4Track * G4VParticleChange::GetSecondary |
( |
G4int | anIndex | ) |
const |
|
inline |
◆ GetSteppingControl()
◆ GetTrackStatus()
◆ GetTrueStepLength()
G4double G4VParticleChange::GetTrueStepLength |
( |
| ) |
const |
|
inline |
◆ GetVerboseLevel()
G4int G4VParticleChange::GetVerboseLevel |
( |
| ) |
const |
|
inline |
◆ GetWeight()
G4double G4VParticleChange::GetWeight |
( |
| ) |
const |
|
inline |
◆ Initialize()
virtual void G4VParticleChange::Initialize |
( |
const G4Track & | | ) |
|
|
virtual |
Reimplemented in G4ParticleChange, G4ParticleChangeForDecay, G4ParticleChangeForNothing, and G4ParticleChangeForTransport.
Referenced by G4AdjointAlongStepWeightCorrection::AlongStepDoIt(), G4AdjointForcedInteractionForGamma::AlongStepDoIt(), G4FastSimulationManagerProcess::AlongStepDoIt(), G4ParallelGeometriesLimiterProcess::AlongStepDoIt(), G4ScoreSplittingProcess::AlongStepDoIt(), G4BOptnForceFreeFlight::ApplyFinalStateBiasing(), G4DNAElectronHoleRecombination::AtRestDoIt(), G4MuonMinusAtomicCapture::AtRestDoIt(), G4UnknownDecay::DecayIt(), G4BOptnCloning::GenerateBiasingFinalState(), G4FastStep::Initialize(), G4ParticleChange::Initialize(), G4ParticleChangeForDecay::Initialize(), G4AdjointForcedInteractionForGamma::PostStepDoIt(), G4ErrorTrackLengthTarget::PostStepDoIt(), G4ImportanceProcess::PostStepDoIt(), G4VAdjointReverseReaction::PostStepDoIt(), G4WeightCutOffProcess::PostStepDoIt(), and G4WeightWindowProcess::PostStepDoIt().
◆ InitializeFromStep()
void G4VParticleChange::InitializeFromStep |
( |
const G4Step * | | ) |
|
|
inlineprotected |
◆ InitializeLocalEnergyDeposit()
void G4VParticleChange::InitializeLocalEnergyDeposit |
( |
| ) |
|
|
inlineprotected |
◆ InitializeParentWeight()
void G4VParticleChange::InitializeParentWeight |
( |
const G4Track & | | ) |
|
|
inlineprotected |
◆ InitializeSecondaries()
void G4VParticleChange::InitializeSecondaries |
( |
| ) |
|
|
inlineprotected |
◆ InitializeStatusChange()
void G4VParticleChange::InitializeStatusChange |
( |
const G4Track & | | ) |
|
|
inlineprotected |
◆ InitializeSteppingControl()
void G4VParticleChange::InitializeSteppingControl |
( |
| ) |
|
|
inlineprotected |
◆ IsParentWeightSetByProcess()
G4bool G4VParticleChange::IsParentWeightSetByProcess |
( |
| ) |
const |
◆ IsSecondaryWeightSetByProcess()
G4bool G4VParticleChange::IsSecondaryWeightSetByProcess |
( |
| ) |
const |
|
inline |
◆ operator=()
◆ ProposeFirstStepInVolume()
void G4VParticleChange::ProposeFirstStepInVolume |
( |
G4bool | flag | ) |
|
|
inline |
◆ ProposeLastStepInVolume()
void G4VParticleChange::ProposeLastStepInVolume |
( |
G4bool | flag | ) |
|
|
inline |
◆ ProposeLocalEnergyDeposit()
void G4VParticleChange::ProposeLocalEnergyDeposit |
( |
G4double | anEnergyPart | ) |
|
|
inline |
◆ ProposeNonIonizingEnergyDeposit()
void G4VParticleChange::ProposeNonIonizingEnergyDeposit |
( |
G4double | anEnergyPart | ) |
|
|
inline |
◆ ProposeParentWeight()
void G4VParticleChange::ProposeParentWeight |
( |
G4double | finalWeight | ) |
|
|
inline |
◆ ProposeSteppingControl()
◆ ProposeTrackStatus()
void G4VParticleChange::ProposeTrackStatus |
( |
G4TrackStatus | status | ) |
|
|
inline |
Referenced by G4FastStep::KillPrimaryTrack(), G4FastSimulationManagerProcess::PostStepDoIt(), G4AdjointBremsstrahlungModel::RapidSampleSecondaries(), G4AdjointComptonModel::RapidSampleSecondaries(), G4AdjointhIonisationModel::RapidSampleSecondaries(), G4AdjointBremsstrahlungModel::SampleSecondaries(), G4AdjointComptonModel::SampleSecondaries(), G4AdjointeIonisationModel::SampleSecondaries(), G4AdjointhIonisationModel::SampleSecondaries(), G4AdjointIonIonisationModel::SampleSecondaries(), and G4AdjointPhotoElectricModel::SampleSecondaries().
◆ ProposeTrueStepLength()
void G4VParticleChange::ProposeTrueStepLength |
( |
G4double | truePathLength | ) |
|
|
inline |
◆ ProposeWeight()
void G4VParticleChange::ProposeWeight |
( |
G4double | finalWeight | ) |
|
|
inline |
◆ SetDebugFlag()
void G4VParticleChange::SetDebugFlag |
( |
| ) |
|
|
inline |
◆ SetNumberOfSecondaries()
void G4VParticleChange::SetNumberOfSecondaries |
( |
G4int | totSecondaries | ) |
|
|
inline |
◆ SetParentWeightByProcess()
void G4VParticleChange::SetParentWeightByProcess |
( |
G4bool | | ) |
|
◆ SetSecondaryWeightByProcess()
void G4VParticleChange::SetSecondaryWeightByProcess |
( |
G4bool | | ) |
|
|
inline |
◆ SetVerboseLevel()
void G4VParticleChange::SetVerboseLevel |
( |
G4int | vLevel | ) |
|
|
inline |
◆ UpdateStepForAlongStep()
G4Step * G4VParticleChange::UpdateStepForAlongStep |
( |
G4Step * | Step | ) |
|
|
virtual |
◆ UpdateStepForAtRest()
G4Step * G4VParticleChange::UpdateStepForAtRest |
( |
G4Step * | Step | ) |
|
|
virtual |
◆ UpdateStepForPostStep()
G4Step * G4VParticleChange::UpdateStepForPostStep |
( |
G4Step * | Step | ) |
|
|
virtual |
◆ UpdateStepInfo()
◆ accuracyForException
const G4double G4VParticleChange::accuracyForException = 0.001 |
|
staticprotected |
◆ accuracyForWarning
const G4double G4VParticleChange::accuracyForWarning = 1.0e-9 |
|
staticprotected |
◆ debugFlag
G4bool G4VParticleChange::debugFlag = false |
|
protected |
Definition at line 283 of file G4VParticleChange.hh.
Referenced by AddSecondary(), G4ParticleChangeForGamma::G4ParticleChangeForGamma(), G4ParticleChangeForLoss::G4ParticleChangeForLoss(), G4ParticleChangeForMSC::G4ParticleChangeForMSC(), G4ParticleChangeForTransport::G4ParticleChangeForTransport(), G4VParticleChange(), G4ParticleChange::UpdateStepForAlongStep(), G4ParticleChangeForTransport::UpdateStepForAlongStep(), G4FastStep::UpdateStepForAtRest(), G4ParticleChange::UpdateStepForAtRest(), G4ParticleChangeForDecay::UpdateStepForAtRest(), G4FastStep::UpdateStepForPostStep(), and G4ParticleChange::UpdateStepForPostStep().
◆ fSetSecondaryWeightByProcess
G4bool G4VParticleChange::fSetSecondaryWeightByProcess = false |
|
protected |
◆ isParentWeightProposed
G4bool G4VParticleChange::isParentWeightProposed = false |
|
protected |
Definition at line 278 of file G4VParticleChange.hh.
Referenced by G4ParticleChange::UpdateStepForAlongStep(), G4ParticleChangeForLoss::UpdateStepForAlongStep(), UpdateStepForAlongStep(), G4ParticleChange::UpdateStepForAtRest(), G4ParticleChangeForDecay::UpdateStepForAtRest(), G4ParticleChangeForGamma::UpdateStepForAtRest(), UpdateStepForAtRest(), G4ParticleChange::UpdateStepForPostStep(), G4ParticleChangeForDecay::UpdateStepForPostStep(), G4ParticleChangeForGamma::UpdateStepForPostStep(), G4ParticleChangeForLoss::UpdateStepForPostStep(), and UpdateStepForPostStep().
◆ maxError
const G4int G4VParticleChange::maxError = 10 |
|
staticprotected |
◆ nError
G4int G4VParticleChange::nError = 0 |
|
protected |
◆ theCurrentTrack
const G4Track* G4VParticleChange::theCurrentTrack = nullptr |
|
protected |
Definition at line 232 of file G4VParticleChange.hh.
Referenced by G4ParticleChange::AddSecondary(), G4ParticleChange::AddSecondary(), G4ParticleChangeForGamma::AddSecondary(), G4ParticleChangeForDecay::DumpInfo(), DumpInfo(), G4ParticleChangeForMSC::InitialiseMSC(), G4ParticleChange::UpdateStepForAlongStep(), G4ParticleChangeForTransport::UpdateStepForAlongStep(), G4ParticleChange::UpdateStepForAtRest(), G4ParticleChangeForDecay::UpdateStepForAtRest(), G4ParticleChange::UpdateStepForPostStep(), and G4ParticleChangeForGamma::UpdateStepForPostStep().
◆ theFirstStepInVolume
G4bool G4VParticleChange::theFirstStepInVolume = false |
|
protected |
◆ theLastStepInVolume
G4bool G4VParticleChange::theLastStepInVolume = false |
|
protected |
◆ theListOfSecondaries
std::vector<G4Track*> G4VParticleChange::theListOfSecondaries |
|
protected |
◆ theLocalEnergyDeposit
G4double G4VParticleChange::theLocalEnergyDeposit = 0.0 |
|
protected |
◆ theNonIonizingEnergyDeposit
G4double G4VParticleChange::theNonIonizingEnergyDeposit = 0.0 |
|
protected |
◆ theNumberOfSecondaries
G4int G4VParticleChange::theNumberOfSecondaries = 0 |
|
protected |
◆ theParentGlobalTime
G4double G4VParticleChange::theParentGlobalTime = 0.0 |
|
protected |
◆ theParentWeight
G4double G4VParticleChange::theParentWeight = 1.0 |
|
protected |
Definition at line 256 of file G4VParticleChange.hh.
Referenced by AddSecondary(), G4ParticleChange::UpdateStepForAlongStep(), G4ParticleChangeForLoss::UpdateStepForAlongStep(), UpdateStepForAlongStep(), G4ParticleChange::UpdateStepForAtRest(), G4ParticleChangeForDecay::UpdateStepForAtRest(), G4ParticleChangeForGamma::UpdateStepForAtRest(), UpdateStepForAtRest(), G4ParticleChange::UpdateStepForPostStep(), G4ParticleChangeForDecay::UpdateStepForPostStep(), G4ParticleChangeForGamma::UpdateStepForPostStep(), G4ParticleChangeForLoss::UpdateStepForPostStep(), and UpdateStepForPostStep().
◆ theSizeOftheListOfSecondaries
G4int G4VParticleChange::theSizeOftheListOfSecondaries = 0 |
|
protected |
◆ theStatusChange
◆ theSteppingControlFlag
◆ theTrueStepLength
G4double G4VParticleChange::theTrueStepLength = 0.0 |
|
protected |
◆ verboseLevel
G4int G4VParticleChange::verboseLevel = 1 |
|
protected |
The documentation for this class was generated from the following files: