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 // 27 /// \file radiobiology/src/RBEAccumulable.cc 28 /// \brief Implementation of the RadioBio::RBE 29 30 #include "RBEAccumulable.hh" 31 32 #include "G4ParticleDefinition.hh" 33 34 #include "Hit.hh" 35 #include "Manager.hh" 36 #include "RBE.hh" 37 #include "VoxelizedSensitiveDetector.hh" 38 #include <G4SystemOfUnits.hh> 39 40 #include <tuple> 41 42 namespace RadioBio 43 { 44 45 //....oooOO0OOooo........oooOO0OOooo........oo 46 47 RBEAccumulable::RBEAccumulable() : VRadiobiolo 48 49 //....oooOO0OOooo........oooOO0OOooo........oo 50 51 void RBEAccumulable::Merge(const G4VAccumulabl 52 { 53 if (GetVerboseLevel() > 1) { 54 G4cout << "RBEAccumulable::Merge()" << G4e 55 } 56 const RBEAccumulable& other = dynamic_cast<c 57 fAlphaNumerator += other.fAlphaNumerator; 58 fDenominator += other.fDenominator; 59 fBetaNumerator += other.fBetaNumerator; 60 } 61 62 //....oooOO0OOooo........oooOO0OOooo........oo 63 64 void RBEAccumulable::Reset() 65 { 66 if (GetVerboseLevel() > 0) { 67 G4cout << "RBEAccumulable::Reset()" << G4e 68 } 69 if (fInitialized) { 70 fAlphaNumerator = 0.0; 71 fBetaNumerator = 0.0; 72 fDenominator = 0.0; 73 } 74 else { 75 Initialize(); 76 } 77 } 78 79 //....oooOO0OOooo........oooOO0OOooo........oo 80 81 // to accumulate given the hit 82 void RBEAccumulable::Accumulate(Hit* hit) 83 { 84 G4double kineticEnergy = hit->GetEkinMean(); 85 G4int A = hit->GetPartType()->GetAtomicMass( 86 G4double energyDeposit = hit->GetDeltaE(); 87 G4double DX = hit->GetTrackLength(); 88 G4int Z = hit->GetPartType()->GetAtomicNumbe 89 G4int i = hit->GetXindex(); 90 G4int j = hit->GetYindex(); 91 G4int k = hit->GetZindex(); 92 93 // If A is zero, return immediately to avoid 94 if (!A) return; 95 96 Accumulate(kineticEnergy / A, energyDeposit, 97 } 98 99 //....oooOO0OOooo........oooOO0OOooo........oo 100 101 void RBEAccumulable::Accumulate(G4double E, G4 102 G4int j, G4int 103 { 104 if (!fInitialized) { 105 G4Exception("RBEAccumulable::Accumulate", 106 "Accumulable not initialized. 107 } 108 if (GetVerboseLevel() > 2) { 109 G4cout << "RBEAccumulable::Accumulate() in 110 } 111 if (energyDeposit <= 0) { 112 return; 113 } 114 115 // Get the global voxel number for the given 116 size_t n = VoxelizedSensitiveDetector::GetIn 117 118 // Calculate only for hadrons that traveled 119 if ((Z >= 1) && (dX > 0) && (E > 0)) { 120 RBE* rbe = dynamic_cast<RBE*>(Manager::Get 121 std::tuple<G4double, G4double> alpha_beta 122 fDenominator[n] += energyDeposit; 123 fAlphaNumerator[n] += std::get<0>(alpha_be 124 fBetaNumerator[n] += std::sqrt(std::get<1> 125 } 126 } 127 128 //....oooOO0OOooo........oooOO0OOooo........oo 129 130 G4int RBEAccumulable::GetVerboseLevel() const 131 { 132 // Return same verbosity of RBE class 133 return Manager::GetInstance()->GetQuantity(" 134 } 135 136 //....oooOO0OOooo........oooOO0OOooo........oo 137 138 void RBEAccumulable::Initialize() 139 { 140 if (GetVerboseLevel() > 0) { 141 G4cout << "RBEAccumulable::Initialize(): " 142 } 143 144 auto voxSensDet = VoxelizedSensitiveDetector 145 146 fVoxelsAlongX = voxSensDet->GetVoxelNumberAl 147 fVoxelsAlongY = voxSensDet->GetVoxelNumberAl 148 fVoxelsAlongZ = voxSensDet->GetVoxelNumberAl 149 fVoxels = fVoxelsAlongX * fVoxelsAlongY * fV 150 151 if (GetVerboseLevel() > 1) { 152 G4cout << fVoxels << " voxels." << G4endl; 153 } 154 155 fAlphaNumerator = array_type(0.0, fVoxels); 156 fBetaNumerator = array_type(0.0, fVoxels); 157 fDenominator = array_type(0.0, fVoxels); 158 fInitialized = true; 159 } 160 161 //....oooOO0OOooo........oooOO0OOooo........oo 162 163 } // namespace RadioBio 164