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: IonChuFluctuationModel 15 // File name: IonChuFluctuationModel 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 // W.K.Chu, In: Ion Beam Handbook for Material 27 // W.K.Chu, In: Ion Beam Handbook for Material Analysis. 45 // eds. J.W. Mayer and E. Rimini (Academic Pre 28 // eds. J.W. Mayer and E. Rimini (Academic Press, New York, 1977). 46 // Q.Yang et al., NIM B61(1991)149-155. 29 // Q.Yang et al., NIM B61(1991)149-155. 47 // Further documentation available from http:/ 30 // Further documentation available from http://www.ge.infn.it/geant4/lowE 48 // and Physics Reference Manual << 31 49 32 50 // ------------------------------------------- 33 // ------------------------------------------------------------------- 51 34 52 35 53 #ifndef G4IonChuFluctuationModel_h 36 #ifndef G4IonChuFluctuationModel_h 54 #define G4IonChuFluctuationModel_h 1 37 #define G4IonChuFluctuationModel_h 1 55 38 56 #include "G4VLowEnergyModel.hh" 39 #include "G4VLowEnergyModel.hh" 57 40 58 class G4IonChuFluctuationModel : public G4VLow 41 class G4IonChuFluctuationModel : public G4VLowEnergyModel 59 { 42 { 60 public: // With description << 61 43 62 explicit G4IonChuFluctuationModel(const G4St << 44 public: 63 ~G4IonChuFluctuationModel(); << 45 >> 46 G4IonChuFluctuationModel(const G4String& name) ; >> 47 >> 48 ~G4IonChuFluctuationModel() ; 64 49 65 G4double TheValue(const G4DynamicParticle* p 50 G4double TheValue(const G4DynamicParticle* particle, 66 const G4Material* material << 51 const G4Material* material); 67 52 68 G4double TheValue(const G4ParticleDefinition 53 G4double TheValue(const G4ParticleDefinition* aParticle, 69 const G4Material* material 54 const G4Material* material, 70 G4double kinet << 55 G4double kineticEnergy); 71 56 72 G4double HighEnergyLimit(const G4ParticleDef 57 G4double HighEnergyLimit(const G4ParticleDefinition* aParticle, 73 const G4Material* m << 58 const G4Material* material) const; 74 59 75 G4double LowEnergyLimit(const G4ParticleDefi 60 G4double LowEnergyLimit(const G4ParticleDefinition* aParticle, 76 const G4Material* ma << 61 const G4Material* material) const; 77 62 78 G4double HighEnergyLimit(const G4ParticleDef << 63 G4double HighEnergyLimit(const G4ParticleDefinition* aParticle) const; 79 64 80 G4double LowEnergyLimit(const G4ParticleDefi << 65 G4double LowEnergyLimit(const G4ParticleDefinition* aParticle) const; 81 66 82 G4bool IsInCharge(const G4DynamicParticle* p 67 G4bool IsInCharge(const G4DynamicParticle* particle, 83 const G4Material* material) const over << 68 const G4Material* material) const; 84 69 85 G4bool IsInCharge(const G4ParticleDefinition 70 G4bool IsInCharge(const G4ParticleDefinition* aParticle, 86 const G4Material* material) const over << 71 const G4Material* material) const; >> 72 >> 73 protected: 87 74 88 private: 75 private: >> 76 89 G4double ChuFluctuationModel(const G4Materia 77 G4double ChuFluctuationModel(const G4Material* material, 90 G4double 78 G4double kineticEnergy, 91 G4double 79 G4double particleMass) const; 92 80 93 }; 81 }; 94 82 95 #endif 83 #endif 96 84