82{
83 G4String tString = "/FS";
86 const G4ParticleHPDataUsed& aFile =
88 const G4String& filename = aFile.
GetName();
90 if (!dbool) {
94 return;
95 }
96
97
98 std::istringstream theData(std::ios::in);
100
101 theData >> repFlag >> targetMass >> frameFlag;
102
103 if (repFlag == 1) {
105 theData >> nEnergy;
106 theCoefficients = new G4ParticleHPLegendreStore(nEnergy);
107 theCoefficients->InitInterpolation(theData);
109 G4int tempdep, nLegendre;
111 for (i = 0; i < nEnergy; i++) {
112 theData >> temp >>
energy >> tempdep >> nLegendre;
114 theCoefficients->Init(i, energy, nLegendre);
115 theCoefficients->SetTemperature(i, temp);
117 for (ii = 0; ii < nLegendre; ii++) {
118
120 theCoefficients->SetCoeff(i, ii + 1, coeff);
121 }
122 }
123 }
124 else if (repFlag == 2) {
126 theData >> nEnergy;
127 theProbArray = new G4ParticleHPPartial(nEnergy, nEnergy);
128 theProbArray->InitInterpolation(theData);
130 G4int tempdep, nPoints;
131 for (
G4int i = 0; i < nEnergy; i++) {
132 theData >> temp >>
energy >> tempdep >> nPoints;
134 theProbArray->InitInterpolation(i, theData);
135 theProbArray->SetT(i, temp);
136 theProbArray->SetX(i, energy);
138 for (
G4int ii = 0; ii < nPoints; ii++) {
139
140 theData >> costh >> prob;
141 theProbArray->SetX(i, ii, costh);
142 theProbArray->SetY(i, ii, prob);
143 }
144 theProbArray->DoneSetXY(i);
145 }
146 }
147 else if (repFlag == 3) {
148 G4int nEnergy_Legendre;
149 theData >> nEnergy_Legendre;
150 if (nEnergy_Legendre <= 0) {
151 std::stringstream iss;
152 iss << "G4ParticleHPElasticFS::Init Data Error repFlag is 3 but nEnergy_Legendre <= 0";
155 throw G4HadronicException(__FILE__, __LINE__, iss.str());
156 }
157 theCoefficients = new G4ParticleHPLegendreStore(nEnergy_Legendre);
158 theCoefficients->InitInterpolation(theData);
160 G4int tempdep, nLegendre;
161
162 for (
G4int i = 0; i < nEnergy_Legendre; i++) {
163 theData >> temp >>
energy >> tempdep >> nLegendre;
165 theCoefficients->Init(i, energy, nLegendre);
166 theCoefficients->SetTemperature(i, temp);
168 for (
G4int ii = 0; ii < nLegendre; ii++) {
169
171 theCoefficients->SetCoeff(i, ii + 1, coeff);
172 }
173 }
174
176
178 theData >> nEnergy_Prob;
179 theProbArray = new G4ParticleHPPartial(nEnergy_Prob, nEnergy_Prob);
180 theProbArray->InitInterpolation(theData);
182 for (
G4int i = 0; i < nEnergy_Prob; i++) {
183 theData >> temp >>
energy >> tempdep >> nPoints;
185
186
187 if (i == 0)
188
189 if (std::abs(energy - tE_of_repFlag3) / tE_of_repFlag3 > 1.0e-15)
190 G4cout <<
"Warning Transition Energy of repFlag3 is not consistent." <<
G4endl;
191
192 theProbArray->InitInterpolation(i, theData);
193 theProbArray->SetT(i, temp);
194 theProbArray->SetX(i, energy);
196 for (
G4int ii = 0; ii < nPoints; ii++) {
197
198 theData >> costh >> prob;
199 theProbArray->SetX(i, ii, costh);
200 theProbArray->SetY(i, ii, prob);
201 }
202 theProbArray->DoneSetXY(i);
203 }
204 }
205 else if (repFlag == 0) {
206 theData >> frameFlag;
207 }
208 else {
209 G4cout <<
"unusable number for repFlag: repFlag=" << repFlag <<
G4endl;
210 throw G4HadronicException(__FILE__, __LINE__,
211 "G4ParticleHPElasticFS::Init -- unusable number for repFlag");
212 }
213
214
215}
const G4String & GetName() const
void SetAZMs(const G4ParticleHPDataUsed &used)
void SetA_Z(G4double anA, G4double aZ, G4int aM=0)
G4ParticleHPNames theNames
void GetDataStream(const G4String &, std::istringstream &iss)
static G4ParticleHPManager * GetInstance()
G4double energy(const ThreeVector &p, const G4double m)