Loading...
Searching...
No Matches
Public Member Functions | Private Attributes | List of all members
B02RunAction Class Reference

#include <Doxymodules_biasing.h>

Inheritance diagram for B02RunAction:
G4UserRunAction

Public Member Functions

 B02RunAction ()
 
virtual ~B02RunAction ()
 
virtual G4RunGenerateRun ()
 
virtual void BeginOfRunAction (const G4Run *)
 
virtual void EndOfRunAction (const G4Run *)
 
void PrintHeader (std::ostream *out)
 
std::string FillString (const std::string &name, char c, G4int n, G4bool back=true)
 

Private Attributes

std::vector< G4StringfSDName
 
G4int fFieldValue
 

Detailed Description

Definition at line 38 of file Doxymodules_biasing.h.

Constructor & Destructor Documentation

◆ B02RunAction()

B02RunAction::B02RunAction ( )

Definition at line 51 of file B02RunAction.cc.

51 :
53 // fFieldName(15),
54 fFieldValue(14)
55{
56 // - Prepare data member for B02Run.
57 // vector represents a list of MultiFunctionalDetector names.
58 fSDName.push_back(G4String("ConcreteSD"));
59}
std::vector< G4String > fSDName

◆ ~B02RunAction()

B02RunAction::~B02RunAction ( )
virtual

Definition at line 64 of file B02RunAction.cc.

65{
66 fSDName.clear();
67}

Member Function Documentation

◆ GenerateRun()

G4Run * B02RunAction::GenerateRun ( )
virtual

Definition at line 71 of file B02RunAction.cc.

72{
73 // Generate new RUN object, which is specially
74 // dedicated for MultiFunctionalDetector scheme.
75 // Detail description can be found in B02Run.hh/cc.
76 return new B02Run(fSDName);
77}

◆ BeginOfRunAction()

void B02RunAction::BeginOfRunAction ( const G4Run aRun)
virtual

Definition at line 81 of file B02RunAction.cc.

82{
83 G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl;
84}

◆ EndOfRunAction()

void B02RunAction::EndOfRunAction ( const G4Run aRun)
virtual

Definition at line 88 of file B02RunAction.cc.

89{
90 G4cout << " ###### EndOfRunAction " <<G4endl;
91 //- B02Run object.
92 B02Run* b02Run = (B02Run*)aRun;
93 //--- Dump all socred quantities involved in B02Run.
94 // re02Run->DumpAllScorer();
95 //---
96 G4RunManager* mgr = G4RunManager::GetRunManager();
97 //
98
99 for ( G4int i = 0; i < (G4int)fSDName.size(); i++ ){
100 const G4VUserDetectorConstruction* vdet =
101 mgr->GetUserDetectorConstruction();
104 //
105
106 //---------------------------------------------
107 // Dump accumulated quantities for this RUN.
108 // (Display only central region of x-y plane)
109 // 0 ConcreteSD/Collisions
110 // 1 ConcreteSD/CollWeight
111 // 2 ConcreteSD/Population
112 // 3 ConcreteSD/TrackEnter
113 // 4 ConcreteSD/SL
114 // 5 ConcreteSD/SLW
115 // 6 ConcreteSD/SLWE
116 // 7 ConcreteSD/SLW_V
117 // 8 ConcreteSD/SLWE_V
118 //---------------------------------------------
119 G4THitsMap<G4double>* Collisions =
120 b02Run->GetHitsMap(fSDName[i]+"/Collisions");
121 G4THitsMap<G4double>* CollWeight =
122 b02Run->GetHitsMap(fSDName[i]+"/CollWeight");
123 G4THitsMap<G4double>* Population =
124 b02Run->GetHitsMap(fSDName[i]+"/Population");
125 G4THitsMap<G4double>* TrackEnter =
126 b02Run->GetHitsMap(fSDName[i]+"/TrackEnter");
127 G4THitsMap<G4double>* SL = b02Run->GetHitsMap(fSDName[i]+"/SL");
128 G4THitsMap<G4double>* SLW = b02Run->GetHitsMap(fSDName[i]+"/SLW");
129 G4THitsMap<G4double>* SLWE = b02Run->GetHitsMap(fSDName[i]+"/SLWE");
130 G4THitsMap<G4double>* SLW_V = b02Run->GetHitsMap(fSDName[i]+"/SLW_V");
131 G4THitsMap<G4double>* SLWE_V = b02Run->GetHitsMap(fSDName[i]+"/SLWE_V");
132
133 if (IsMaster())
134 {
135 G4cout <<
136 "\n--------------------End of Global Run-----------------------" <<
137 G4endl;
138 G4cout <<
139 " Number of event processed : "<< aRun->GetNumberOfEvent() << G4endl;
140 }
141 else
142 {
143 G4cout <<
144 "\n--------------------End of Local Run------------------------" <<
145 G4endl;
146 G4cout <<
147 " Number of event processed : "<< aRun->GetNumberOfEvent() << G4endl;
148 }
149
150 G4cout << "============================================================="
151 <<G4endl;
152 G4cout << "============================================================="
153 <<G4endl;
154
155 std::ostream *myout = &G4cout;
156 PrintHeader(myout);
157
158 for ( G4int iz = 0; iz < 20; iz++){
159 G4double* SumCollisions = (*Collisions)[iz];
160 G4double* SumCollWeight = (*CollWeight)[iz];
161 G4double* Populations = (*Population)[iz];
162 G4double* TrackEnters = (*TrackEnter)[iz];
163 G4double* SLs = (*SL)[iz];
164 G4double* SLWs = (*SLW)[iz];
165 G4double* SLWEs = (*SLWE)[iz];
166 G4double* SLW_Vs = (*SLW_V)[iz];
167 G4double* SLWE_Vs = (*SLWE_V)[iz];
168 if ( !SumCollisions ) SumCollisions = new G4double(0.0);
169 if ( !SumCollWeight ) SumCollWeight = new G4double(0.0);
170 if ( !Populations ) Populations = new G4double(0.0);
171 if ( !TrackEnters ) TrackEnters = new G4double(0.0);
172 if ( !SLs ) SLs = new G4double(0.0);
173 if ( !SLWs ) SLWs = new G4double(0.0);
174 if ( !SLWEs ) SLWEs = new G4double(0.0);
175 if ( !SLW_Vs ) SLW_Vs = new G4double(0.0);
176 if ( !SLWE_Vs ) SLWE_Vs = new G4double(0.0);
177 G4double NumWeightedEnergy =0.0;
178 G4double FluxWeightedEnergy=0.0;
179 G4double AverageTrackWeight=0.0;
180 if ( *SLW_Vs !=0. ) NumWeightedEnergy = (*SLWE_Vs)/(*SLW_Vs);
181 if ( *SLWs !=0. ) FluxWeightedEnergy = (*SLWEs)/(*SLWs);
182 if ( *SLs !=0. ) AverageTrackWeight = (*SLWs)/(*SLs);
183 G4String cname = bdet->GetCellName(iz);
184 G4cout
185 << std::setw(fFieldValue) << cname << " |"
186 << std::setw(fFieldValue) << (*TrackEnters) << " |"
187 << std::setw(fFieldValue) << (*Populations) << " |"
188 << std::setw(fFieldValue) << (*SumCollisions) << " |"
189 << std::setw(fFieldValue) << (*SumCollWeight) << " |"
190 << std::setw(fFieldValue) << NumWeightedEnergy << " |"
191 << std::setw(fFieldValue) << FluxWeightedEnergy << " |"
192 << std::setw(fFieldValue) << AverageTrackWeight << " |"
193 << std::setw(fFieldValue) << (*SLs) << " |"
194 << std::setw(fFieldValue) << (*SLWs) << " |"
195 << std::setw(fFieldValue) << (*SLW_Vs) << " |"
196 << std::setw(fFieldValue) << (*SLWEs) << " |"
197 << std::setw(fFieldValue) << (*SLWE_Vs) << " |"
198 << G4endl;
199 }
200 G4cout << "============================================="<<G4endl;
201 }
202}
void PrintHeader(std::ostream *out)
G4THitsMap< G4double > * GetHitsMap(G4int i)
Definition B02Run.hh:69

◆ PrintHeader()

void B02RunAction::PrintHeader ( std::ostream *  out)

Definition at line 206 of file B02RunAction.cc.

207{
208 std::vector<G4String> vecScoreName;
209 vecScoreName.push_back("Tr.Entering");
210 vecScoreName.push_back("Population");
211 vecScoreName.push_back("Collisions");
212 vecScoreName.push_back("Coll*WGT");
213 vecScoreName.push_back("NumWGTedE");
214 vecScoreName.push_back("FluxWGTedE");
215 vecScoreName.push_back("Av.Tr.WGT");
216 vecScoreName.push_back("SL");
217 vecScoreName.push_back("SLW");
218 vecScoreName.push_back("SLW_v");
219 vecScoreName.push_back("SLWE");
220 vecScoreName.push_back("SLWE_v");
221
222 // head line
223// std::string vname;
224// vname = FillString("Volume", ' ', fFieldName+1);
225 //*out << vname << '|';
226 *out << std::setw(fFieldValue) << "Volume" << " |";
227 for (std::vector<G4String>::iterator it = vecScoreName.begin();
228 it != vecScoreName.end(); it++) {
229// vname = FillString((*it),
230// ' ',
231// fFieldValue+1,
232// false);
233// *out << vname << '|';
234 *out << std::setw(fFieldValue) << (*it) << " |";
235 }
236 *out << G4endl;
237}

◆ FillString()

std::string B02RunAction::FillString ( const std::string &  name,
char  c,
G4int  n,
G4bool  back = true 
)

Definition at line 241 of file B02RunAction.cc.

243{
244 std::string fname("");
245 G4int k = n - name.size();
246 if (k > 0) {
247 if (back) {
248 fname = name;
249 fname += std::string(k,c);
250 }
251 else {
252 fname = std::string(k,c);
253 fname += name;
254 }
255 }
256 else {
257 fname = name;
258 }
259 return fname;
260}

Member Data Documentation

◆ fSDName

std::vector<G4String> B02RunAction::fSDName
private

Definition at line 69 of file B02RunAction.hh.

◆ fFieldValue

G4int B02RunAction::fFieldValue
private

Definition at line 71 of file B02RunAction.hh.


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

Applications | User Support | Publications | Collaboration