Geant4 11.3.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4ProcessPlacer Class Reference

#include <G4ProcessPlacer.hh>

+ Inheritance diagram for G4ProcessPlacer:

Public Types

enum  SecondOrLast { eSecond = 1 , eLast = 0 }
 

Public Member Functions

 G4ProcessPlacer (const G4String &particlename)
 
virtual ~G4ProcessPlacer ()
 
virtual void AddProcessAsLastDoIt (G4VProcess *process)
 
virtual void AddProcessAsSecondDoIt (G4VProcess *process)
 
virtual void RemoveProcess (G4VProcess *process)
 
- Public Member Functions inherited from G4VProcessPlacer
 G4VProcessPlacer ()
 
virtual ~G4VProcessPlacer ()
 

Detailed Description

Definition at line 45 of file G4ProcessPlacer.hh.

Member Enumeration Documentation

◆ SecondOrLast

Enumerator
eSecond 
eLast 

Definition at line 68 of file G4ProcessPlacer.hh.

69 {
70 eSecond = 1,
71 eLast = 0
72 };

Constructor & Destructor Documentation

◆ G4ProcessPlacer()

G4ProcessPlacer::G4ProcessPlacer ( const G4String & particlename)
explicit

Definition at line 34 of file G4ProcessPlacer.cc.

35 : fParticleName(particlename)
36{
37}

◆ ~G4ProcessPlacer()

G4ProcessPlacer::~G4ProcessPlacer ( )
virtual

Definition at line 39 of file G4ProcessPlacer.cc.

40{
41}

Member Function Documentation

◆ AddProcessAsLastDoIt()

void G4ProcessPlacer::AddProcessAsLastDoIt ( G4VProcess * process)
virtual

Implements G4VProcessPlacer.

Definition at line 134 of file G4ProcessPlacer.cc.

135{
136 G4cout << "=== G4ProcessPlacer::AddProcessAsLastDoIt: for: "
137 << fParticleName << G4endl;
138 AddProcessAs(process, eLast);
139}
#define G4endl
Definition G4ios.hh:67
G4GLOB_DLL std::ostream G4cout

◆ AddProcessAsSecondDoIt()

void G4ProcessPlacer::AddProcessAsSecondDoIt ( G4VProcess * process)
virtual

Implements G4VProcessPlacer.

Definition at line 127 of file G4ProcessPlacer.cc.

128{
129 G4cout << "=== G4ProcessPlacer::AddProcessAsSecondDoIt: for: "
130 << fParticleName << G4endl;
131 AddProcessAs(process, eSecond);
132}

◆ RemoveProcess()

void G4ProcessPlacer::RemoveProcess ( G4VProcess * process)
virtual

Implements G4VProcessPlacer.

Definition at line 43 of file G4ProcessPlacer.cc.

44{
45 G4cout << "=== G4ProcessPlacer::RemoveProcess: for: " << fParticleName
46 << G4endl;
47 G4cout << " ProcessName: " << process->GetProcessName()
48 << ", will be removed!" << G4endl;
49
50 G4cout << " The initial AlongStep Vectors: " << G4endl;
51 PrintAlongStepGPILVec();
52 PrintAlongStepDoItVec();
53
54 G4cout << " The initial PostStep Vectors: " << G4endl;
55 PrintPostStepGPILVec();
56 PrintPostStepDoItVec();
57
58 GetProcessManager()->RemoveProcess(process);
59
60 G4cout << " The final AlongStep Vectors: " << G4endl;
61 PrintAlongStepGPILVec();
62 PrintAlongStepDoItVec();
63
64 G4cout << " The final PostStep Vectors: " << G4endl;
65 PrintPostStepGPILVec();
66 PrintPostStepDoItVec();
67
68 G4cout << "================================================" << G4endl;
69
70}
const G4String & GetProcessName() const

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