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 // 7 // >> 8 // $Id: G4Proton.hh,v 1.6 2001/03/12 05:45:41 kurasige Exp $ >> 9 // GEANT4 tag $Name: geant4-03-01 $ >> 10 // >> 11 // 26 // ------------------------------------------- 12 // ------------------------------------------------------------ 27 // GEANT 4 class header file 13 // GEANT 4 class header file 28 // 14 // >> 15 // For information related to this code contact: >> 16 // CERN, CN Division, ASD group 29 // History: first implementation, based o 17 // History: first implementation, based on object model of 30 // 4-th April 1996, G.Cosmo 18 // 4-th April 1996, G.Cosmo 31 // ******************************************* 19 // **************************************************************** 32 // New implementation as a utility class M.A << 20 // Added particle definitions, H.Kurashige, 19 April 1996 >> 21 // Revised, G.Cosmo, 6 June 1996 >> 22 // Added not static GetEnergyCuts() and GetLengthCuts(), G.Cosmo, 11 July 1996 33 // ------------------------------------------- 23 // ---------------------------------------------------------------- 34 24 >> 25 // Each class inheriting from G4VBaryon >> 26 // corresponds to a particle type; one and only one >> 27 // instance for each class is guaranteed. >> 28 35 #ifndef G4Proton_h 29 #ifndef G4Proton_h 36 #define G4Proton_h 1 30 #define G4Proton_h 1 37 31 38 #include "G4Ions.hh" << 32 #include "globals.hh" >> 33 #include "G4ios.hh" >> 34 #include "G4VBaryon.hh" >> 35 >> 36 // ###################################################################### >> 37 // ### PROTON ### >> 38 // ###################################################################### 39 39 40 class G4Proton : public G4Ions << 40 class G4Proton : public G4VBaryon 41 { 41 { 42 public: << 42 private: 43 static G4Proton* Definition(); << 43 static G4Proton theProton; 44 static G4Proton* ProtonDefinition(); << 44 static G4double theProtonLengthCut; 45 static G4Proton* Proton(); << 45 static G4double* theProtonKineticEnergyCuts; 46 << 46 47 private: << 47 private: 48 G4Proton() {} << 48 G4Proton( 49 ~G4Proton() override = default; << 49 const G4String& aName, G4double mass, >> 50 G4double width, G4double charge, >> 51 G4int iSpin, G4int iParity, >> 52 G4int iConjugation, G4int iIsospin, >> 53 G4int iIsospin3, G4int gParity, >> 54 const G4String& pType, G4int lepton, >> 55 G4int baryon, G4int encoding, >> 56 G4bool stable, G4double lifetime, >> 57 G4DecayTable *decaytable >> 58 ); >> 59 >> 60 public: >> 61 virtual ~G4Proton() {} >> 62 >> 63 static G4Proton* ProtonDefinition(); >> 64 static G4Proton* Proton(); >> 65 static G4double GetCuts() {return theProtonLengthCut;} >> 66 static G4double* GetCutsInEnergy() {return theProtonKineticEnergyCuts;}; >> 67 >> 68 virtual void SetCuts(G4double aCut); >> 69 virtual void RestoreCuts(G4double cutInLength, >> 70 const G4double* cutInEnergy ); >> 71 >> 72 public: //With Description >> 73 G4int GetAtomicNumber() const; >> 74 G4int GetAtomicMass() const; >> 75 >> 76 G4double GetExcitationEnergy() const {return 0.;} >> 77 void SetExcitationEnergy(G4double ){} >> 78 // These two methods are dummy because all particles derived from >> 79 // G4Proton is "groud state" nuclei 50 80 51 static G4Proton* theInstance; << 52 }; 81 }; 53 82 >> 83 inline void G4Proton::SetCuts(G4double aCut) >> 84 { >> 85 CalcEnergyCuts(aCut); >> 86 theProtonLengthCut = theCutInMaxInteractionLength; >> 87 theProtonKineticEnergyCuts = theKineticEnergyCuts; >> 88 } >> 89 >> 90 inline void G4Proton::RestoreCuts(G4double cutInLength, >> 91 const G4double* cutInEnergy ) >> 92 { >> 93 G4ParticleWithCuts::RestoreCuts(cutInLength, cutInEnergy); >> 94 theProtonLengthCut = theCutInMaxInteractionLength; >> 95 theProtonKineticEnergyCuts = theKineticEnergyCuts; >> 96 } >> 97 >> 98 inline G4Proton* G4Proton::Proton() >> 99 { return &theProton; } >> 100 >> 101 inline >> 102 G4int G4Proton::GetAtomicNumber() const >> 103 { >> 104 return 1; >> 105 } >> 106 >> 107 inline >> 108 G4int G4Proton::GetAtomicMass() const >> 109 { >> 110 return 1; >> 111 } 54 #endif 112 #endif 55 113