Geant4-11
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,
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 {
79 isGeneralIon = true;
80 }
81
82 // isomer level isset to 9
83 // if isomer level is set to 0 for excited state
84 //
85 if ((theExcitationEnergy > 0.0) && (isomer==0)) isomer =9;
86
87 if (GetAtomicNumber() == 0 )
88 {
89 // AtomicNumber/Mass is positive even for anti_nulceus
91 SetAtomicMass( std::abs(GetBaryonNumber()) );
92 }
93}
94
96{
97}
98
100{
101}
102
104{
106 switch(flbChar)
107 {
108 case 'x': case 'X':
109 flb = plusX;
110 break;
111 case 'y': case 'Y':
112 flb = plusY;
113 break;
114 case 'z': case 'Z':
115 flb = plusZ;
116 break;
117 case 'u': case 'U':
118 flb = plusU;
119 break;
120 case 'v': case 'V':
121 flb = plusV;
122 break;
123 case 'w': case 'W':
124 flb = plusW;
125 break;
126 case 'r': case 'R':
127 flb = plusR;
128 break;
129 case 's': case 'S':
130 flb = plusS;
131 break;
132 case 't': case 'T':
133 flb = plusT;
134 break;
135 case 'a': case 'A':
136 flb = plusA;
137 break;
138 case 'b': case 'B':
139 flb = plusB;
140 break;
141 case 'c': case 'C':
142 flb = plusC;
143 break;
144 case 'd': case 'D':
145 flb = plusD;
146 break;
147 case 'e': case 'E':
148 flb = plusE;
149 break;
150 case '\0': default:
151 break;
152 }
153 return flb;
154}
155
157{
158 static G4Ions::G4FloatLevelBase flb[] =
159 { noFloat,
162 return flb[flbIdx];
163}
164
166{
167 static char flbChar[] = {'\0','X','Y','Z','U','V','W',
168 'R','S','T','A','B','C','D','E'};
169 return flbChar[static_cast<G4int>(flb)];
170}
#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
static constexpr double eplus
Definition: G4SIunits.hh:184
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
int G4int
Definition: G4Types.hh:85
G4double theExcitationEnergy
Definition: G4Ions.hh:107
virtual ~G4Ions()
Definition: G4Ions.cc:99
static char FloatLevelBaseChar(G4Ions::G4FloatLevelBase flb)
Definition: G4Ions.cc:165
static G4Ions::G4FloatLevelBase FloatLevelBase(char flbChar)
Definition: G4Ions.cc:103
G4Ions()
Definition: G4Ions.cc:95
G4FloatLevelBase
Definition: G4Ions.hh:83
G4int GetAtomicNumber() const
G4double GetPDGCharge() const
void SetAtomicMass(G4int)
void SetAtomicNumber(G4int)