Geant4 11.1.1
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
G4Ions.cc
Go to the documentation of this file.
1//
2// ********************************************************************
3// * License and Disclaimer *
4// * *
5// * The Geant4 software is copyright of the Copyright Holders of *
6// * the Geant4 Collaboration. It is provided under the terms and *
7// * conditions of the Geant4 Software License, included in the file *
8// * LICENSE and available at http://cern.ch/geant4/license . These *
9// * include a list of copyright holders. *
10// * *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work make any representation or warranty, express or implied, *
14// * regarding this software system or assume any liability for its *
15// * use. Please see the license in the file LICENSE and URL above *
16// * for the full disclaimer and the limitation of liability. *
17// * *
18// * This code implementation is the result of the scientific and *
19// * technical work of the GEANT4 collaboration. *
20// * By using, copying, modifying or distributing the software (or *
21// * any work based on the software) you agree to acknowledge its *
22// * use in resulting scientific publications, and indicate your *
23// * acceptance of all terms of the Geant4 Software license. *
24// ********************************************************************
25//
26// G4Ions class implementation
27//
28// Authors: G.Cosmo, 4 April 1996 - Object model
29// H.Kurashige, 27 June 1998 - First implementation
30// --------------------------------------------------------------------
31
32#include <fstream>
33#include <iomanip>
34
35#include "G4Ions.hh"
37#include "G4SystemOfUnits.hh"
38
39// ######################################################################
40// ### Ions ###
41// ######################################################################
42
44 const G4String& aName, G4double mass,
45 G4double width, G4double charge,
46 G4int iSpin, G4int iParity,
47 G4int iConjugation, G4int iIsospin,
48 G4int iIsospin3, G4int gParity,
49 const G4String& pType, G4int lepton,
50 G4int baryon, G4int encoding,
51 G4bool stable, G4double lifetime,
52 G4DecayTable *decaytable , G4bool shortlived,
53 const G4String& subType,
54 G4int anti_encoding,
55 G4double excitation,
56 G4int isomer
57)
58 : G4ParticleDefinition( aName,mass,width,charge,iSpin,iParity,
59 iConjugation,iIsospin,iIsospin3,gParity,pType,
60 lepton,baryon,encoding,stable,lifetime,decaytable,
61 shortlived, subType, anti_encoding),
62 theExcitationEnergy(excitation),
63 theIsomerLevel(isomer),
64 floatLevelBase(G4FloatLevelBase::no_Float)
65{
66 if ((aName == "proton") || (aName == "neutron")) {
67 isGeneralIon = false ;
68 } else if ( (aName == "GenericIon") || (aName == "alpha")
69 || (aName == "He3") || (aName == "deuteron")|| (aName == "triton")) {
70 isGeneralIon = false ;
71 } else if ( (aName == "anti_He3") || (aName == "anti_deuteron")
72 || (aName == "anti_triton") || (aName == "anti_alpha") ) {
73 isGeneralIon = false ;
74 } else if ( (aName == "iron") || (aName == "oxygen") || (aName == "nitrogen")
75 || (aName == "carbon") || (aName == "helium") || (aName == "alpha+")
76 || (aName == "hydrogen") || (aName == "Ps-1s") || (aName == "Ps-2s")) {
77 isGeneralIon = false ;
78 } else if ( aName == "hypertriton" || aName == "anti_hypertriton" ||
79 aName == "hyperalpha" || aName == "anti_hyperalpha" ||
80 aName == "hyperH4" || aName == "anti_hyperH4" ||
81 aName == "doublehyperH4" || aName == "anti_doublehyperH4" ||
82 aName == "doublehyperdoubleneutron" || aName == "anti_doublehyperdoubleneutron" ||
83 aName == "hyperHe5" || aName == "anti_hyperHe5" ) {
84 isGeneralIon = false;
85 } else {
86 isGeneralIon = true;
87 }
88
89 // isomer level isset to 9
90 // if isomer level is set to 0 for excited state
91 //
92 if ((theExcitationEnergy > 0.0) && (isomer==0)) isomer =9;
93
94 if (GetAtomicNumber() == 0 )
95 {
96 // AtomicNumber/Mass is positive even for anti_nulceus
97 SetAtomicNumber( std::abs(G4int(GetPDGCharge()/eplus)) );
98 SetAtomicMass( std::abs(GetBaryonNumber()) );
99 }
100}
101
103{
104}
105
107{
108}
109
111{
113 switch(flbChar)
114 {
115 case 'x': case 'X':
116 flb = plusX;
117 break;
118 case 'y': case 'Y':
119 flb = plusY;
120 break;
121 case 'z': case 'Z':
122 flb = plusZ;
123 break;
124 case 'u': case 'U':
125 flb = plusU;
126 break;
127 case 'v': case 'V':
128 flb = plusV;
129 break;
130 case 'w': case 'W':
131 flb = plusW;
132 break;
133 case 'r': case 'R':
134 flb = plusR;
135 break;
136 case 's': case 'S':
137 flb = plusS;
138 break;
139 case 't': case 'T':
140 flb = plusT;
141 break;
142 case 'a': case 'A':
143 flb = plusA;
144 break;
145 case 'b': case 'B':
146 flb = plusB;
147 break;
148 case 'c': case 'C':
149 flb = plusC;
150 break;
151 case 'd': case 'D':
152 flb = plusD;
153 break;
154 case 'e': case 'E':
155 flb = plusE;
156 break;
157 case '\0': default:
158 break;
159 }
160 return flb;
161}
162
164{
165 static G4Ions::G4FloatLevelBase flb[] =
166 { noFloat,
169 return flb[flbIdx];
170}
171
173{
174 static char flbChar[] = {'\0','X','Y','Z','U','V','W',
175 'R','S','T','A','B','C','D','E'};
176 return flbChar[static_cast<G4int>(flb)];
177}
#define plusA
Definition: G4Ions.hh:122
#define plusT
Definition: G4Ions.hh:121
#define plusR
Definition: G4Ions.hh:119
#define plusV
Definition: G4Ions.hh:114
#define plusW
Definition: G4Ions.hh:115
#define plusD
Definition: G4Ions.hh:125
#define plusU
Definition: G4Ions.hh:113
#define plusS
Definition: G4Ions.hh:120
#define plusY
Definition: G4Ions.hh:117
#define plusX
Definition: G4Ions.hh:116
#define plusZ
Definition: G4Ions.hh:118
#define plusB
Definition: G4Ions.hh:123
#define plusC
Definition: G4Ions.hh:124
#define plusE
Definition: G4Ions.hh:126
#define noFloat
Definition: G4Ions.hh:112
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
virtual ~G4Ions()
Definition: G4Ions.cc:106
static char FloatLevelBaseChar(G4Ions::G4FloatLevelBase flb)
Definition: G4Ions.cc:172
static G4Ions::G4FloatLevelBase FloatLevelBase(char flbChar)
Definition: G4Ions.cc:110
G4Ions()
Definition: G4Ions.cc:102
G4FloatLevelBase
Definition: G4Ions.hh:83
G4int GetAtomicNumber() const
G4double GetPDGCharge() const
void SetAtomicMass(G4int)
void SetAtomicNumber(G4int)