Geant4  10.03.p01
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4ContinuousGainOfEnergy.hh
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.hh 66892 2013-01-17 10:57:59Z gunter $
27 //
29 // Class: G4ContinuousGainOfEnergy
30 // Author: L. Desorgher
31 // Organisation: SpaceIT GmbH
32 // Contract: ESA contract 21435/08/NL/AT
33 // Customer: ESA/ESTEC
35 //
36 // CHANGE HISTORY
37 // --------------
38 // ChangeHistory:
39 // -10 May 2007 creation by L. Desorgher
40 // -February-March 2009 Update for protons by L.Desorgher
41 // -July August 2009 Update for ion by L.Desorgher
42 //
43 //-------------------------------------------------------------
44 // Documentation:
45 // Continuous process acting on adjoint particles to compute the continuous gain of energy of charged particles when they are tracked back!
46 //
47 //
48 #ifndef G4ContinuousGainOfEnergy_h
49 #define G4ContinuousGainOfEnergy_h 1
50 
51 #include "G4VContinuousProcess.hh"
52 #include "globals.hh"
53 #include "G4Material.hh"
54 #include "G4MaterialCutsCouple.hh"
55 #include "G4Track.hh"
56 #include "G4UnitsTable.hh"
57 #include "G4ParticleChange.hh"
58 #include "G4VEnergyLossProcess.hh"
59 #include "G4ProductionCutsTable.hh"
60 
61 
62 class G4Step;
64 class G4VEmModel;
66 
67 
68 
70 {
71 public:
72 
73  G4ContinuousGainOfEnergy(const G4String& name = "EnergyGain",
75 
76  virtual ~G4ContinuousGainOfEnergy();
77 
78 
79 protected:
80 
81 
82  //------------------------------------------------------------------------
83  // Methods with standard implementation; may be overwritten if needed
84  //------------------------------------------------------------------------
85 protected:
86 
87 
88  virtual G4double GetContinuousStepLimit(const G4Track& track,
89  G4double previousStepSize,
90  G4double currentMinimumStep,
91  G4double& currentSafety);
92 
93 
94  //------------------------------------------------------------------------
95  // Generic methods common to all processes
96  //------------------------------------------------------------------------
97 public:
98 
99 
100 
102 
104 
105 
107 
108 
109  void SetLossFluctuations(G4bool val);
110  inline void SetIsIntegral(G4bool val){is_integral= val;}
111 
112  inline void SetDirectEnergyLossProcess(G4VEnergyLossProcess* aProcess){theDirectEnergyLossProcess=aProcess;};
113 
115 
116 protected:
117 
118 
119 
120 
121 private:
122 
123  void DefineMaterial(const G4MaterialCutsCouple* couple);
124  void SetDynamicMassCharge(const G4Track& track, G4double energy);
125 
126 
127  // hide assignment operator
128 
130  G4ContinuousGainOfEnergy & operator=(const G4ContinuousGainOfEnergy &right);
131 
132 
133 private:
134 
135  const G4Material* currentMaterial;
136  const G4MaterialCutsCouple* currentCouple;
137  size_t currentMaterialIndex;
138  size_t currentCoupleIndex;
139  G4double currentTcut;
140  G4double currentCutInRange;
141  G4double preStepKinEnergy;
142 
143 
144 
145  G4double linLossLimit;
146  G4bool lossFluctuationFlag;
147  G4bool lossFluctuationArePossible;
148 
149  G4VEnergyLossProcess* theDirectEnergyLossProcess;
150  G4ParticleDefinition* theDirectPartDef;
151 
152 
153  G4bool is_integral;
154 
155  //adding for Ions
156  //----------------
157  G4bool IsIon;
158  G4double massRatio;
159  G4double chargeSqRatio;
160  G4VEmModel* currentModel;
161  G4double preStepChargeSqRatio;
162  G4double preStepScaledKinEnergy;
163  G4double preStepRange;
164 
165 
166 
167 
168 
169 };
170 
172 //
173 inline void G4ContinuousGainOfEnergy::DefineMaterial(
174  const G4MaterialCutsCouple* couple)
175 {
176  if(couple != currentCouple) {
177  currentCouple = couple;
178  currentMaterial = couple->GetMaterial();
179  currentCoupleIndex = couple->GetIndex();
180  currentMaterialIndex = currentMaterial->GetIndex();
181 
182  size_t idx=1;
183  const std::vector<G4double>* aVec = G4ProductionCutsTable::GetProductionCutsTable()->GetEnergyCutsVector(idx);
184  currentTcut=(*aVec)[currentCoupleIndex];
185  currentCutInRange = couple->GetProductionCuts()->GetProductionCut(theDirectPartDef->GetParticleName());
186  //G4cout<<"Define Material"<<G4endl;
187  //if(!meanFreePath) ResetNumberOfInteractionLengthLeft();
188  }
189 }
190 
191 #endif
const XML_Char * name
Definition: expat.h:151
const std::vector< G4double > * GetEnergyCutsVector(size_t pcIdx) const
G4ContinuousGainOfEnergy(const G4String &name="EnergyGain", G4ProcessType type=fElectromagnetic)
size_t GetIndex() const
Definition: G4Material.hh:262
G4double GetProductionCut(G4int index) const
const char * p
Definition: xmltok.h:285
void BuildPhysicsTable(const G4ParticleDefinition &)
G4VParticleChange * AlongStepDoIt(const G4Track &, const G4Step &)
const G4String & GetParticleName() const
void SetDirectEnergyLossProcess(G4VEnergyLossProcess *aProcess)
bool G4bool
Definition: G4Types.hh:79
void SetDirectParticle(G4ParticleDefinition *p)
Definition: G4Step.hh:76
virtual G4double GetContinuousStepLimit(const G4Track &track, G4double previousStepSize, G4double currentMinimumStep, G4double &currentSafety)
static G4ProductionCutsTable * GetProductionCutsTable()
G4double energy(const ThreeVector &p, const G4double m)
void PreparePhysicsTable(const G4ParticleDefinition &)
double G4double
Definition: G4Types.hh:76
G4ProductionCuts * GetProductionCuts() const
const G4Material * GetMaterial() const
G4ProcessType