File indexing completed on 2025-04-04 08:03:50
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033 #include "TETRunAction.hh"
0034
0035 TETRunAction::TETRunAction(TETModelImport* _tetData, G4String _output)
0036 :fTetData(_tetData), fRun(nullptr), fNumOfEvent(0), fRunID(0), fOutputFile(_output)
0037 {}
0038
0039 G4Run* TETRunAction::GenerateRun()
0040 {
0041
0042 fRun = new TETRun();
0043 return fRun;
0044 }
0045
0046 void TETRunAction::BeginOfRunAction(const G4Run* aRun)
0047 {
0048
0049 fNumOfEvent=aRun->GetNumberOfEventToBeProcessed();
0050 G4RunManager::GetRunManager()->SetPrintProgress(int(fNumOfEvent*0.1));
0051 }
0052
0053 void TETRunAction::EndOfRunAction(const G4Run* aRun)
0054 {
0055
0056 if(!isMaster) return;
0057
0058
0059 fRunID = aRun->GetRunID();
0060
0061
0062
0063
0064 PrintResult(G4cout);
0065
0066
0067 std::ofstream ofs(fOutputFile.c_str());
0068 PrintResult(ofs);
0069 ofs.close();
0070 }
0071
0072 void TETRunAction::PrintResult(std::ostream &out)
0073 {
0074
0075
0076 using namespace std;
0077 EDEPMAP edepMap = *fRun->GetEdepMap();
0078
0079 out << G4endl
0080 << "=====================================================================" << G4endl
0081 << " Run #" << fRunID << " / Number of event processed : "<< fNumOfEvent << G4endl
0082 << "=====================================================================" << G4endl
0083 << "organ ID| "
0084 << setw(19) << "Organ Mass (g)"
0085 << setw(19) << "Dose (Gy/source)"
0086 << setw(19) << "Relative Error" << G4endl;
0087
0088 out.precision(3);
0089 auto massMap = fTetData->GetMassMap();
0090 for(auto itr : massMap){
0091 G4double meanDose = edepMap[itr.first].first / itr.second / fNumOfEvent;
0092 G4double squareDose = edepMap[itr.first].second / (itr.second*itr.second);
0093 G4double variance = ((squareDose/fNumOfEvent) - (meanDose*meanDose))/fNumOfEvent;
0094 G4double relativeE(1);
0095 if(meanDose > 0) relativeE = sqrt(variance)/meanDose;
0096
0097 out << setw(8) << itr.first << "| "
0098 << setw(19) << fixed << itr.second/g;
0099 out << setw(19) << scientific << meanDose/(joule/kg);
0100 out << setw(19) << fixed << relativeE << G4endl;
0101 }
0102 out << "=====================================================================" << G4endl << G4endl;
0103 }