Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/processes/electromagnetic/standard/include/G4PAIModel.hh

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

  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 // -------------------------------------------------------------------
 28 //
 29 // GEANT4 Class header file
 30 //
 31 //
 32 // File name:     G4PAIModel
 33 //
 34 // Author:        V. Grichine based on Vladimir Ivanchenko  code
 35 //
 36 // Creation date: 05.10.2003
 37 //
 38 // Modifications:
 39 // 08-04-05 Major optimisation of internal interfaces (V.Ivantchenko)
 40 // 26-09-07 Fixed tmax computation (V.Ivantchenko)
 41 // 19.08.13 V.Ivanchenko extract data handling to G4PAIModelData class 
 42 //          added sharing of internal data between threads (MT migration)
 43 //
 44 //
 45 // Class Description:
 46 //
 47 // Implementation of PAI model of energy loss and
 48 // delta-electron production by heavy charged particles
 49 
 50 // -------------------------------------------------------------------
 51 //
 52 
 53 #ifndef G4PAIModel_h
 54 #define G4PAIModel_h 1
 55 
 56 #include <CLHEP/Units/PhysicalConstants.h>
 57 
 58 #include "G4VEmModel.hh"
 59 #include "G4VEmFluctuationModel.hh"
 60 #include "globals.hh"
 61 #include <vector>
 62 
 63 class G4Region;
 64 class G4MaterialCutsCouple;
 65 class G4ParticleChangeForLoss;
 66 class G4PAIModelData;
 67 
 68 class G4PAIModel final : public G4VEmModel, public G4VEmFluctuationModel
 69 {
 70 
 71 public:
 72 
 73   explicit G4PAIModel(const G4ParticleDefinition* p = nullptr, 
 74           const G4String& nam = "PAI");
 75 
 76   ~G4PAIModel() final;
 77 
 78   void Initialise(const G4ParticleDefinition*, const G4DataVector&) final;
 79 
 80   void InitialiseLocal(const G4ParticleDefinition*, 
 81                        G4VEmModel* masterModel) final;
 82 
 83   G4double MinEnergyCut(const G4ParticleDefinition*,
 84                         const G4MaterialCutsCouple* couple) final;
 85 
 86   G4double ComputeDEDXPerVolume(const G4Material*,
 87               const G4ParticleDefinition*,
 88               G4double kineticEnergy,
 89               G4double cutEnergy) final;
 90 
 91   G4double CrossSectionPerVolume(const G4Material*,
 92                const G4ParticleDefinition*,
 93          G4double kineticEnergy,
 94          G4double cutEnergy,
 95          G4double maxEnergy) final;
 96 
 97   void SampleSecondaries(std::vector<G4DynamicParticle*>*,
 98          const G4MaterialCutsCouple*,
 99          const G4DynamicParticle*,
100          G4double tmin,
101          G4double maxEnergy) final;
102 
103   G4double SampleFluctuations(const G4MaterialCutsCouple*,
104             const G4DynamicParticle*,
105             const G4double, const G4double,
106                               const G4double, const G4double) final;
107 
108   G4double Dispersion(const G4Material*, const G4DynamicParticle*,
109           const G4double, const G4double, 
110                       const G4double) final;
111 
112   void DefineForRegion(const G4Region* r) final;
113 
114   inline G4PAIModelData* GetPAIModelData();
115 
116   inline const std::vector<const G4MaterialCutsCouple*>& GetVectorOfCouples();
117 
118   inline G4double ComputeMaxEnergy(G4double scaledEnergy);
119 
120   inline void SetVerboseLevel(G4int verbose);
121 
122   // hide assignment operator 
123   G4PAIModel & operator=(const  G4PAIModel &right) = delete;
124   G4PAIModel(const  G4PAIModel&) = delete;
125 
126 protected:
127 
128   G4double MaxSecondaryEnergy(const G4ParticleDefinition*, 
129                               G4double kinEnergy) final;
130 
131 private:
132 
133   inline G4int FindCoupleIndex(const G4MaterialCutsCouple*);
134 
135   inline void SetParticle(const G4ParticleDefinition* p);
136 
137   G4int                       fVerbose; 
138 
139   G4PAIModelData*             fModelData; 
140 
141   std::vector<const G4MaterialCutsCouple*> fMaterialCutsCoupleVector;
142   std::vector<const G4Region*>      fPAIRegionVector;
143 
144   const G4ParticleDefinition* fParticle;
145   const G4ParticleDefinition* fElectron;
146   const G4ParticleDefinition* fPositron;
147   G4ParticleChangeForLoss*    fParticleChange;
148 
149   G4double fMass;
150   G4double fRatio;
151   G4double fChargeSquare;
152   G4double fLowestTcut;
153 };
154 
155 inline G4PAIModelData* G4PAIModel::GetPAIModelData()
156 {
157   return fModelData;
158 }
159 
160 inline const std::vector<const G4MaterialCutsCouple*>& 
161 G4PAIModel::GetVectorOfCouples()
162 {
163   return fMaterialCutsCoupleVector;
164 }
165 
166 inline G4double G4PAIModel::ComputeMaxEnergy(G4double scaledEnergy)
167 {
168   return MaxSecondaryEnergy(fParticle, scaledEnergy/fRatio);
169 }
170 
171 inline void G4PAIModel::SetVerboseLevel(G4int verbose) 
172 { 
173   fVerbose=verbose; 
174 }
175 
176 inline G4int G4PAIModel::FindCoupleIndex(const G4MaterialCutsCouple* couple)
177 {
178   G4int idx = -1;
179   G4int jMatMax = (G4int)fMaterialCutsCoupleVector.size();
180   for(G4int jMat = 0;jMat < jMatMax; ++jMat) { 
181     if(couple == fMaterialCutsCoupleVector[jMat]) {
182       idx = jMat; 
183       break; 
184     }
185   }
186   return idx;
187 }
188 
189 inline void G4PAIModel::SetParticle(const G4ParticleDefinition* p)
190 {
191   if(fParticle != p) {
192     fParticle = p;
193     fMass = fParticle->GetPDGMass();
194     fRatio = CLHEP::proton_mass_c2/fMass;
195     G4double q = fParticle->GetPDGCharge()/CLHEP::eplus;
196     fChargeSquare = q*q;
197   }
198 }
199 
200 #endif
201