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 // G4Ions class implementation << 27 // 26 // 28 // Authors: G.Cosmo, 4 April 1996 - Object mod << 27 // $Id: G4Ions.cc,v 1.11 2006/06/29 19:25:28 gunter Exp $ 29 // H.Kurashige, 27 June 1998 - First << 28 // GEANT4 tag $Name: geant4-08-01 $ 30 // ------------------------------------------- << 29 // 31 << 30 // 32 #include "G4Ions.hh" << 31 // ---------------------------------------------------------------------- 33 << 32 // GEANT 4 class implementation file 34 #include "G4PhysicalConstants.hh" << 33 // 35 #include "G4SystemOfUnits.hh" << 34 // History: first implementation, based on object model of >> 35 // 4th April 1996, G.Cosmo >> 36 // ********************************************************************** 36 37 37 #include <fstream> 38 #include <fstream> 38 #include <iomanip> 39 #include <iomanip> 39 40 40 // clang-format off << 41 #include "G4Ions.hh" >> 42 >> 43 // ###################################################################### >> 44 // ### Ions ### >> 45 // ###################################################################### >> 46 41 G4Ions::G4Ions( 47 G4Ions::G4Ions( 42 const G4String& aName, G4dou 48 const G4String& aName, G4double mass, 43 G4double width, G4dou 49 G4double width, G4double charge, 44 G4int iSpin, G4int 50 G4int iSpin, G4int iParity, 45 G4int iConjugation, G4int 51 G4int iConjugation, G4int iIsospin, 46 G4int iIsospin3, G4int 52 G4int iIsospin3, G4int gParity, 47 const G4String& pType, G4int 53 const G4String& pType, G4int lepton, 48 G4int baryon, G4int 54 G4int baryon, G4int encoding, 49 G4bool stable, G4dou 55 G4bool stable, G4double lifetime, 50 G4DecayTable *decaytable , G4boo 56 G4DecayTable *decaytable , G4bool shortlived, 51 const G4String& subType, 57 const G4String& subType, 52 G4int anti_encoding, 58 G4int anti_encoding, 53 G4double excitation, << 59 G4double excitation ) 54 G4int isomer << 55 ) << 56 : G4ParticleDefinition( aName,mass,width,cha 60 : G4ParticleDefinition( aName,mass,width,charge,iSpin,iParity, 57 iConjugation,iIsospi << 61 iConjugation,iIsospin,iIsospin3,gParity,pType, 58 lepton,baryon,encodi << 62 lepton,baryon,encoding,stable,lifetime,decaytable, 59 shortlived, subType, anti_encoding), << 63 shortlived, subType, anti_encoding) 60 theExcitationEnergy(excitation), << 61 theIsomerLevel(isomer) << 62 // clang-format on << 63 { 64 { 64 if ((aName == "proton") || (aName == "neutro << 65 // initialize excitation energy/level 65 isGeneralIon = false; << 66 theExcitationEnergy = excitation; 66 } << 67 else if ((aName == "GenericIon") || (aName = << 68 || (aName == "deuteron") || (aName << 69 { << 70 isGeneralIon = false; << 71 } << 72 else if ((aName == "anti_He3") || (aName == << 73 || (aName == "anti_alpha")) << 74 { << 75 isGeneralIon = false; << 76 } << 77 else if ((aName == "iron") || (aName == "oxy << 78 || (aName == "helium") || (aName == << 79 || (aName == "Ps-1s") || (aName == << 80 { << 81 isGeneralIon = false; << 82 } << 83 else if (aName == "hypertriton" || aName == << 84 || aName == "anti_hyperalpha" || aN << 85 || aName == "doublehyperH4" || aNam << 86 || aName == "doublehyperdoubleneutr << 87 || aName == "hyperHe5" || aName == << 88 { << 89 isGeneralIon = false; << 90 } << 91 else { << 92 isGeneralIon = true; << 93 } << 94 << 95 // isomer level isset to 9 << 96 // if isomer level is set to 0 for excited s << 97 // << 98 if ((theExcitationEnergy > 0.0) && (isomer = << 99 << 100 if (GetAtomicNumber() == 0) { << 101 // AtomicNumber/Mass is positive even for << 102 SetAtomicNumber(std::abs(G4int(GetPDGCharg << 103 SetAtomicMass(std::abs(GetBaryonNumber())) << 104 } << 105 } << 106 67 107 G4Ions::G4FloatLevelBase G4Ions::FloatLevelBas << 68 SetAtomicNumber( G4int(GetPDGCharge()/eplus) ); 108 { << 69 SetAtomicMass( GetBaryonNumber() ); 109 G4Ions::G4FloatLevelBase flb = noFloat; << 110 switch (flbChar) { << 111 case 'x': << 112 case 'X': << 113 flb = plusX; << 114 break; << 115 case 'y': << 116 case 'Y': << 117 flb = plusY; << 118 break; << 119 case 'z': << 120 case 'Z': << 121 flb = plusZ; << 122 break; << 123 case 'u': << 124 case 'U': << 125 flb = plusU; << 126 break; << 127 case 'v': << 128 case 'V': << 129 flb = plusV; << 130 break; << 131 case 'w': << 132 case 'W': << 133 flb = plusW; << 134 break; << 135 case 'r': << 136 case 'R': << 137 flb = plusR; << 138 break; << 139 case 's': << 140 case 'S': << 141 flb = plusS; << 142 break; << 143 case 't': << 144 case 'T': << 145 flb = plusT; << 146 break; << 147 case 'a': << 148 case 'A': << 149 flb = plusA; << 150 break; << 151 case 'b': << 152 case 'B': << 153 flb = plusB; << 154 break; << 155 case 'c': << 156 case 'C': << 157 flb = plusC; << 158 break; << 159 case 'd': << 160 case 'D': << 161 flb = plusD; << 162 break; << 163 case 'e': << 164 case 'E': << 165 flb = plusE; << 166 break; << 167 case '\0': << 168 default: << 169 break; << 170 } << 171 return flb; << 172 } 70 } 173 71 174 G4Ions::G4FloatLevelBase G4Ions::FloatLevelBas << 72 G4Ions* G4Ions::IonsDefinition() 175 { 73 { 176 // clang-format off << 74 return this; 177 static G4Ions::G4FloatLevelBase flb[] = << 178 { noFloat, << 179 plusX, plusY, plusZ, plusU, plusV, plusW, << 180 plusR, plusS, plusT, plusA, plusB, plusC, << 181 // clang-format on << 182 return (flbIdx >= 0 && flbIdx < 15) ? flb[fl << 183 } 75 } 184 76 185 char G4Ions::FloatLevelBaseChar(G4Ions::G4Floa << 77 186 { << 78 187 // clang-format off << 188 static char flbChar[] = {'\0', 'X', 'Y', 'Z' << 189 'S', 'T', 'A', 'B' << 190 // clang-format on << 191 return flbChar[static_cast<G4int>(flb)]; << 192 } << 193 79