Geant4.10
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Public Member Functions
B01RunAction Class Reference

#include <B01RunAction.hh>

Inheritance diagram for B01RunAction:
G4UserRunAction

Public Member Functions

 B01RunAction ()
 
virtual ~B01RunAction ()
 
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)
 
- Public Member Functions inherited from G4UserRunAction
 G4UserRunAction ()
 
virtual ~G4UserRunAction ()
 
void SetMaster (G4bool val=true)
 
G4bool IsMaster () const
 

Additional Inherited Members

- Protected Attributes inherited from G4UserRunAction
G4bool isMaster
 

Detailed Description

Definition at line 49 of file B01RunAction.hh.

Constructor & Destructor Documentation

B01RunAction::B01RunAction ( )

Definition at line 51 of file B01RunAction.cc.

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

Definition at line 64 of file B01RunAction.cc.

65 {
66  fSDName.clear();
67 }

Member Function Documentation

void B01RunAction::BeginOfRunAction ( const G4Run aRun)
virtual

Reimplemented from G4UserRunAction.

Definition at line 81 of file B01RunAction.cc.

References G4cout, G4endl, and G4Run::GetRunID().

82 {
83  G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl;
84 }
G4GLOB_DLL std::ostream G4cout
G4int GetRunID() const
Definition: G4Run.hh:76
#define G4endl
Definition: G4ios.hh:61
void B01RunAction::EndOfRunAction ( const G4Run aRun)
virtual

Reimplemented from G4UserRunAction.

Definition at line 88 of file B01RunAction.cc.

References G4cout, G4endl, B01DetectorConstruction::GetCellName(), B01Run::GetHitsMap(), G4Run::GetNumberOfEvent(), G4RunManager::GetRunManager(), G4RunManager::GetUserDetectorConstruction(), G4UserRunAction::IsMaster(), iz, and PrintHeader().

89 {
90  G4cout << " ###### EndOfRunAction " <<G4endl;
91  //- B01Run object.
92  B01Run* b01Run = (B01Run*)aRun;
93  //--- Dump all socred quantities involved in B01Run.
94  // re02Run->DumpAllScorer();
95  //---
97  //
98 
99  for ( G4int i = 0; i < (G4int)fSDName.size(); i++ ){
100  const G4VUserDetectorConstruction* vdet =
103  //
104 
105  //---------------------------------------------
106  // Dump accumulated quantities for this RUN.
107  // (Display only central region of x-y plane)
108  // 0 ConcreteSD/Collisions
109  // 1 ConcreteSD/CollWeight
110  // 2 ConcreteSD/Population
111  // 3 ConcreteSD/TrackEnter
112  // 4 ConcreteSD/SL
113  // 5 ConcreteSD/SLW
114  // 6 ConcreteSD/SLWE
115  // 7 ConcreteSD/SLW_V
116  // 8 ConcreteSD/SLWE_V
117  //---------------------------------------------
118  G4THitsMap<G4double>* Collisions =
119  b01Run->GetHitsMap(fSDName[i]+"/Collisions");
120  G4THitsMap<G4double>* CollWeight =
121  b01Run->GetHitsMap(fSDName[i]+"/CollWeight");
122  G4THitsMap<G4double>* Population =
123  b01Run->GetHitsMap(fSDName[i]+"/Population");
124  G4THitsMap<G4double>* TrackEnter =
125  b01Run->GetHitsMap(fSDName[i]+"/TrackEnter");
126  G4THitsMap<G4double>* SL = b01Run->GetHitsMap(fSDName[i]+"/SL");
127  G4THitsMap<G4double>* SLW = b01Run->GetHitsMap(fSDName[i]+"/SLW");
128  G4THitsMap<G4double>* SLWE = b01Run->GetHitsMap(fSDName[i]+"/SLWE");
129  G4THitsMap<G4double>* SLW_V = b01Run->GetHitsMap(fSDName[i]+"/SLW_V");
130  G4THitsMap<G4double>* SLWE_V = b01Run->GetHitsMap(fSDName[i]+"/SLWE_V");
131 
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 }
const G4VUserDetectorConstruction * GetUserDetectorConstruction() const
void PrintHeader(std::ostream *out)
int G4int
Definition: G4Types.hh:78
G4GLOB_DLL std::ostream G4cout
G4int GetNumberOfEvent() const
Definition: G4Run.hh:79
G4double iz
Definition: TRTMaterials.hh:39
G4bool IsMaster() const
Definition: B01Run.hh:50
static G4RunManager * GetRunManager()
Definition: G4RunManager.cc:74
G4THitsMap< G4double > * GetHitsMap(G4int i)
Definition: B01Run.hh:70
#define G4endl
Definition: G4ios.hh:61
double G4double
Definition: G4Types.hh:76
std::string B01RunAction::FillString ( const std::string &  name,
char  c,
G4int  n,
G4bool  back = true 
)

Definition at line 241 of file B01RunAction.cc.

References test::fname.

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 }
const XML_Char * name
int G4int
Definition: G4Types.hh:78
const G4int n
G4Run * B01RunAction::GenerateRun ( void  )
virtual

Reimplemented from G4UserRunAction.

Definition at line 71 of file B01RunAction.cc.

72 {
73  // Generate new RUN object, which is specially
74  // dedicated for MultiFunctionalDetector scheme.
75  // Detail description can be found in B01Run.hh/cc.
76  return new B01Run(fSDName);
77 }
Definition: B01Run.hh:50
void B01RunAction::PrintHeader ( std::ostream *  out)

Definition at line 206 of file B01RunAction.cc.

References G4endl.

Referenced by EndOfRunAction().

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 }
#define G4endl
Definition: G4ios.hh:61

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