Geant4 10.7.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4AdjointAlongStepWeightCorrection.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//
28#include "G4Step.hh"
30#include "G4VParticleChange.hh"
31#include "G4AdjointCSManager.hh"
32
33///////////////////////////////////////////////////////
34//
35
37 G4ProcessType type): G4VContinuousProcess(name, type)
39 currentMaterialIndex=0;
40 preStepKinEnergy=1.;
41 currentCouple=0;
42}
43
44///////////////////////////////////////////////////////
45//
46
48{delete fParticleChange;
49}
50///////////////////////////////////////////////////////
51//
54{
55;
56}
57///////////////////////////////////////////////////////
58//
59
61{;
62}
63///////////////////////////////////////////////////////
64//
66 const G4Step& step)
67{
68
70
71 // Get the actual (true) Step length
72 //----------------------------------
73 G4double length = step.GetStepLength();
74
75
79 preStepKinEnergy,Tkin, currentCouple,length);
80
81
82
83
84 //Caution!!!
85 // It is important to select the weight of the post_step_point
86 // as the current weight and not the weight of the track, as t
87 // the weight of the track is changed after having applied all
88 // the along_step_do_it.
89
90 // G4double new_weight=weight_correction*track.GetWeight(); //old
91 G4double new_weight=weight_correction*step.GetPostStepPoint()->GetWeight();
92
93
94
95 //if (weight_correction >2.) new_weight=1.e-300;
96
97
98 //The following test check for zero weight.
99 //This happens after weight correction of gamma for photo electric effect.
100 //When the new weight is 0 it will be later on consider as nan by G4.
101 //Therefore we do put a lower limit of 1.e-300. for new_weight
102 //Correction by L.Desorgher on 15 July 2009
103 if (new_weight==0 || (new_weight<=0 && new_weight>0)){
104 //G4cout<<new_weight<<'\t'<<weight_correction<<'\t'<<track.GetWeight()<<G4endl;
105 new_weight=1.e-300;
106 }
107
108 //G4cout<<new_weight<<'\t'<<weight_correction<<'\t'<<track.GetWeight()<<G4endl;
112
113
114 return fParticleChange;
115
116}
117///////////////////////////////////////////////////////
118//
121{
122 G4double x = DBL_MAX;
123 DefineMaterial(track.GetMaterialCutsCouple());
124 preStepKinEnergy = track.GetKineticEnergy();
125 return x;
126}
G4ProcessType
double G4double
Definition: G4Types.hh:83
void BuildPhysicsTable(const G4ParticleDefinition &)
void PreparePhysicsTable(const G4ParticleDefinition &)
virtual G4double GetContinuousStepLimit(const G4Track &track, G4double previousStepSize, G4double currentMinimumStep, G4double &currentSafety)
G4AdjointAlongStepWeightCorrection(const G4String &name="ContinuousWeightCorrection", G4ProcessType type=fElectromagnetic)
G4VParticleChange * AlongStepDoIt(const G4Track &, const G4Step &)
G4double GetContinuousWeightCorrection(G4ParticleDefinition *aPartDef, G4double PreStepEkin, G4double AfterStepEkin, const G4MaterialCutsCouple *aCouple, G4double step_length)
static G4AdjointCSManager * GetAdjointCSManager()
G4ParticleDefinition * GetDefinition() const
virtual void Initialize(const G4Track &)
G4double GetKineticEnergy() const
G4double GetWeight() const
Definition: G4Step.hh:62
G4double GetStepLength() const
G4StepPoint * GetPostStepPoint() const
const G4DynamicParticle * GetDynamicParticle() const
G4double GetKineticEnergy() const
const G4MaterialCutsCouple * GetMaterialCutsCouple() const
void SetSecondaryWeightByProcess(G4bool)
void SetParentWeightByProcess(G4bool)
void ProposeParentWeight(G4double finalWeight)
#define DBL_MAX
Definition: templates.hh:62