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 fTargetMaterialName(""), 49 fCubicVolumeScoringShell(1.0) 50 { 51 fSteppingArray.fill(0.0); 52 fTrackingArray1.fill(0); 53 fTrackingArray2.fill(0.0); 54 } 55 56 //....oooOO0OOooo........oooOO0OOooo........oo 57 58 void Run::RecordEvent(const G4Event* anEvent) 59 { 60 // This method is called automatically by th 61 // of each event : in MT-mode, it is called 62 G4int nEvt = anEvent->GetEventID(); 63 if (nEvt % 10 == 0) G4cout << " Event#=" << 64 G4Run::RecordEvent(anEvent); 65 } 66 67 //....oooOO0OOooo........oooOO0OOooo........oo 68 69 void Run::Merge(const G4Run* aRun) 70 { 71 // This method is called automatically by th 72 // of multithreaded mode and only for workin 73 const Run* localRun = static_cast<const Run* 74 fPrimaryParticleId = localRun->GetPrimaryPar 75 fPrimaryParticleEnergy = localRun->GetPrimar 76 fPrimaryParticleDirection = localRun->GetPri 77 fTargetMaterialName = localRun->GetTargetMat 78 fCubicVolumeScoringShell = localRun->GetCubi 79 fNumEvents += localRun->GetNumberOfEvent(); 80 for (G4int i = 0; i < SteppingAction::fkNumb 81 fSteppingArray[i] += localRun->GetStepping 82 } 83 for (G4int i = 0; i < TrackingAction::fkNumb 84 fTrackingArray1[i] += localRun->GetTrackin 85 fTrackingArray2[i] += localRun->GetTrackin 86 } 87 G4Run::Merge(aRun); 88 } 89 90 //....oooOO0OOooo........oooOO0OOooo........oo 91 92 void Run::PrintInfo() const 93 { 94 // This method is called by RunAction::EndOf 95 // calls it. 96 const G4double floatingNumberOfEvents = 97 std::max(1.0, fNumEvents > 0 ? fNumEvents 98 // The fluence in the scoring shell is defin 99 // divided by the cubic-volume of that scori 100 const G4double conversionFactor = CLHEP::cm 101 const G4double factor = 102 conversionFactor / (0.5 * fCubicVolumeScor 103 G4cout << std::setprecision(6) << G4endl << 104 << " =============== Run::PrintInfo( 105 << G4endl << " Primary particle PDG c 106 << " Primary particle kinetic energy 107 << G4endl << " Primary particle direc 108 << " Target material = " << fTargetMa 109 << " Cubic-volume scoring shell = " < 110 << " Number of events = " << floating 111 << " Conversion factor: fluence from 112 << " Particle fluence in unit of cm^- 113 for (G4int i = 0; i < SteppingAction::fkNumb 114 for (G4int j = 0; j < SteppingAction::fkNu 115 for (G4int k = 0; k < SteppingAction::fk 116 G4int index = SteppingAction::GetIndex 117 // G4cout << "(i, j, k )=(" << i << ", 118 G4cout << " case=" << std::setw(3) < 119 << SteppingAction::fkArrayKinem 120 << SteppingAction::fkArrayScori 121 << SteppingAction::fkArrayParti 122 << factor * fSteppingArray[inde 123 } 124 } 125 } 126 G4cout << " -------------------------------- 127 << " Extra information: particle prod 128 << G4endl; 129 const G4double normalization = 1.0 / floatin 130 for (G4int i = 0; i < TrackingAction::fkNumb 131 for (G4int j = 0; j < TrackingAction::fkNu 132 for (G4int k = 0; k < TrackingAction::fk 133 G4int index = TrackingAction::GetIndex 134 // G4cout << "(i, j, k)=(" << i << ", 135 G4cout << " case=" << std::setw(3) < 136 << TrackingAction::fkArrayScori 137 << TrackingAction::fkArrayKinem 138 << TrackingAction::fkArrayParti 139 << normalization * fTrackingArr 140 << (fTrackingArray1[index] > 0 141 142 << " " << std::setw(8) << nor 143 } 144 } 145 } 146 G4cout << " ================================ 147 } 148 149 //....oooOO0OOooo........oooOO0OOooo........oo 150 151 void Run::SetSteppingArray( 152 const std::array<G4double, SteppingAction::f 153 { 154 for (G4int i = 0; i < SteppingAction::fkNumb 155 fSteppingArray[i] = inputArray[i]; 156 } 157 } 158 159 //....oooOO0OOooo........oooOO0OOooo........oo 160 161 void Run::SetTrackingArray1( 162 const std::array<G4long, TrackingAction::fkN 163 { 164 for (G4int i = 0; i < TrackingAction::fkNumb 165 fTrackingArray1[i] = inputArray[i]; 166 } 167 } 168 169 //....oooOO0OOooo........oooOO0OOooo........oo 170 171 void Run::SetTrackingArray2( 172 const std::array<G4double, TrackingAction::f 173 { 174 for (G4int i = 0; i < TrackingAction::fkNumb 175 fTrackingArray2[i] = inputArray[i]; 176 } 177 } 178 179 //....oooOO0OOooo........oooOO0OOooo........oo 180