Loading...
Searching...
No Matches
RBEAccumulable.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26//
27/// \file radiobiology/src/RBEAccumulable.cc
28/// \brief Implementation of the RadioBio::RBEAccumulable class
29
30#include "RBEAccumulable.hh"
31
32#include "G4ParticleDefinition.hh"
33
34#include "Hit.hh"
35#include "Manager.hh"
36#include "RBE.hh"
38#include <G4SystemOfUnits.hh>
39
40#include <tuple>
41
42namespace RadioBio
43{
44
45//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
46
48
49//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
50
52{
53 if (GetVerboseLevel() > 1) {
54 G4cout << "RBEAccumulable::Merge()" << G4endl;
55 }
56 const RBEAccumulable& other = dynamic_cast<const RBEAccumulable&>(rhs);
60}
61
62//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
63
65{
66 if (GetVerboseLevel() > 0) {
67 G4cout << "RBEAccumulable::Reset()" << G4endl;
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........oooOO0OOooo........oooOO0OOooo......
80
81// to accumulate given the 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()->GetAtomicNumber();
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 division by zero
94 if (!A) return;
95
96 Accumulate(kineticEnergy / A, energyDeposit, DX, Z, i, j, k);
97}
98
99//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
100
101void RBEAccumulable::Accumulate(G4double E, G4double energyDeposit, G4double dX, G4int Z, G4int i,
102 G4int j, G4int k)
103{
104 if (!fInitialized) {
105 G4Exception("RBEAccumulable::Accumulate", "NotInitialized", FatalException,
106 "Accumulable not initialized. Must be a programming error.");
107 }
108 if (GetVerboseLevel() > 2) {
109 G4cout << "RBEAccumulable::Accumulate() in " << i << ", " << j << ", " << k << G4endl;
110 }
111 if (energyDeposit <= 0) {
112 return;
113 }
114
115 // Get the global voxel number for the given indexes
117
118 // Calculate only for hadrons that traveled finite range and released finite energy.
119 if ((Z >= 1) && (dX > 0) && (E > 0)) {
120 RBE* rbe = dynamic_cast<RBE*>(Manager::GetInstance()->GetQuantity("RBE"));
121 std::tuple<G4double, G4double> alpha_beta = rbe->GetHitAlphaAndBeta(E, Z);
122 fDenominator[n] += energyDeposit;
123 fAlphaNumerator[n] += std::get<0>(alpha_beta) * energyDeposit;
124 fBetaNumerator[n] += std::sqrt(std::get<1>(alpha_beta)) * energyDeposit;
125 }
126}
127
128//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
129
131{
132 // Return same verbosity of RBE class
134}
135
136//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
137
139{
140 if (GetVerboseLevel() > 0) {
141 G4cout << "RBEAccumulable::Initialize(): " << G4endl;
142 }
143
144 auto voxSensDet = VoxelizedSensitiveDetector::GetInstance();
145
146 fVoxelsAlongX = voxSensDet->GetVoxelNumberAlongX();
147 fVoxelsAlongY = voxSensDet->GetVoxelNumberAlongY();
148 fVoxelsAlongZ = voxSensDet->GetVoxelNumberAlongZ();
150
151 if (GetVerboseLevel() > 1) {
152 G4cout << fVoxels << " voxels." << G4endl;
153 }
154
158 fInitialized = true;
159}
160
161//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
162
163} // namespace RadioBio
Definition of the RadioBio::Hit class.
Definition of the RadioBio::Manager class.
Definition of the RadioBio::RBEAccumulable class.
Definition of the RadioBio::RBE class.
Definition of the RadioBio::VoxelizedSensitiveDetector class.
Detector hit class.
G4int GetXindex()
Definition Hit.hh:90
const G4ParticleDefinition * GetPartType() const
Definition Hit.hh:83
G4double GetEkinMean()
Definition Hit.hh:84
G4double GetTrackLength() const
Definition Hit.hh:87
G4double GetDeltaE()
Definition Hit.hh:85
G4int GetZindex()
Definition Hit.hh:92
G4int GetYindex()
Definition Hit.hh:91
VRadiobiologicalQuantity * GetQuantity(G4String)
Definition Manager.cc:113
static Manager * GetInstance()
Definition Manager.cc:63
Accumulable of RBE-related data (that must be thread-local).
std::valarray< G4double > array_type
void Merge(const G4VAccumulable &rhs) override
void Accumulate(G4double E, G4double energyDeposit, G4double dX, G4int Z, G4int i, G4int j, G4int k)
std::tuple< G4double, G4double > GetHitAlphaAndBeta(G4double E, G4int Z)
Definition RBE.cc:287
static VoxelizedSensitiveDetector * GetInstance()
Static method to retrieve a pointer to the only object existing in the simulation.
G4int GetThisVoxelNumber(G4int x, G4int j, G4int k) const
Method to get the absolute voxel index given its indexes in the three dimensions.

Applications | User Support | Publications | Collaboration