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 Run.cc 26 /// \file Run.cc 27 /// \brief Implementation of the Run class 27 /// \brief Implementation of the Run class 28 // 28 // 29 // 29 // 30 30 31 //....oooOO0OOooo........oooOO0OOooo........oo 31 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 32 //....oooOO0OOooo........oooOO0OOooo........oo 32 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 33 33 34 #include "Run.hh" 34 #include "Run.hh" 35 << 35 #include "G4SystemOfUnits.hh" 36 #include "G4Run.hh" 36 #include "G4Run.hh" 37 #include "G4RunManager.hh" 37 #include "G4RunManager.hh" 38 #include "G4SystemOfUnits.hh" << 39 38 40 //....oooOO0OOooo........oooOO0OOooo........oo 39 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 41 40 42 Run::Run() << 41 Run::Run() : G4Run(), fNumEvents( 0 ), 43 : G4Run(), << 42 fPrimaryParticleId( 0 ), fPrimaryParticleEnergy( 0.0 ), 44 fNumEvents(0), << 43 fPrimaryParticleDirection( G4ThreeVector( 0.0, 0.0, 0.0 ) ), 45 fPrimaryParticleId(0), << 44 fTargetMaterialName( "" ), fCubicVolumeScoringShell( 1.0 ) 46 fPrimaryParticleEnergy(0.0), << 47 fPrimaryParticleDirection(G4ThreeVector(0. << 48 fTargetMaterialName(""), << 49 fCubicVolumeScoringShell(1.0) << 50 { 45 { 51 fSteppingArray.fill(0.0); << 46 fSteppingArray.fill( 0.0 ); 52 fTrackingArray1.fill(0); << 47 fTrackingArray1.fill( 0 ); 53 fTrackingArray2.fill(0.0); << 48 fTrackingArray2.fill( 0.0 ); 54 } 49 } 55 50 56 //....oooOO0OOooo........oooOO0OOooo........oo 51 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 57 52 58 void Run::RecordEvent(const G4Event* anEvent) << 53 void Run::RecordEvent( const G4Event* anEvent ) { 59 { << 60 // This method is called automatically by th 54 // This method is called automatically by the Geant4 kernel (not by the user!) at the end 61 // of each event : in MT-mode, it is called 55 // of each event : in MT-mode, it is called only for the working thread that handled the event. 62 G4int nEvt = anEvent->GetEventID(); 56 G4int nEvt = anEvent->GetEventID(); 63 if (nEvt % 10 == 0) G4cout << " Event#=" << << 57 if ( nEvt % 10 == 0 ) G4cout << " Event#=" << nEvt << G4endl; 64 G4Run::RecordEvent(anEvent); << 58 G4Run::RecordEvent( anEvent ); 65 } 59 } 66 60 67 //....oooOO0OOooo........oooOO0OOooo........oo 61 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 68 62 69 void Run::Merge(const G4Run* aRun) << 63 void Run::Merge( const G4Run* aRun ) { 70 { << 71 // This method is called automatically by th 64 // This method is called automatically by the Geant4 kernel (not by the user!) only in the case 72 // of multithreaded mode and only for workin 65 // of multithreaded mode and only for working threads. 73 const Run* localRun = static_cast<const Run* << 66 const Run* localRun = static_cast< const Run* >( aRun ); 74 fPrimaryParticleId = localRun->GetPrimaryPar 67 fPrimaryParticleId = localRun->GetPrimaryParticleId(); 75 fPrimaryParticleEnergy = localRun->GetPrimar 68 fPrimaryParticleEnergy = localRun->GetPrimaryParticleEnergy(); 76 fPrimaryParticleDirection = localRun->GetPri 69 fPrimaryParticleDirection = localRun->GetPrimaryParticleDirection(); 77 fTargetMaterialName = localRun->GetTargetMat 70 fTargetMaterialName = localRun->GetTargetMaterialName(); 78 fCubicVolumeScoringShell = localRun->GetCubi 71 fCubicVolumeScoringShell = localRun->GetCubicVolumeScoringShell(); 79 fNumEvents += localRun->GetNumberOfEvent(); 72 fNumEvents += localRun->GetNumberOfEvent(); 80 for (G4int i = 0; i < SteppingAction::fkNumb << 73 for ( G4int i = 0; i < SteppingAction::fkNumberCombinations; ++i ) { 81 fSteppingArray[i] += localRun->GetStepping 74 fSteppingArray[i] += localRun->GetSteppingArray()[i]; 82 } 75 } 83 for (G4int i = 0; i < TrackingAction::fkNumb << 76 for ( G4int i = 0; i < TrackingAction::fkNumberCombinations; ++i ) { 84 fTrackingArray1[i] += localRun->GetTrackin 77 fTrackingArray1[i] += localRun->GetTrackingArray1()[i]; 85 fTrackingArray2[i] += localRun->GetTrackin 78 fTrackingArray2[i] += localRun->GetTrackingArray2()[i]; 86 } 79 } 87 G4Run::Merge(aRun); << 80 G4Run::Merge( aRun ); 88 } 81 } 89 82 90 //....oooOO0OOooo........oooOO0OOooo........oo 83 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 91 84 92 void Run::PrintInfo() const << 85 void Run::PrintInfo() const { 93 { << 94 // This method is called by RunAction::EndOf 86 // This method is called by RunAction::EndOfRunAction. In MT-mode, only the master thread 95 // calls it. 87 // calls it. 96 const G4double floatingNumberOfEvents = 88 const G4double floatingNumberOfEvents = 97 std::max(1.0, fNumEvents > 0 ? fNumEvents << 89 std::max( 1.0, fNumEvents > 0 ? fNumEvents*1.0 : GetNumberOfEvent()*1.0 ); 98 // The fluence in the scoring shell is defin 90 // The fluence in the scoring shell is defined as sum of step lengths in that shell 99 // divided by the cubic-volume of that scori 91 // divided by the cubic-volume of that scoring shell. 100 const G4double conversionFactor = CLHEP::cm 92 const G4double conversionFactor = CLHEP::cm * CLHEP::cm; // From mm^-2 to cm^-2 101 const G4double factor = 93 const G4double factor = 102 conversionFactor / (0.5 * fCubicVolumeScor << 94 conversionFactor / ( 0.5*fCubicVolumeScoringShell*floatingNumberOfEvents ); 103 G4cout << std::setprecision(6) << G4endl << 95 G4cout << std::setprecision(6) << G4endl << G4endl 104 << " =============== Run::PrintInfo( 96 << " =============== Run::PrintInfo() =============== \t RunID = " << GetRunID() 105 << G4endl << " Primary particle PDG c << 97 << G4endl 106 << " Primary particle kinetic energy << 98 << " Primary particle PDG code = " << fPrimaryParticleId << G4endl 107 << G4endl << " Primary particle direc << 99 << " Primary particle kinetic energy = " << fPrimaryParticleEnergy / CLHEP::GeV >> 100 << " GeV" << G4endl >> 101 << " Primary particle direction = " << fPrimaryParticleDirection << G4endl 108 << " Target material = " << fTargetMa 102 << " Target material = " << fTargetMaterialName << G4endl 109 << " Cubic-volume scoring shell = " < 103 << " Cubic-volume scoring shell = " << fCubicVolumeScoringShell << " mm^3" << G4endl 110 << " Number of events = " << floating 104 << " Number of events = " << floatingNumberOfEvents << G4endl 111 << " Conversion factor: fluence from 105 << " Conversion factor: fluence from mm^-2 to cm^-2 = " << conversionFactor << G4endl 112 << " Particle fluence in unit of cm^- 106 << " Particle fluence in unit of cm^-2 :" << G4endl; 113 for (G4int i = 0; i < SteppingAction::fkNumb << 107 for ( G4int i = 0; i < SteppingAction::fkNumberKinematicRegions; ++i ) { 114 for (G4int j = 0; j < SteppingAction::fkNu << 108 for ( G4int j = 0; j < SteppingAction::fkNumberScoringPositions; ++j ) { 115 for (G4int k = 0; k < SteppingAction::fk << 109 for ( G4int k = 0; k < SteppingAction::fkNumberParticleTypes; ++k ) { 116 G4int index = SteppingAction::GetIndex << 110 G4int index = SteppingAction::GetIndex( i, j, k ); 117 // G4cout << "(i, j, k )=(" << i << ", << 111 //G4cout << "(i, j, k )=(" << i << ", " << j << ", " << k << ") ->" << index; 118 G4cout << " case=" << std::setw(3) < << 112 G4cout << " case=" << std::setw(3) << index 119 << SteppingAction::fkArrayKinem << 113 << " " << std::setw(12) << SteppingAction::fkArrayKinematicRegionNames[i] 120 << SteppingAction::fkArrayScori << 114 << " " << std::setw(12) << SteppingAction::fkArrayScoringPositionNames[j] 121 << SteppingAction::fkArrayParti << 115 << " " << std::setw(12) << SteppingAction::fkArrayParticleTypeNames[k] 122 << factor * fSteppingArray[inde << 116 << " " << std::setw( 8) << factor*fSteppingArray[index] << G4endl; 123 } 117 } 124 } 118 } 125 } 119 } 126 G4cout << " -------------------------------- 120 G4cout << " ------------------------------------------------------------- " << G4endl 127 << " Extra information: particle prod 121 << " Extra information: particle production \t \t <N> <E_kin> <Sum_Ekin> [MeV]" 128 << G4endl; 122 << G4endl; 129 const G4double normalization = 1.0 / floatin 123 const G4double normalization = 1.0 / floatingNumberOfEvents; 130 for (G4int i = 0; i < TrackingAction::fkNumb << 124 for ( G4int i = 0; i < TrackingAction::fkNumberScoringVolumes; ++i ) { 131 for (G4int j = 0; j < TrackingAction::fkNu << 125 for ( G4int j = 0; j < TrackingAction::fkNumberKinematicRegions; ++j ) { 132 for (G4int k = 0; k < TrackingAction::fk << 126 for ( G4int k = 0; k < TrackingAction::fkNumberParticleTypes; ++k ) { 133 G4int index = TrackingAction::GetIndex << 127 G4int index = TrackingAction::GetIndex( i, j, k ); 134 // G4cout << "(i, j, k)=(" << i << ", << 128 //G4cout << "(i, j, k)=(" << i << ", " << j << ", " << k << ") ->" << index; 135 G4cout << " case=" << std::setw(3) < << 129 G4cout << " case=" << std::setw(3) << index 136 << TrackingAction::fkArrayScori << 130 << " " << std::setw(12) << TrackingAction::fkArrayScoringVolumeNames[i] 137 << TrackingAction::fkArrayKinem << 131 << " " << std::setw(12) << TrackingAction::fkArrayKinematicRegionNames[j] 138 << TrackingAction::fkArrayParti << 132 << " " << std::setw(12) << TrackingAction::fkArrayParticleTypeNames[k] 139 << normalization * fTrackingArr << 133 << " " << std::setw( 8) << normalization * fTrackingArray1[index] 140 << (fTrackingArray1[index] > 0 << 134 << " " << std::setw( 8) << ( fTrackingArray1[index] > 0 ? 141 << 135 fTrackingArray2[index] / fTrackingArray1[index] : 142 << " " << std::setw(8) << nor << 136 0.0 ) >> 137 << " " << std::setw( 8) << normalization * fTrackingArray2[index] >> 138 << G4endl; 143 } 139 } 144 } 140 } 145 } 141 } 146 G4cout << " ================================ 142 G4cout << " ============================================================= " << G4endl << G4endl; 147 } 143 } 148 144 149 //....oooOO0OOooo........oooOO0OOooo........oo 145 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 150 146 151 void Run::SetSteppingArray( << 147 void Run::SetSteppingArray( const std::array< G4double, 152 const std::array<G4double, SteppingAction::f << 148 SteppingAction::fkNumberCombinations >& inputArray ) { 153 { << 149 for ( G4int i = 0; i < SteppingAction::fkNumberCombinations; ++i ) { 154 for (G4int i = 0; i < SteppingAction::fkNumb << 155 fSteppingArray[i] = inputArray[i]; 150 fSteppingArray[i] = inputArray[i]; 156 } 151 } 157 } 152 } 158 153 159 //....oooOO0OOooo........oooOO0OOooo........oo 154 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 160 155 161 void Run::SetTrackingArray1( << 156 void Run::SetTrackingArray1( const std::array< G4int, 162 const std::array<G4long, TrackingAction::fkN << 157 TrackingAction::fkNumberCombinations >& inputArray ) { 163 { << 158 for ( G4int i = 0; i < TrackingAction::fkNumberCombinations; ++i ) { 164 for (G4int i = 0; i < TrackingAction::fkNumb << 165 fTrackingArray1[i] = inputArray[i]; 159 fTrackingArray1[i] = inputArray[i]; 166 } 160 } 167 } 161 } 168 162 169 //....oooOO0OOooo........oooOO0OOooo........oo 163 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 170 164 171 void Run::SetTrackingArray2( << 165 void Run::SetTrackingArray2( const std::array< G4double, 172 const std::array<G4double, TrackingAction::f << 166 TrackingAction::fkNumberCombinations >& inputArray ) { 173 { << 167 for ( G4int i = 0; i < TrackingAction::fkNumberCombinations; ++i ) { 174 for (G4int i = 0; i < TrackingAction::fkNumb << 175 fTrackingArray2[i] = inputArray[i]; 168 fTrackingArray2[i] = inputArray[i]; 176 } 169 } 177 } 170 } 178 171 179 //....oooOO0OOooo........oooOO0OOooo........oo 172 //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo...... 180 173