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

#include <G4MSSteppingAction.hh>

+ Inheritance diagram for G4MSSteppingAction:

Public Member Functions

 G4MSSteppingAction ()=default
 
 ~G4MSSteppingAction () override=default
 
void Initialize (G4bool rSens, G4Region *reg)
 
void UserSteppingAction (const G4Step *) override
 
G4double GetTotalStepLength () const
 
G4double GetX0 () const
 
G4double GetLambda0 () const
 
void PrintEachMaterialVerbose (std::ostream &oss)
 
void PrintIntegratedMaterialVerbose (std::ostream &oss)
 
- Public Member Functions inherited from G4UserSteppingAction
 G4UserSteppingAction ()
 
virtual ~G4UserSteppingAction ()=default
 
virtual void SetSteppingManagerPointer (G4SteppingManager *pValue)
 

Additional Inherited Members

- Protected Attributes inherited from G4UserSteppingAction
G4SteppingManagerfpSteppingManager = nullptr
 

Detailed Description

Definition at line 46 of file G4MSSteppingAction.hh.

Constructor & Destructor Documentation

◆ G4MSSteppingAction()

G4MSSteppingAction::G4MSSteppingAction ( )
default

◆ ~G4MSSteppingAction()

G4MSSteppingAction::~G4MSSteppingAction ( )
overridedefault

Member Function Documentation

◆ GetLambda0()

G4double G4MSSteppingAction::GetLambda0 ( ) const
inline

Definition at line 57 of file G4MSSteppingAction.hh.

57{ return lambda; }

◆ GetTotalStepLength()

G4double G4MSSteppingAction::GetTotalStepLength ( ) const
inline

Definition at line 55 of file G4MSSteppingAction.hh.

55{ return length; }

◆ GetX0()

G4double G4MSSteppingAction::GetX0 ( ) const
inline

Definition at line 56 of file G4MSSteppingAction.hh.

56{ return x0; }

◆ Initialize()

void G4MSSteppingAction::Initialize ( G4bool rSens,
G4Region * reg )

Definition at line 42 of file G4MSSteppingAction.cc.

43{
44 regionSensitive = rSens;
45 theRegion = reg;
46 length = 0.;
47 x0 = 0.;
48 lambda = 0.;
49 shape_mat_info_v.clear();
50}

◆ PrintEachMaterialVerbose()

void G4MSSteppingAction::PrintEachMaterialVerbose ( std::ostream & oss)

Print material properties verbosely for each step of geantino This function is useful for single shot scans.

Definition at line 99 of file G4MSSteppingAction.cc.

100{
101
102 G4int colwidth = 11;
103 G4int matname_colwidth = 15;
104
105 oss << G4endl<< G4endl;
106 oss << " Material Atomic properties (averaged) Radiation Interaction Integr. Lambda X0 Entry point Exit point\n name Mass Z density length length Thickness Thickness (cm) (cm)\n (g/mole) (g/cm3) (cm) (cm) (cm) (cm) \n";
107 oss << G4endl;
108
109
110 std::ios::fmtflags os_flags (oss.flags());
111 for( auto & matInfo : shape_mat_info_v)
112 {
113 oss << std::setw(matname_colwidth) << std::left << matInfo.GetName(matname_colwidth) << " ";
114
115 oss << std::setw(colwidth) << std::fixed << std::setprecision(2) << matInfo.aveA / (CLHEP::g/CLHEP::mole);
116 oss << std::setw(colwidth) << std::fixed << std::setprecision(2) << matInfo.aveZ;
117 oss << std::setw(colwidth) << std::scientific << std::setprecision(2) << matInfo.density / (CLHEP::g/CLHEP::cm3);
118 oss << std::setw(colwidth) << std::scientific << matInfo.radiation_length / CLHEP::cm;
119 oss << std::setw(colwidth) << std::scientific << matInfo.interaction_length / CLHEP::cm;
120 oss << std::setw(colwidth) << std::scientific << matInfo.thickness/CLHEP::cm;
121 oss << std::setw(colwidth) << std::scientific << matInfo.integrated_thickness/CLHEP::cm;
122 oss << std::setw(colwidth) << std::scientific << matInfo.lambda;
123 oss << std::setw(colwidth) << std::scientific << matInfo.x0;
124 oss << std::setw(colwidth) << " ";
125 oss << std::scientific << std::right << "(";
126 oss << std::scientific << std::left << matInfo.entry_point.x()/CLHEP::cm;
127 oss << ", " << matInfo.entry_point.y()/CLHEP::cm;
128 oss << ", " << matInfo.entry_point.z()/CLHEP::cm << ")";
129 oss << std::setw(colwidth) << " ";
130 oss << std::scientific << std::right << "(";
131 oss << std::scientific << std::left << matInfo.exit_point.x()/CLHEP::cm;
132 oss << ", " << matInfo.exit_point.y()/CLHEP::cm;
133 oss << ", " << matInfo.exit_point.z()/CLHEP::cm << ")";
134 oss << G4endl;
135 oss << G4endl;
136 }
137 oss.flags(os_flags); // Restore original stream format
138}
int G4int
Definition G4Types.hh:85
#define G4endl
Definition G4ios.hh:67

◆ PrintIntegratedMaterialVerbose()

void G4MSSteppingAction::PrintIntegratedMaterialVerbose ( std::ostream & oss)

Print list of {material name, thickness, x0, lambda}, integrated by material name This function is useful for global scans.

Definition at line 140 of file G4MSSteppingAction.cc.

141{
142 // create database (db) of material name (key) and information
143 std::map<G4String, shape_mat_info_t> mat_db;
144 // accumulate information for each material name into mat_db
145 for(auto & matInfo : shape_mat_info_v)
146 {
147 G4String key = matInfo.material_name;
148 if( 0 == mat_db.count( key ) )
149 {
150 mat_db[key] = shape_mat_info_t{};
151 }
152
153 mat_db[key].x0 += matInfo.x0;
154 mat_db[key].thickness += matInfo.thickness;
155 mat_db[key].lambda += matInfo.lambda;
156 }
157
158 std::ios::fmtflags os_flags (oss.flags());
159 oss << std::scientific << std::setprecision(2) << '\t';
160 for(auto & [key,mat] : mat_db)
161 oss << '\t' << key
162 << '\t'<< mat.thickness/CLHEP::mm
163 << '\t'<< mat.x0
164 << '\t'<< mat.lambda;
165 oss.flags(os_flags); // Restore original stream format
166 return;
167}

◆ UserSteppingAction()

void G4MSSteppingAction::UserSteppingAction ( const G4Step * aStep)
overridevirtual

Reimplemented from G4UserSteppingAction.

Definition at line 53 of file G4MSSteppingAction.cc.

54{
55 G4StepPoint* preStepPoint = aStep->GetPreStepPoint();
56 G4Region* region = preStepPoint->GetPhysicalVolume()->GetLogicalVolume()->GetRegion();
57
58 if (regionSensitive && (region != theRegion)) return;
59
60 G4double stlen = aStep->GetStepLength();
61 const G4Material* material = preStepPoint->GetMaterial();
62 length += stlen;
63 x0 += stlen / (material->GetRadlen());
64 lambda += stlen / (material->GetNuclearInterLength());
65
66 // store information per step (1 geantino step = 1 solid)
67 {
68 shape_mat_info_v.push_back({});
69
70 shape_mat_info_t & thisMaterialInfo = shape_mat_info_v.back();
71
72 // calculate average mass number and atomic number
73 {
74 const std::vector<const G4Element*> * ElementVector_ptr = material->GetElementVector();
75 for( auto & element : *ElementVector_ptr)
76 {
77 thisMaterialInfo.aveA += element->GetA();
78 thisMaterialInfo.aveZ += element->GetZ();
79 }
80 thisMaterialInfo.aveA /= ElementVector_ptr->size();
81 thisMaterialInfo.aveZ /= ElementVector_ptr->size();
82 }
83 thisMaterialInfo.density = material->GetDensity();
84 thisMaterialInfo.radiation_length = material->GetRadlen();
85 thisMaterialInfo.interaction_length = material->GetNuclearInterLength();
86 thisMaterialInfo.thickness = aStep->GetStepLength();
87 thisMaterialInfo.integrated_thickness = length;
88 thisMaterialInfo.lambda = stlen / (material->GetNuclearInterLength());
89 thisMaterialInfo.x0 = stlen / (material->GetRadlen());
90 thisMaterialInfo.integrated_lambda = lambda;
91 thisMaterialInfo.integrated_x0 = x0;
92 thisMaterialInfo.entry_point = preStepPoint->GetPosition();
93 thisMaterialInfo.exit_point = aStep->GetPostStepPoint()->GetPosition();
94 thisMaterialInfo.material_name = material->GetName();
95 }
96
97}
double G4double
Definition G4Types.hh:83
G4Region * GetRegion() const
G4double GetDensity() const
const G4ElementVector * GetElementVector() const
G4double GetRadlen() const
const G4String & GetName() const
G4double GetNuclearInterLength() const
G4Material * GetMaterial() const
const G4ThreeVector & GetPosition() const
G4VPhysicalVolume * GetPhysicalVolume() const
G4StepPoint * GetPreStepPoint() const
G4double GetStepLength() const
G4StepPoint * GetPostStepPoint() const
G4LogicalVolume * GetLogicalVolume() const

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