Geant4 Cross Reference |
1 // 1 // 2 // ******************************************* 2 // ******************************************************************** 3 // * License and Disclaimer 3 // * License and Disclaimer * 4 // * 4 // * * 5 // * The Geant4 software is copyright of th 5 // * The Geant4 software is copyright of the Copyright Holders of * 6 // * the Geant4 Collaboration. It is provided 6 // * the Geant4 Collaboration. It is provided under the terms and * 7 // * conditions of the Geant4 Software License 7 // * conditions of the Geant4 Software License, included in the file * 8 // * LICENSE and available at http://cern.ch/ 8 // * LICENSE and available at http://cern.ch/geant4/license . These * 9 // * include a list of copyright holders. 9 // * include a list of copyright holders. * 10 // * 10 // * * 11 // * Neither the authors of this software syst 11 // * Neither the authors of this software system, nor their employing * 12 // * institutes,nor the agencies providing fin 12 // * institutes,nor the agencies providing financial support for this * 13 // * work make any representation or warran 13 // * work make any representation or warranty, express or implied, * 14 // * regarding this software system or assum 14 // * regarding this software system or assume any liability for its * 15 // * use. Please see the license in the file 15 // * use. Please see the license in the file LICENSE and URL above * 16 // * for the full disclaimer and the limitatio 16 // * for the full disclaimer and the limitation of liability. * 17 // * 17 // * * 18 // * This code implementation is the result 18 // * This code implementation is the result of the scientific and * 19 // * technical work of the GEANT4 collaboratio 19 // * technical work of the GEANT4 collaboration. * 20 // * By using, copying, modifying or distri 20 // * By using, copying, modifying or distributing the software (or * 21 // * any work based on the software) you ag 21 // * any work based on the software) you agree to acknowledge its * 22 // * use in resulting scientific publicati 22 // * use in resulting scientific publications, and indicate your * 23 // * acceptance of all terms of the Geant4 Sof 23 // * acceptance of all terms of the Geant4 Software license. * 24 // ******************************************* 24 // ******************************************************************** 25 // 25 // 26 // G4ParticleDefinition inline methods impleme << 27 // 26 // 28 // Authors: G.Cosmo, 2 December 1995 - Design, << 27 // $Id: G4ParticleDefinition.icc 102308 2017-01-20 14:54:21Z gcosmo $ 29 // M.Asai, 29 January 1996 - First im << 28 // 30 // ------------------------------------------- << 31 29 32 inline G4int G4ParticleDefinition::GetInstance << 30 inline 33 { << 31 G4int G4ParticleDefinition::GetInstanceID() const 34 return g4particleDefinitionInstanceID; << 32 { >> 33 return g4particleDefinitionInstanceID; 35 } 34 } 36 35 37 inline G4bool G4ParticleDefinition::GetPDGStab << 36 inline >> 37 G4bool G4ParticleDefinition::GetPDGStable() const 38 { 38 { 39 if (IsGeneralIon()) { << 39 if(IsGeneralIon()) 40 return (GetIonLifeTime() < 0.); << 40 { return (GetIonLifeTime()<0.); } 41 } << 41 else 42 << 42 { return thePDGStable; } 43 return thePDGStable; << 44 } 43 } 45 44 46 inline G4double G4ParticleDefinition::GetPDGLi << 45 inline 47 { << 46 G4double G4ParticleDefinition::GetPDGLifeTime() const 48 return thePDGLifeTime; << 47 { return thePDGLifeTime; } 49 } << 50 48 51 inline G4double G4ParticleDefinition::GetIonLi << 49 inline 52 { << 50 G4double G4ParticleDefinition::GetIonLifeTime() const 53 //-- No longer needed to access to G4IonTabl << 51 { return thePDGLifeTime; } 54 //-- Method GetIonLifeTime() itself is kept << 55 52 56 return thePDGLifeTime; << 53 //-- No longer needed to access to G4IonTable. 57 } << 54 //-- Method GetIonLifeTime() itself is kept for compatibility >> 55 //-- but moved to icc file as an inlined method. >> 56 //inline >> 57 // G4double G4ParticleDefinition::GetPDGLifeTime() const >> 58 //{ >> 59 // if(IsGeneralIon()) >> 60 // { return GetIonLifeTime(); } >> 61 // else >> 62 // { return thePDGLifeTime; } >> 63 //} 58 64 59 inline G4ParticleTable* G4ParticleDefinition:: << 65 inline 60 { << 66 G4ParticleTable* G4ParticleDefinition::GetParticleTable() const 61 return theParticleTable; << 67 { >> 68 return theParticleTable; 62 } 69 } 63 70 64 inline G4DecayTable* G4ParticleDefinition::Get << 71 inline 65 { << 72 G4DecayTable* G4ParticleDefinition::GetDecayTable() const 66 return theDecayTable; << 73 { >> 74 return theDecayTable; 67 } 75 } 68 76 69 inline void G4ParticleDefinition::SetDecayTabl << 77 inline 70 { << 78 void G4ParticleDefinition::SetDecayTable(G4DecayTable* aDecayTable) 71 theDecayTable = aDecayTable; << 79 { >> 80 theDecayTable = aDecayTable; 72 } 81 } 73 82 74 inline void G4ParticleDefinition::SetVerboseLe << 83 inline >> 84 void G4ParticleDefinition::SetVerboseLevel(G4int value) 75 { 85 { 76 verboseLevel = value; << 86 verboseLevel = value; 77 } 87 } 78 88 79 inline G4int G4ParticleDefinition::GetVerboseL << 89 inline >> 90 G4int G4ParticleDefinition::GetVerboseLevel() const 80 { 91 { 81 return verboseLevel; << 92 return verboseLevel; 82 } 93 } 83 94 84 inline G4ProcessManager* G4ParticleDefinition: << 95 inline >> 96 G4ProcessManager* G4ParticleDefinition::GetMasterProcessManager() const 85 { 97 { 86 return theProcessManagerShadow; << 98 return theProcessManagerShadow; 87 } 99 } 88 100 89 inline void G4ParticleDefinition::SetMasterPro << 101 inline >> 102 void G4ParticleDefinition::SetMasterProcessManager( G4ProcessManager* aNewPM ) 90 { 103 { 91 theProcessManagerShadow = aNewPM; << 104 theProcessManagerShadow = aNewPM; 92 } 105 } 93 106 94 inline G4int G4ParticleDefinition::GetQuarkCon << 107 inline >> 108 G4int G4ParticleDefinition::GetQuarkContent(G4int flavor) const 95 { 109 { 96 G4int content = 0; << 110 G4int content = 0; 97 if ((flavor > 0) && (flavor <= NumberOfQuark << 111 if ((flavor>0) && (flavor<=NumberOfQuarkFlavor)) 98 content = theQuarkContent[flavor - 1]; << 112 { >> 113 content = theQuarkContent[flavor-1]; 99 } 114 } 100 else { << 115 else >> 116 { 101 #ifdef G4VERBOSE 117 #ifdef G4VERBOSE 102 if (verboseLevel > 0) { << 118 if (verboseLevel >0) >> 119 { 103 std::ostringstream message; 120 std::ostringstream message; 104 message << "Invalid Quark Flavor: " << f 121 message << "Invalid Quark Flavor: " << flavor; 105 G4Exception("G4ParticleDefinition::GetQu << 122 G4Exception("G4ParticleDefinition::GetQuarkContent()", 106 } << 123 "InvalidFlavor", JustWarning, message); 107 #endif << 124 } >> 125 #endif 108 } 126 } 109 return content; << 127 return content; 110 } 128 } 111 129 112 inline G4int G4ParticleDefinition::GetAntiQuar << 130 inline >> 131 G4int G4ParticleDefinition::GetAntiQuarkContent(G4int flavor) const 113 { 132 { 114 G4int content = 0; 133 G4int content = 0; 115 if ((flavor > 0) && (flavor <= NumberOfQuark << 134 if ((flavor>0) && (flavor<=NumberOfQuarkFlavor)) 116 content = theAntiQuarkContent[flavor - 1]; << 135 { >> 136 content = theAntiQuarkContent[flavor-1]; 117 } 137 } 118 else { << 138 else >> 139 { 119 #ifdef G4VERBOSE 140 #ifdef G4VERBOSE 120 if (verboseLevel > 0) { << 141 if (verboseLevel >0) >> 142 { 121 std::ostringstream message; 143 std::ostringstream message; 122 message << "Invalid Quark Flavor: " << f 144 message << "Invalid Quark Flavor: " << flavor; 123 G4Exception("G4ParticleDefinition::GetAn << 145 G4Exception("G4ParticleDefinition::GetAntiQuarkContent()", 124 message); << 146 "InvalidFlavor", JustWarning, message); 125 } 147 } 126 #endif 148 #endif 127 } << 149 } 128 return content; 150 return content; 129 } 151 } 130 152 131 inline void G4ParticleDefinition::SetParticleS << 153 inline >> 154 void G4ParticleDefinition::SetParticleSubType(const G4String& subtype) 132 { 155 { 133 theParticleSubType = subtype; 156 theParticleSubType = subtype; 134 } 157 } 135 << 158 136 inline void G4ParticleDefinition::SetAntiPDGEn << 159 inline 137 { << 160 void G4ParticleDefinition::SetAntiPDGEncoding(G4int aEncoding) 138 theAntiPDGEncoding = aEncoding; << 161 { >> 162 theAntiPDGEncoding = aEncoding; 139 } 163 } 140 164 141 inline G4bool G4ParticleDefinition::GetApplyCu << 165 inline >> 166 G4bool G4ParticleDefinition::GetApplyCutsFlag() const 142 { 167 { 143 return fApplyCutsFlag; 168 return fApplyCutsFlag; 144 } 169 } 145 170 146 inline void G4ParticleDefinition::SetAtomicNum << 171 inline >> 172 void G4ParticleDefinition::SetAtomicNumber(G4int i) 147 { 173 { 148 theAtomicNumber = i; 174 theAtomicNumber = i; 149 } 175 } 150 176 151 inline G4int G4ParticleDefinition::GetAtomicNu << 177 inline >> 178 G4int G4ParticleDefinition::GetAtomicNumber() const 152 { 179 { 153 return theAtomicNumber; 180 return theAtomicNumber; 154 } 181 } 155 182 156 inline void G4ParticleDefinition::SetAtomicMas << 183 inline >> 184 void G4ParticleDefinition::SetAtomicMass(G4int i) 157 { 185 { 158 theAtomicMass = i; 186 theAtomicMass = i; 159 } 187 } 160 188 161 inline G4int G4ParticleDefinition::GetAtomicMa << 189 inline >> 190 G4int G4ParticleDefinition::GetAtomicMass() const 162 { 191 { 163 return theAtomicMass; 192 return theAtomicMass; 164 } 193 } 165 194 166 inline void G4ParticleDefinition::SetPDGMagnet << 195 inline >> 196 void G4ParticleDefinition::SetPDGMagneticMoment(G4double magneticMoment) 167 { 197 { 168 thePDGMagneticMoment = magneticMoment; << 198 thePDGMagneticMoment = magneticMoment; 169 } 199 } 170 200 171 inline G4bool G4ParticleDefinition::IsGeneralI << 201 inline >> 202 G4bool G4ParticleDefinition::IsGeneralIon() const 172 { 203 { 173 return isGeneralIon; 204 return isGeneralIon; 174 } 205 } 175 206 176 inline G4bool G4ParticleDefinition::IsMuonicAt << 207 inline >> 208 G4int G4ParticleDefinition::GetParticleDefinitionID() const 177 { 209 { 178 return isMuonicAtom; << 210 return g4particleDefinitionInstanceID; 179 } 211 } 180 212 181 inline G4int G4ParticleDefinition::GetParticle << 182 { << 183 return g4particleDefinitionInstanceID; << 184 } << 185 << 186 inline G4bool G4ParticleDefinition::IsHypernuc << 187 { << 188 return GetNumberOfLambdasInHypernucleus() > << 189 } << 190 << 191 inline G4int G4ParticleDefinition::GetNumberOf << 192 { << 193 G4int numberOfLambdas = 0; << 194 // PDG code of hypernuclei: 10LZZZAAAI << 195 if (thePDGEncoding > 0 && thePDGEncoding / 1 << 196 numberOfLambdas = (thePDGEncoding / 100000 << 197 } << 198 return numberOfLambdas; << 199 } << 200 << 201 inline G4bool G4ParticleDefinition::IsAntiHype << 202 { << 203 return GetNumberOfAntiLambdasInAntiHypernucl << 204 } << 205 << 206 inline G4int G4ParticleDefinition::GetNumberOf << 207 { << 208 G4int numberOfAntiLambdas = 0; << 209 // PDG code of anti-hypernuclei: -10LZZZAAAI << 210 if (thePDGEncoding < 0 && thePDGEncoding / 1 << 211 numberOfAntiLambdas = (std::abs(thePDGEnco << 212 } << 213 return numberOfAntiLambdas; << 214 } << 215 213