Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 /// \file electromagnetic/TestEm7/src/RunActio << 26 // $Id: RunAction.cc,v 1.24 2008/08/22 18:30:27 vnivanch Exp $ 27 /// \brief Implementation of the RunAction cla << 27 // GEANT4 tag $Name: geant4-09-03-patch-01 $ 28 // << 28 // 29 // << 30 //....oooOO0OOooo........oooOO0OOooo........oo 29 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 31 //....oooOO0OOooo........oooOO0OOooo........oo 30 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 31 33 #include "RunAction.hh" 32 #include "RunAction.hh" 34 << 35 #include "DetectorConstruction.hh" 33 #include "DetectorConstruction.hh" 36 #include "PhysicsList.hh" 34 #include "PhysicsList.hh" 37 #include "PrimaryGeneratorAction.hh" << 38 #include "StepMax.hh" 35 #include "StepMax.hh" >> 36 #include "PrimaryGeneratorAction.hh" 39 37 40 #include "G4Run.hh" 38 #include "G4Run.hh" 41 #include "G4RunManager.hh" 39 #include "G4RunManager.hh" 42 #include "G4SystemOfUnits.hh" << 43 #include "G4UnitsTable.hh" 40 #include "G4UnitsTable.hh" 44 #include "G4ios.hh" 41 #include "G4ios.hh" >> 42 45 #include "Randomize.hh" 43 #include "Randomize.hh" >> 44 #include "Histo.hh" 46 45 47 //....oooOO0OOooo........oooOO0OOooo........oo 46 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 48 47 49 RunAction::RunAction(DetectorConstruction* det << 48 RunAction::RunAction(DetectorConstruction* det, PhysicsList* phys, 50 : G4UserRunAction(), << 49 PrimaryGeneratorAction* kin) 51 fAnalysisManager(0), << 50 :detector(det), physics(phys), kinematic(kin) 52 fDetector(det), << 51 { 53 fPhysics(phys), << 52 tallyEdep = new G4double[MaxTally]; 54 fKinematic(kin), << 53 binLength = offsetX = 0.; 55 fTallyEdep(new G4double[kMaxTally]), << 54 histo = new Histo(); 56 fProjRange(0.), << 55 histo->setFileName("testem7"); 57 fProjRange2(0.), << 56 histo->add1D("1","Edep (MeV/mm) along absorber (mm)", 100, 0, 100); 58 fEdeptot(0.), << 57 histo->add1D("2","Edep (MeV/mm) along absorber zoomed (mm)", 100, 0, 100); 59 fEniel(0.), << 58 histo->add1D("3","Projectile range (mm)", 100, 0, 100); 60 fNbPrimarySteps(0), << 61 fRange(0) << 62 { << 63 // Book predefined histograms << 64 BookHisto(); << 65 } 59 } 66 60 67 //....oooOO0OOooo........oooOO0OOooo........oo 61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 68 62 69 RunAction::~RunAction() 63 RunAction::~RunAction() 70 { 64 { 71 delete[] fTallyEdep; << 65 delete [] tallyEdep; >> 66 delete histo; 72 } 67 } 73 68 74 //....oooOO0OOooo........oooOO0OOooo........oo 69 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 75 70 76 void RunAction::BeginOfRunAction(const G4Run* << 71 void RunAction::FillHisto(G4int ih, G4double x, G4double weight) 77 { 72 { 78 G4cout << "### Run " << aRun->GetRunID() << << 73 histo->fill(ih, x, weight); >> 74 } 79 75 80 if (!fAnalysisManager) { << 76 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 81 BookHisto(); << 82 } << 83 77 >> 78 void RunAction::BeginOfRunAction(const G4Run* aRun) >> 79 { >> 80 G4cout << "### Run " << aRun->GetRunID() << " start." << G4endl; >> 81 >> 82 // save Rndm status >> 83 G4RunManager::GetRunManager()->SetRandomNumberStore(true); 84 CLHEP::HepRandom::showEngineStatus(); 84 CLHEP::HepRandom::showEngineStatus(); 85 << 85 86 // initialize projected range, tallies, Ebea << 86 //initialize projected range, tallies, Ebeam, and book histograms 87 // 87 // 88 fNbPrimarySteps = 0; << 88 nPrimarySteps = 0; 89 fRange = 0; << 89 nRange = 0; 90 fProjRange = fProjRange2 = 0.; << 90 projRange = projRange2 = 0.; 91 fEdeptot = fEniel = 0.; << 91 edeptot = eniel = 0.; 92 for (G4int j = 0; j < kMaxTally; ++j) { << 92 for (G4int j=0; j<MaxTally; j++) tallyEdep[j] = 0.; 93 fTallyEdep[j] = 0.; << 93 kinematic->ResetEbeamCumul(); 94 } << 94 95 fKinematic->ResetEbeamCumul(); << 95 // define "1" histogram binning 96 << 96 length = detector->GetAbsorSizeX(); 97 if (fAnalysisManager->IsActive()) { << 97 G4double stepMax = physics->GetStepMaxProcess()->GetMaxStep(); 98 fAnalysisManager->OpenFile(); << 98 const G4int nbmin = 100; 99 << 99 G4int nbBins = (G4int)(0.5 + length/stepMax); 100 // histogram "1" is defined by the length << 100 if (nbBins < nbmin) nbBins = nbmin; 101 // zoomed histograms are defined by UI com << 101 binLength = length/nbBins; 102 G4double length = fDetector->GetAbsorSizeX << 102 offsetX = 0.5*length; 103 G4double stepMax = fPhysics->GetStepMaxPro << 103 104 G4int nbBins = 100; << 104 // histogram "1" is defined by the length of the target 105 if (stepMax < DBL_MAX) { << 105 // zoomed histograms are defined by UI command 106 G4int nb = (G4int)(0.5 + length / stepMa << 106 histo->setHisto1D(0, nbBins, 0, length, mm); 107 nbBins = std::min(std::max(nbBins, nb), << 107 108 } << 108 histo->book(); 109 fAnalysisManager->SetH1(1, nbBins, 0., len << 110 } << 111 } 109 } 112 110 113 //....oooOO0OOooo........oooOO0OOooo........oo 111 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 114 112 115 void RunAction::EndOfRunAction(const G4Run* aR 113 void RunAction::EndOfRunAction(const G4Run* aRun) 116 { 114 { 117 G4int nbofEvents = aRun->GetNumberOfEvent(); << 115 G4int NbofEvents = aRun->GetNumberOfEvent(); 118 if (nbofEvents == 0) return; << 116 if (NbofEvents == 0) return; 119 117 120 // run conditions << 118 //run conditions 121 // << 119 // 122 const G4Material* material = fDetector->GetA << 120 G4Material* material = detector->GetAbsorMaterial(); 123 G4double density = material->GetDensity(); 121 G4double density = material->GetDensity(); 124 << 122 125 G4String particle = fKinematic->GetParticleG << 123 G4String particle = kinematic->GetParticleGun()->GetParticleDefinition() 126 G4double energy = fKinematic->GetParticleGun << 124 ->GetParticleName(); 127 G4cout << "\n The run consists of " << nbofE << 125 G4double energy = kinematic->GetParticleGun()->GetParticleEnergy(); 128 << G4BestUnit(energy, "Energy") << " << 126 G4cout << "\n The run consists of " << NbofEvents << " "<< particle << " of " 129 << G4BestUnit(fDetector->GetAbsorSize << 127 << G4BestUnit(energy,"Energy") << " through " 130 << " (density: " << G4BestUnit(densit << 128 << G4BestUnit(detector->GetAbsorSizeX(),"Length") << " of " 131 << 129 << material->GetName() << " (density: " 132 // compute projected range and straggling << 130 << G4BestUnit(density,"Volumic Mass") << ")" << G4endl; 133 // << 131 134 if (fRange > 0) { << 132 //compute projected range and straggling 135 fProjRange /= fRange; << 133 // 136 fProjRange2 /= fRange; << 134 if(nRange > 0) { 137 } << 135 projRange /= nRange; 138 G4double rms = fProjRange2 - fProjRange * fP << 136 projRange2 /= nRange; 139 if (rms > 0.) << 137 } 140 rms = std::sqrt(rms); << 138 G4double rms = projRange2 - projRange*projRange; 141 else << 139 if (rms>0.) rms = std::sqrt(rms); else rms = 0.; 142 rms = 0.; << 140 143 << 141 G4double nstep = G4double(nPrimarySteps)/G4double(NbofEvents); 144 G4double nstep = G4double(fNbPrimarySteps) / << 142 145 << 143 G4cout.precision(6); 146 G4cout.precision(6); << 144 G4cout << "\n Projected Range= "<< G4BestUnit(projRange,"Length") 147 G4cout << "\n Projected Range= " << G4BestUn << 145 << " rms= " << G4BestUnit( rms,"Length") 148 << " rms= " << G4BestUnit(rms, "Len << 146 << G4endl; 149 G4cout << " Mean number of primary steps = " << 147 G4cout << " Mean number of primary steps = "<< nstep << G4endl; 150 << 148 151 // compute energy deposition and niel << 149 //compute energy deposition and NIEL >> 150 // >> 151 edeptot /= NbofEvents; >> 152 G4cout << " Total energy deposit= "<< G4BestUnit(edeptot,"Energy") >> 153 << G4endl; >> 154 eniel /= NbofEvents; >> 155 G4cout << " NIEL energy deposit = "<< G4BestUnit(eniel,"Energy") >> 156 << G4endl; >> 157 >> 158 //print dose in tallies 152 // 159 // 153 fEdeptot /= nbofEvents; << 160 G4int tallyNumber = detector->GetTallyNumber(); 154 G4cout << " Total energy deposit= " << G4Bes << 155 fEniel /= nbofEvents; << 156 G4cout << " niel energy deposit = " << G4Bes << 157 << 158 // print dose in tallies << 159 // << 160 G4int tallyNumber = fDetector->GetTallyNumbe << 161 if (tallyNumber > 0) { 161 if (tallyNumber > 0) { 162 G4double Ebeam = fKinematic->GetEbeamCumul << 162 G4double tallyMass = detector->GetTallyMass(); >> 163 G4double Ebeam = kinematic->GetEbeamCumul(); 163 G4cout << "\n----------------------------- 164 G4cout << "\n---------------------------------------------------------\n"; 164 G4cout << " Cumulated Doses : \tEdep 165 G4cout << " Cumulated Doses : \tEdep \tEdep/Ebeam \tDose" << G4endl; 165 for (G4int j = 0; j < tallyNumber; ++j) { << 166 for (G4int j=0; j<tallyNumber; j++) { 166 G4double Edep = fTallyEdep[j], ratio = 1 << 167 G4double Edep = tallyEdep[j], ratio = 100*Edep/Ebeam; 167 G4double tallyMass = fDetector->GetTally << 168 G4double Dose = Edep/tallyMass; 168 G4double Dose = Edep / tallyMass; << 169 G4cout << " tally " << j << ": \t \t" 169 G4cout << " tally " << j << ": \t \t" << << 170 << G4BestUnit(Edep,"Energy") << "\t" 170 << " % \t" << G4BestUnit(Dose, "D << 171 << ratio << " % \t" >> 172 << G4BestUnit(Dose,"Dose") << G4endl; 171 } 173 } 172 G4cout << "\n----------------------------- 174 G4cout << "\n---------------------------------------------------------\n"; 173 G4cout << G4endl; << 175 G4cout << G4endl; 174 } << 175 << 176 if (fAnalysisManager->IsActive()) { << 177 // normalize histograms << 178 // << 179 for (G4int j = 1; j < 3; ++j) { << 180 G4double binWidth = fAnalysisManager->Ge << 181 G4double fac = (mm / MeV) / (nbofEvents << 182 fAnalysisManager->ScaleH1(j, fac); << 183 } << 184 fAnalysisManager->ScaleH1(3, 1. / nbofEven << 185 << 186 // save histograms << 187 fAnalysisManager->Write(); << 188 fAnalysisManager->CloseFile(); << 189 } 176 } 190 177 >> 178 // normalize histogram >> 179 G4double fac = (mm/MeV)/(NbofEvents * binLength); >> 180 for (G4int j=0; j<3; j++) {histo->scale(j, fac);} >> 181 >> 182 // save and clean histo >> 183 histo->save(); >> 184 191 // show Rndm status 185 // show Rndm status 192 // << 193 CLHEP::HepRandom::showEngineStatus(); 186 CLHEP::HepRandom::showEngineStatus(); 194 } << 195 << 196 //....oooOO0OOooo........oooOO0OOooo........oo << 197 << 198 void RunAction::BookHisto() << 199 { << 200 // Create or get analysis manager << 201 // The choice of analysis technology is done << 202 // in HistoManager.hh << 203 fAnalysisManager = G4AnalysisManager::Instan << 204 fAnalysisManager->SetDefaultFileType("root") << 205 fAnalysisManager->SetFileName("testem7"); << 206 fAnalysisManager->SetVerboseLevel(1); << 207 fAnalysisManager->SetActivation(true); // e << 208 << 209 // Define histograms start values << 210 const G4int kMaxHisto = 4; << 211 const G4String id[] = {"h0", "h1", "h2", "h3 << 212 const G4String title[] = { << 213 "dummy", // 0 << 214 "Edep (MeV/mm) along absorber ", // 1 << 215 "Edep (MeV/mm) along absorber zoomed", // << 216 "projectile range" // 3 << 217 }; << 218 << 219 // Default values (to be reset via /analysis << 220 G4int nbins = 100; << 221 G4double vmin = 0.; << 222 G4double vmax = 100.; << 223 << 224 // Create all histograms as inactivated << 225 // as we have not yet set nbins, vmin, vmax << 226 for (G4int k = 0; k < kMaxHisto; ++k) { << 227 G4int ih = fAnalysisManager->CreateH1(id[k << 228 G4bool activ = false; << 229 if (k == 1) activ = true; << 230 fAnalysisManager->SetH1Activation(ih, acti << 231 } << 232 } 187 } 233 188 234 //....oooOO0OOooo........oooOO0OOooo........oo 189 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 235 190