|
18 | 18 | #include "StarPDGEncoding.hh" |
19 | 19 | #include "SystemOfUnits.h" |
20 | 20 |
|
21 | | - |
22 | | -class StH4Lambda : public StIon { |
| 21 | +class StH4Lambda : public StIon { |
23 | 22 | public: |
24 | 23 | static StH4Lambda* instance() { |
25 | 24 | return &mH4Lambda; |
@@ -101,4 +100,86 @@ private: |
101 | 100 | { /* nada */ } |
102 | 101 | }; |
103 | 102 |
|
| 103 | +class StH4LambdaBar : public StIon { |
| 104 | +public: |
| 105 | + static StH4LambdaBar* instance() { |
| 106 | + return &mH4LambdaBar; |
| 107 | + }; |
| 108 | + |
| 109 | +private: |
| 110 | + static StH4LambdaBar mH4LambdaBar; |
| 111 | + |
| 112 | + StH4LambdaBar(const string &aName="H4LambdaBar", |
| 113 | + double mass =3.92727 *GeV, |
| 114 | + double width=0.0*MeV, /* TODO */ |
| 115 | + double charge=-1 *eplus, |
| 116 | + int iSpin=0, |
| 117 | + int iParity=0, |
| 118 | + int iConjugation=0, |
| 119 | + int iIsospin=0, |
| 120 | + int iIsospinZ=0, |
| 121 | + int gParity=0, |
| 122 | + const string & pType="hypernucleus", |
| 123 | + int lepton=0, |
| 124 | + int baryon=4, |
| 125 | + int encoding=hid(1,3,1), |
| 126 | + bool stable=false, |
| 127 | + double lifetime=2.632e-10) : StIon(aName,mass,width,charge,iSpin,iParity,iConjugation,iIsospin,iIsospinZ,gParity,pType,lepton,baryon,encoding,stable,lifetime) |
| 128 | + { /* nada */ } |
| 129 | +}; |
| 130 | +class StHe4LambdaBar : public StIon { |
| 131 | +public: |
| 132 | + static StHe4LambdaBar* instance() { |
| 133 | + return &mHe4LambdaBar; |
| 134 | + }; |
| 135 | + |
| 136 | +private: |
| 137 | + static StHe4LambdaBar mHe4LambdaBar; |
| 138 | + |
| 139 | + StHe4LambdaBar(const string &aName="He4LambdaBar", |
| 140 | + double mass =3.92168 *GeV, |
| 141 | + double width=0.0*MeV, /* TODO */ |
| 142 | + double charge=-2 *eplus, |
| 143 | + int iSpin=0, |
| 144 | + int iParity=0, |
| 145 | + int iConjugation=0, |
| 146 | + int iIsospin=0, |
| 147 | + int iIsospinZ=0, |
| 148 | + int gParity=0, |
| 149 | + const string & pType="hypernucleus", |
| 150 | + int lepton=0, |
| 151 | + int baryon=4, |
| 152 | + int encoding=hid(2,3,1), |
| 153 | + bool stable=false, |
| 154 | + double lifetime=2.632e-10) : StIon(aName,mass,width,charge,iSpin,iParity,iConjugation,iIsospin,iIsospinZ,gParity,pType,lepton,baryon,encoding,stable,lifetime) |
| 155 | + { /* nada */ } |
| 156 | +}; |
| 157 | +class StHe5LambdaBar : public StIon { |
| 158 | +public: |
| 159 | + static StHe5LambdaBar* instance() { |
| 160 | + return &mHe5LambdaBar; |
| 161 | + }; |
| 162 | + |
| 163 | +private: |
| 164 | + static StHe5LambdaBar mHe5LambdaBar; |
| 165 | + |
| 166 | + StHe5LambdaBar(const string &aName="He5LambdaBar", |
| 167 | + double mass =4.83978 *GeV, |
| 168 | + double width=0.0*MeV, /* TODO */ |
| 169 | + double charge=-3 *eplus, |
| 170 | + int iSpin=0, |
| 171 | + int iParity=0, |
| 172 | + int iConjugation=0, |
| 173 | + int iIsospin=0, |
| 174 | + int iIsospinZ=0, |
| 175 | + int gParity=0, |
| 176 | + const string & pType="hypernucleus", |
| 177 | + int lepton=0, |
| 178 | + int baryon=4, |
| 179 | + int encoding=hid(2,4,1), |
| 180 | + bool stable=false, |
| 181 | + double lifetime=2.632e-10) : StIon(aName,mass,width,charge,iSpin,iParity,iConjugation,iIsospin,iIsospinZ,gParity,pType,lepton,baryon,encoding,stable,lifetime) |
| 182 | + { /* nada */ } |
| 183 | +}; |
| 184 | + |
104 | 185 | #endif |
0 commit comments