Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 /// \file Run.cc 27 /// \brief Implementation of the Run class 28 // 29 // 30 31 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oo 33 34 #include "Run.hh" 35 36 #include "G4Run.hh" 37 #include "G4RunManager.hh" 38 #include "G4SystemOfUnits.hh" 39 40 //....oooOO0OOooo........oooOO0OOooo........oo 41 42 Run::Run() 43 : G4Run(), 44 fNumEvents(0), 45 fPrimaryParticleId(0), 46 fPrimaryParticleEnergy(0.0), 47 fPrimaryParticleDirection(G4ThreeVector(0. 48 fAbsorberMaterialName(""), 49 fActiveMaterialName(""), 50 fCubicVolumeScoringUpDown(1.0), 51 fCubicVolumeScoringSide(1.0) 52 { 53 fSteppingArray.fill(0.0); 54 fTrackingArray1.fill(0); 55 fTrackingArray2.fill(0.0); 56 } 57 58 //....oooOO0OOooo........oooOO0OOooo........oo 59 60 void Run::RecordEvent(const G4Event* anEvent) 61 { 62 // This method is called automatically by th 63 // of each event : in MT-mode, it is called 64 G4int nEvt = anEvent->GetEventID(); 65 if (nEvt % 10 == 0) G4cout << " Event#=" << 66 G4Run::RecordEvent(anEvent); 67 } 68 69 //....oooOO0OOooo........oooOO0OOooo........oo 70 71 void Run::Merge(const G4Run* aRun) 72 { 73 // This method is called automatically by th 74 // of multithreaded mode and only for workin 75 const Run* localRun = static_cast<const Run* 76 fPrimaryParticleId = localRun->GetPrimaryPar 77 fPrimaryParticleEnergy = localRun->GetPrimar 78 fPrimaryParticleDirection = localRun->GetPri 79 fAbsorberMaterialName = localRun->GetAbsorbe 80 fActiveMaterialName = localRun->GetActiveMat 81 fCubicVolumeScoringUpDown = localRun->GetCub 82 fCubicVolumeScoringSide = localRun->GetCubic 83 fNumEvents += localRun->GetNumberOfEvent(); 84 for (G4int i = 0; i < SteppingAction::fkNumb 85 fSteppingArray[i] += localRun->GetStepping 86 } 87 for (G4int i = 0; i < TrackingAction::fkNumb 88 fTrackingArray1[i] += localRun->GetTrackin 89 fTrackingArray2[i] += localRun->GetTrackin 90 } 91 G4Run::Merge(aRun); 92 } 93 94 //....oooOO0OOooo........oooOO0OOooo........oo 95 96 void Run::PrintInfo() const 97 { 98 // This method is called by RunAction::EndOf 99 // calls it. 100 const G4double floatingNumberOfEvents = 101 std::max(1.0, fNumEvents > 0 ? fNumEvents 102 // The fluence in the scoring volume is defi 103 // divided by the volume of that scoring vol 104 const G4double conversionFactor = CLHEP::cm 105 const G4double factorUpDown = 106 conversionFactor / (fCubicVolumeScoringUpD 107 const G4double factorSide = conversionFactor 108 G4cout << std::setprecision(6) << G4endl << 109 << " =============== Run::PrintInfo( 110 << G4endl << " Primary particle PDG c 111 << " Primary particle kinetic energy 112 << G4endl << " Primary particle direc 113 << " Absorber material = " << fAbsorb 114 << " Active material = " << fActive 115 << " Cubic-volume scoring up-down = " 116 << " Cubic-volume scoring side = " 117 << " Number of events = " << floating 118 << " Conversion factor: fluence from 119 << " Particle fluence in unit of cm^- 120 for (G4int i = 0; i < SteppingAction::fkNumb 121 G4double factor = (i == 1 ? factorSide : f 122 for (G4int j = 0; j < SteppingAction::fkNu 123 for (G4int k = 0; k < SteppingAction::fk 124 G4int index = SteppingAction::GetIndex 125 // G4cout << "(i, j, k)=(" << i << ", 126 G4cout << " case=" << std::setw(3) < 127 << SteppingAction::fkArrayScori 128 << SteppingAction::fkArrayKinem 129 << SteppingAction::fkArrayParti 130 << factor * fSteppingArray[inde 131 } 132 } 133 } 134 G4cout << " -------------------------------- 135 << " Extra information: particle prod 136 << G4endl; 137 const G4double normalization = 1.0 / floatin 138 for (G4int i = 0; i < TrackingAction::fkNumb 139 for (G4int j = 0; j < TrackingAction::fkNu 140 for (G4int k = 0; k < TrackingAction::fk 141 G4int index = TrackingAction::GetIndex 142 // G4cout << "(i, j, k)=(" << i << ", 143 G4cout << " case=" << std::setw(3) < 144 << TrackingAction::fkArrayScori 145 << TrackingAction::fkArrayKinem 146 << TrackingAction::fkArrayParti 147 << normalization * fTrackingArr 148 << (fTrackingArray1[index] > 0 149 150 << " " << std::setw(8) << nor 151 } 152 } 153 } 154 G4cout << " ================================ 155 } 156 157 //....oooOO0OOooo........oooOO0OOooo........oo 158 159 void Run::SetSteppingArray( 160 const std::array<G4double, SteppingAction::f 161 { 162 for (G4int i = 0; i < SteppingAction::fkNumb 163 fSteppingArray[i] = inputArray[i]; 164 } 165 } 166 167 //....oooOO0OOooo........oooOO0OOooo........oo 168 169 void Run::SetTrackingArray1( 170 const std::array<G4long, TrackingAction::fkN 171 { 172 for (G4int i = 0; i < TrackingAction::fkNumb 173 fTrackingArray1[i] = inputArray[i]; 174 } 175 } 176 177 //....oooOO0OOooo........oooOO0OOooo........oo 178 179 void Run::SetTrackingArray2( 180 const std::array<G4double, TrackingAction::f 181 { 182 for (G4int i = 0; i < TrackingAction::fkNumb 183 fTrackingArray2[i] = inputArray[i]; 184 } 185 } 186 187 //....oooOO0OOooo........oooOO0OOooo........oo 188