Geant4 Cross Reference |
>> 1 // This code implementation is the intellectual property of >> 2 // the GEANT4 collaboration. 1 // 3 // 2 // ******************************************* << 4 // By copying, distributing or modifying the Program (or any work 3 // * License and Disclaimer << 5 // based on the Program) you indicate your acceptance of this statement, 4 // * << 6 // and all its terms. 5 // * The Geant4 software is copyright of th << 6 // * the Geant4 Collaboration. It is provided << 7 // * conditions of the Geant4 Software License << 8 // * LICENSE and available at http://cern.ch/ << 9 // * include a list of copyright holders. << 10 // * << 11 // * Neither the authors of this software syst << 12 // * institutes,nor the agencies providing fin << 13 // * work make any representation or warran << 14 // * regarding this software system or assum << 15 // * use. Please see the license in the file << 16 // * for the full disclaimer and the limitatio << 17 // * << 18 // * This code implementation is the result << 19 // * technical work of the GEANT4 collaboratio << 20 // * By using, copying, modifying or distri << 21 // * any work based on the software) you ag << 22 // * use in resulting scientific publicati << 23 // * acceptance of all terms of the Geant4 Sof << 24 // ******************************************* << 25 // << 26 // 7 // 27 // ------------------------------------------- 8 // ------------------------------------------------------------------- 28 // 9 // 29 // GEANT4 Class file 10 // GEANT4 Class file 30 // 11 // >> 12 // For information related to this code contact: >> 13 // Geant4 Collaboration 31 // 14 // 32 // File name: IonYangFluctuationModel 15 // File name: IonYangFluctuationModel 33 // 16 // 34 // Author: V.Ivanchenko (Vladimir.Ivanc 17 // Author: V.Ivanchenko (Vladimir.Ivanchenko@cern.ch) 35 // 18 // 36 // Creation date: 18 August 2000 19 // Creation date: 18 August 2000 37 // 20 // 38 // Modifications: 21 // Modifications: 39 // 18/08/2000 V.Ivanchenko First implementati 22 // 18/08/2000 V.Ivanchenko First implementation 40 // 23 // 41 // Class Description: 24 // Class Description: 42 // 25 // 43 // The aproximation of additional ion energy l 26 // The aproximation of additional ion energy loss fluctuations 44 // Q.Yang et al., NIM B61(1991)149-155. 27 // Q.Yang et al., NIM B61(1991)149-155. 45 // Further documentation available from http:/ 28 // Further documentation available from http://www.ge.infn.it/geant4/lowE 46 // and Physics Reference Manual << 47 29 48 // ------------------------------------------- 30 // ------------------------------------------------------------------- 49 // 31 // 50 32 51 #ifndef G4IonYangFluctuationModel_h 33 #ifndef G4IonYangFluctuationModel_h 52 #define G4IonYangFluctuationModel_h 1 34 #define G4IonYangFluctuationModel_h 1 53 35 54 #include "G4VLowEnergyModel.hh" 36 #include "G4VLowEnergyModel.hh" 55 37 56 class G4IonYangFluctuationModel : public G4VLo 38 class G4IonYangFluctuationModel : public G4VLowEnergyModel 57 { 39 { 58 public: << 59 explicit G4IonYangFluctuationModel(const G4S << 60 40 61 ~G4IonYangFluctuationModel(); << 41 public: >> 42 >> 43 G4IonYangFluctuationModel(const G4String& name) ; >> 44 >> 45 ~G4IonYangFluctuationModel() ; 62 46 63 G4double TheValue(const G4DynamicParticle* p 47 G4double TheValue(const G4DynamicParticle* particle, 64 const G4Material* material << 48 const G4Material* material); 65 49 66 G4double TheValue(const G4ParticleDefinition 50 G4double TheValue(const G4ParticleDefinition* aParticle, 67 const G4Material* material 51 const G4Material* material, 68 G4double kinet << 52 G4double kineticEnergy); 69 53 70 G4double HighEnergyLimit(const G4ParticleDef 54 G4double HighEnergyLimit(const G4ParticleDefinition* aParticle, 71 const G4Material* m << 55 const G4Material* material) const; 72 56 73 G4double LowEnergyLimit(const G4ParticleDefi 57 G4double LowEnergyLimit(const G4ParticleDefinition* aParticle, 74 const G4Material* ma << 58 const G4Material* material) const; 75 59 76 G4double HighEnergyLimit(const G4ParticleDef << 60 G4double HighEnergyLimit(const G4ParticleDefinition* aParticle) const; 77 const override ; << 78 61 79 G4double LowEnergyLimit(const G4ParticleDefi << 62 G4double LowEnergyLimit(const G4ParticleDefinition* aParticle) const; 80 const override; << 81 63 82 G4bool IsInCharge(const G4DynamicParticle* p 64 G4bool IsInCharge(const G4DynamicParticle* particle, 83 const G4Material* material) const over << 65 const G4Material* material) const; 84 66 85 G4bool IsInCharge(const G4ParticleDefinition 67 G4bool IsInCharge(const G4ParticleDefinition* aParticle, 86 const G4Material* material) const over << 68 const G4Material* material) const; >> 69 >> 70 protected: 87 71 88 private: 72 private: >> 73 89 G4double YangFluctuationModel(const G4Materi 74 G4double YangFluctuationModel(const G4Material* material, 90 G4double 75 G4double kineticEnergy, 91 G4double 76 G4double particleMass, 92 G4double 77 G4double charge) const; 93 78 94 }; 79 }; 95 80 96 #endif 81 #endif 97 82