Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4ContinuousGainOfEnergy.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 // $Id: G4ContinuousGainOfEnergy.cc 91870 2015-08-07 15:21:40Z gcosmo $
27 //
28 
30 
31 #include "G4PhysicalConstants.hh"
32 #include "G4SystemOfUnits.hh"
33 #include "G4Step.hh"
34 #include "G4ParticleDefinition.hh"
35 #include "G4VEmModel.hh"
36 #include "G4VEmFluctuationModel.hh"
37 #include "G4VParticleChange.hh"
38 #include "G4AdjointCSManager.hh"
39 #include "G4LossTableManager.hh"
40 #include "G4SystemOfUnits.hh"
41 #include "G4PhysicalConstants.hh"
42 
44 //
46  G4ProcessType type): G4VContinuousProcess(name, type)
47 {
48 
49 
50  linLossLimit=0.05;
51  lossFluctuationArePossible =true;
52  lossFluctuationFlag=true;
53  is_integral = false;
54 
55  //Will be properly set in SetDirectParticle()
56  IsIon=false;
57  massRatio =1.;
58  chargeSqRatio=1.;
59  preStepChargeSqRatio=1.;
60 
61  //Some initialization
62  currentCoupleIndex=9999999;
63  currentCutInRange=0.;
64  currentMaterialIndex=9999999;
65  currentTcut=0.;
66  preStepKinEnergy=0.;
67  preStepRange=0.;
68  preStepScaledKinEnergy=0.;
69 
70  currentCouple=0;
71 }
72 
74 //
76 {
77 
78 }
80 //
81 
83  const G4ParticleDefinition& )
84 {//theDirectEnergyLossProcess->PreparePhysicsTable(part);
85 
86 ;
87 }
88 
90 //
91 
93 {//theDirectEnergyLossProcess->BuildPhysicsTable(part);
94 ;
95 }
96 
98 //
100 {theDirectPartDef=p;
101  if (theDirectPartDef->GetParticleType()== "nucleus") {
102  IsIon=true;
103  massRatio = proton_mass_c2/theDirectPartDef->GetPDGMass();
104  G4double q=theDirectPartDef->GetPDGCharge();
105  chargeSqRatio=q*q;
106 
107 
108  }
109 
110 }
111 
113 //
114 //
116  const G4Step& step)
117 {
118 
119  //Caution in this method the step length should be the true step length
120  // A problem is that this is compute by the multiple scattering that does not know the energy at the end of the adjoint step. This energy is used during the
121  //Forward sim. Nothing we can really do against that at this time. This is inherent to the MS method
122  //
123 
124 
125 
127 
128  // Get the actual (true) Step length
129  //----------------------------------
130  G4double length = step.GetStepLength();
131  G4double degain = 0.0;
132 
133 
134 
135  // Compute this for weight change after continuous energy loss
136  //-------------------------------------------------------------
137  G4double DEDX_before = theDirectEnergyLossProcess->GetDEDX(preStepKinEnergy, currentCouple);
138 
139 
140 
141  // For the fluctuation we generate a new dynamic particle with energy =preEnergy+egain
142  // and then compute the fluctuation given in the direct case.
143  //-----------------------------------------------------------------------
144  G4DynamicParticle* dynParticle = new G4DynamicParticle();
145  *dynParticle = *(track.GetDynamicParticle());
146  dynParticle->SetDefinition(theDirectPartDef);
147  G4double Tkin = dynParticle->GetKineticEnergy();
148 
149 
150  size_t n=1;
151  if (is_integral ) n=10;
152  n=1;
153  G4double dlength= length/n;
154  for (size_t i=0;i<n;i++) {
155  if (Tkin != preStepKinEnergy && IsIon) {
156  chargeSqRatio = currentModel->GetChargeSquareRatio(theDirectPartDef,currentMaterial,Tkin);
157  theDirectEnergyLossProcess->SetDynamicMassCharge(massRatio,chargeSqRatio);
158 
159  }
160 
161  G4double r = theDirectEnergyLossProcess->GetRange(Tkin, currentCouple);
162  if( dlength <= linLossLimit * r ) {
163  degain = DEDX_before*dlength;
164  }
165  else {
166  G4double x = r + dlength;
167  //degain = theDirectEnergyLossProcess->GetKineticEnergy(x,currentCouple) - theDirectEnergyLossProcess->GetKineticEnergy(r,currentCouple);
168  G4double E = theDirectEnergyLossProcess->GetKineticEnergy(x,currentCouple);
169  if (IsIon){
170  chargeSqRatio = currentModel->GetChargeSquareRatio(theDirectPartDef,currentMaterial,E);
171  theDirectEnergyLossProcess->SetDynamicMassCharge(massRatio,chargeSqRatio);
172  G4double x1= theDirectEnergyLossProcess->GetRange(E, currentCouple);
173 
174  // Loop checking, 07-Aug-2015, Vladimir Ivanchenko
175  G4int ii=0;
176  const G4int iimax = 100;
177  while (std::abs(x-x1)>0.01*x) {
178  E = theDirectEnergyLossProcess->GetKineticEnergy(x,currentCouple);
179  chargeSqRatio = currentModel->GetChargeSquareRatio(theDirectPartDef,currentMaterial,E);
180  theDirectEnergyLossProcess->SetDynamicMassCharge(massRatio,chargeSqRatio);
181  x1= theDirectEnergyLossProcess->GetRange(E, currentCouple);
182  ++ii;
183  if(ii >= iimax) { break; }
184  }
185  }
186 
187  degain=E-Tkin;
188 
189 
190 
191  }
192  //G4cout<<degain<<G4endl;
193  G4double tmax = currentModel->MaxSecondaryKinEnergy(dynParticle);
194  tmax = std::min(tmax,currentTcut);
195 
196 
197  dynParticle->SetKineticEnergy(Tkin+degain);
198 
199  // Corrections, which cannot be tabulated for ions
200  //----------------------------------------
201  G4double esecdep=0;//not used in most models
202  currentModel->CorrectionsAlongStep(currentCouple, dynParticle, degain,esecdep, dlength);
203 
204  // Sample fluctuations
205  //-------------------
206 
207 
208  G4double deltaE =0.;
209  if (lossFluctuationFlag ) {
210  deltaE = currentModel->GetModelOfFluctuations()->
211  SampleFluctuations(currentCouple,dynParticle,tmax,dlength,degain)-degain;
212  }
213 
214  G4double egain=degain+deltaE;
215  if (egain <=0) egain=degain;
216  Tkin+=egain;
217  dynParticle->SetKineticEnergy(Tkin);
218  }
219 
220 
221 
222 
223 
224  delete dynParticle;
225 
226  if (IsIon){
227  chargeSqRatio = currentModel->GetChargeSquareRatio(theDirectPartDef,currentMaterial,Tkin);
228  theDirectEnergyLossProcess->SetDynamicMassCharge(massRatio,chargeSqRatio);
229 
230  }
231 
232  G4double DEDX_after = theDirectEnergyLossProcess->GetDEDX(Tkin, currentCouple);
233 
234 
235  G4double weight_correction=DEDX_after/DEDX_before;
236 
237 
239 
240 
241  //Caution!!!
242  // It is important to select the weight of the post_step_point
243  // as the current weight and not the weight of the track, as t
244  // the weight of the track is changed after having applied all
245  // the along_step_do_it.
246 
247  // G4double new_weight=weight_correction*track.GetWeight(); //old
248  G4double new_weight=weight_correction*step.GetPostStepPoint()->GetWeight();
251 
252 
253  return &aParticleChange;
254 
255 }
257 //
259 {
260  if(val && !lossFluctuationArePossible) return;
261  lossFluctuationFlag = val;
262 }
264 //
265 
266 
267 
269  G4double , G4double , G4double& )
270 {
271  G4double x = DBL_MAX;
272  x=.1*mm;
273 
274 
275  DefineMaterial(track.GetMaterialCutsCouple());
276 
277  preStepKinEnergy = track.GetKineticEnergy();
278  preStepScaledKinEnergy = track.GetKineticEnergy()*massRatio;
279  currentModel = theDirectEnergyLossProcess->SelectModelForMaterial(preStepScaledKinEnergy,currentCoupleIndex);
280  G4double emax_model=currentModel->HighEnergyLimit();
281  if (IsIon) {
282  chargeSqRatio = currentModel->GetChargeSquareRatio(theDirectPartDef,currentMaterial,preStepKinEnergy);
283  preStepChargeSqRatio = chargeSqRatio;
284  theDirectEnergyLossProcess->SetDynamicMassCharge(massRatio,preStepChargeSqRatio);
285  }
286 
287 
288  G4double maxE =1.1*preStepKinEnergy;
289  /*if (preStepKinEnergy< 0.05*MeV) maxE =2.*preStepKinEnergy;
290  else if (preStepKinEnergy< 0.1*MeV) maxE =1.5*preStepKinEnergy;
291  else if (preStepKinEnergy< 0.5*MeV) maxE =1.25*preStepKinEnergy;*/
292 
293  if (preStepKinEnergy < currentTcut) maxE = std::min(currentTcut,maxE);
294 
295  maxE=std::min(emax_model*1.001,maxE);
296 
297  preStepRange = theDirectEnergyLossProcess->GetRange(preStepKinEnergy, currentCouple);
298 
299  if (IsIon) {
300  G4double chargeSqRatioAtEmax = currentModel->GetChargeSquareRatio(theDirectPartDef,currentMaterial,maxE);
301  theDirectEnergyLossProcess->SetDynamicMassCharge(massRatio,chargeSqRatioAtEmax);
302  }
303 
304  G4double r1 = theDirectEnergyLossProcess->GetRange(maxE, currentCouple);
305 
306  if (IsIon) theDirectEnergyLossProcess->SetDynamicMassCharge(massRatio,preStepChargeSqRatio);
307 
308 
309 
310  x=r1-preStepRange;
311  x=std::max(r1-preStepRange,0.001*mm);
312 
313  return x;
314 
315 
316 }
317 #include "G4EmCorrections.hh"
319 //
320 
321 void G4ContinuousGainOfEnergy::SetDynamicMassCharge(const G4Track& ,G4double energy)
322 {
323 
324  G4double ChargeSqRatio= G4LossTableManager::Instance()->EmCorrections()->EffectiveChargeSquareRatio(theDirectPartDef,currentMaterial,energy);
325  if (theDirectEnergyLossProcess) theDirectEnergyLossProcess->SetDynamicMassCharge(massRatio,ChargeSqRatio);
326 }
G4double GetKineticEnergy(G4double &range, const G4MaterialCutsCouple *)
G4double MaxSecondaryKinEnergy(const G4DynamicParticle *dynParticle)
Definition: G4VEmModel.hh:481
const XML_Char * name
Definition: expat.h:151
static G4LossTableManager * Instance()
G4double GetWeight() const
G4ContinuousGainOfEnergy(const G4String &name="EnergyGain", G4ProcessType type=fElectromagnetic)
static constexpr double mm
Definition: G4SIunits.hh:115
virtual void CorrectionsAlongStep(const G4MaterialCutsCouple *, const G4DynamicParticle *, G4double &eloss, G4double &niel, G4double length)
Definition: G4VEmModel.cc:370
void SetDynamicMassCharge(G4double massratio, G4double charge2ratio)
static constexpr double proton_mass_c2
G4double GetKineticEnergy() const
G4double GetStepLength() const
G4double HighEnergyLimit() const
Definition: G4VEmModel.hh:633
const G4DynamicParticle * GetDynamicParticle() const
G4double GetDEDX(G4double &kineticEnergy, const G4MaterialCutsCouple *)
G4double EffectiveChargeSquareRatio(const G4ParticleDefinition *, const G4Material *, G4double kineticEnergy)
const char * p
Definition: xmltok.h:285
void ProposeParentWeight(G4double finalWeight)
const G4MaterialCutsCouple * GetMaterialCutsCouple() const
void BuildPhysicsTable(const G4ParticleDefinition &)
G4VParticleChange * AlongStepDoIt(const G4Track &, const G4Step &)
G4VEmFluctuationModel * GetModelOfFluctuations()
Definition: G4VEmModel.hh:609
int G4int
Definition: G4Types.hh:78
void SetParentWeightByProcess(G4bool)
G4double GetKineticEnergy() const
bool G4bool
Definition: G4Types.hh:79
G4EmCorrections * EmCorrections()
void SetDirectParticle(G4ParticleDefinition *p)
const G4String & GetParticleType() const
Definition: G4Step.hh:76
void SetKineticEnergy(G4double aEnergy)
virtual G4double GetChargeSquareRatio(const G4ParticleDefinition *, const G4Material *, G4double kineticEnergy)
Definition: G4VEmModel.cc:353
virtual G4double GetContinuousStepLimit(const G4Track &track, G4double previousStepSize, G4double currentMinimumStep, G4double &currentSafety)
virtual void Initialize(const G4Track &)
G4double GetPDGMass() const
T max(const T t1, const T t2)
brief Return the largest of the two arguments
G4double energy(const ThreeVector &p, const G4double m)
G4StepPoint * GetPostStepPoint() const
void PreparePhysicsTable(const G4ParticleDefinition &)
void ProposeEnergy(G4double finalEnergy)
G4ParticleChange aParticleChange
Definition: G4VProcess.hh:289
T min(const T t1, const T t2)
brief Return the smallest of the two arguments
double G4double
Definition: G4Types.hh:76
void SetDefinition(const G4ParticleDefinition *aParticleDefinition)
G4double GetPDGCharge() const
#define DBL_MAX
Definition: templates.hh:83
G4VEmModel * SelectModelForMaterial(G4double kinEnergy, size_t &idx) const
G4double GetRange(G4double &kineticEnergy, const G4MaterialCutsCouple *)
G4ProcessType