Geant4 Cross Reference |
1 // 1 2 // ******************************************* 3 // * License and Disclaimer 4 // * 5 // * The Geant4 software is copyright of th 6 // * the Geant4 Collaboration. It is provided 7 // * conditions of the Geant4 Software License 8 // * LICENSE and available at http://cern.ch/ 9 // * include a list of copyright holders. 10 // * 11 // * Neither the authors of this software syst 12 // * institutes,nor the agencies providing fin 13 // * work make any representation or warran 14 // * regarding this software system or assum 15 // * use. Please see the license in the file 16 // * for the full disclaimer and the limitatio 17 // * 18 // * This code implementation is the result 19 // * technical work of the GEANT4 collaboratio 20 // * By using, copying, modifying or distri 21 // * any work based on the software) you ag 22 // * use in resulting scientific publicati 23 // * acceptance of all terms of the Geant4 Sof 24 // ******************************************* 25 // 26 // author: V. Grichine 27 // 28 // 25.04.12 V. Grichine - first implementation 29 // 30 // 04.09.18 V. Ivantchenko Major revision of i 31 // 01.10.18 V. Grichine strange hyperon xsc 32 // 27.05.19 V. Ivantchenko Removed obsolete me 33 // 34 35 #include "G4ComponentGGHadronNucleusXsc.hh" 36 37 #include "G4PhysicalConstants.hh" 38 #include "G4SystemOfUnits.hh" 39 #include "G4ParticleTable.hh" 40 #include "G4IonTable.hh" 41 #include "G4ParticleDefinition.hh" 42 #include "G4DynamicParticle.hh" 43 #include "G4HadronNucleonXsc.hh" 44 #include "G4Log.hh" 45 #include "G4Lambda.hh" 46 #include "G4Pow.hh" 47 #include "G4NuclearRadii.hh" 48 49 ////////////////////////////////////////////// 50 // 51 52 G4ComponentGGHadronNucleusXsc::G4ComponentGGHa 53 : G4VComponentCrossSection(Default_Name()), 54 fTotalXsc(0.0),fElasticXsc(0.0),fInelasticX 55 fDiffractionXsc(0.0),fAxsc2piR2(0.0),fModel 56 fParticle(nullptr),fZ(0),fA(0), fL(0) 57 { 58 theGamma = G4Gamma::Gamma(); 59 theProton = G4Proton::Proton(); 60 theNeutron = G4Neutron::Neutron(); 61 theAProton = G4AntiProton::AntiProton(); 62 theANeutron = G4AntiNeutron::AntiNeutron(); 63 thePiPlus = G4PionPlus::PionPlus(); 64 thePiMinus = G4PionMinus::PionMinus(); 65 theKPlus = G4KaonPlus::KaonPlus(); 66 theKMinus = G4KaonMinus::KaonMinus(); 67 theK0S = G4KaonZeroShort::KaonZeroShort 68 theK0L = G4KaonZeroLong::KaonZeroLong() 69 theLambda = G4Lambda::Lambda(); 70 71 hnXsc = new G4HadronNucleonXsc(); 72 } 73 74 ////////////////////////////////////////////// 75 76 G4ComponentGGHadronNucleusXsc::~G4ComponentGGH 77 { 78 delete hnXsc; 79 } 80 81 ////////////////////////////////////////////// 82 83 G4double G4ComponentGGHadronNucleusXsc::GetTot 84 const G4ParticleDefinition 85 G4double kinEnergy, G4int 86 { 87 ComputeCrossSections(aParticle, kinEnergy, Z 88 return fTotalXsc; 89 } 90 91 ////////////////////////////////////////////// 92 93 G4double G4ComponentGGHadronNucleusXsc::GetTot 94 const G4ParticleDefinition 95 G4double kinEnergy, G4int Z, G4int A) 96 { 97 ComputeCrossSections(aParticle, kinEnergy, Z 98 return fTotalXsc; 99 } 100 101 ////////////////////////////////////////////// 102 103 G4double G4ComponentGGHadronNucleusXsc::GetIne 104 const G4ParticleDefinition 105 G4double kinEnergy, G4int Z, G4double 106 { 107 ComputeCrossSections(aParticle, kinEnergy, Z 108 return fInelasticXsc; 109 } 110 111 ////////////////////////////////////////////// 112 113 G4double G4ComponentGGHadronNucleusXsc::GetIne 114 const G4ParticleDefinition 115 G4double kinEnergy, G4int Z, G4int A) 116 { 117 ComputeCrossSections(aParticle, kinEnergy, Z 118 return fInelasticXsc; 119 } 120 121 ////////////////////////////////////////////// 122 123 G4double G4ComponentGGHadronNucleusXsc::GetEla 124 const G4ParticleDefinition 125 G4double kinEnergy, G4int Z, G4double 126 { 127 ComputeCrossSections(aParticle, kinEnergy, Z 128 return fElasticXsc; 129 } 130 131 ////////////////////////////////////////////// 132 133 G4double G4ComponentGGHadronNucleusXsc::GetEla 134 const G4ParticleDefinition 135 G4double kinEnergy, G4int Z, G4int A) 136 { 137 ComputeCrossSections(aParticle, kinEnergy, Z 138 return fElasticXsc; 139 } 140 141 ////////////////////////////////////////////// 142 143 G4double G4ComponentGGHadronNucleusXsc::Comput 144 const G4ParticleDefinition 145 G4double kinEnergy, G4int Z, G4int A) 146 { 147 ComputeCrossSections(aParticle, kinEnergy, Z 148 G4double ratio = (fInelasticXsc > 0.) 149 ? (fInelasticXsc - fProductionXsc)/fInelas 150 ratio = std::max(ratio, 0.); 151 return ratio; 152 } 153 154 ////////////////////////////////////////////// 155 156 G4double G4ComponentGGHadronNucleusXsc::GetPro 157 const G4ParticleDefinition 158 G4double kinEnergy, G4int Z, G4double 159 { 160 ComputeCrossSections(aParticle, kinEnergy, Z 161 return fProductionXsc; 162 } 163 164 ////////////////////////////////////////////// 165 166 G4double G4ComponentGGHadronNucleusXsc::GetPro 167 const G4ParticleDefinition 168 G4double kinEnergy, G4int Z, G4int A) 169 { 170 ComputeCrossSections(aParticle, kinEnergy, Z 171 return fProductionXsc; 172 } 173 174 ////////////////////////////////////////////// 175 // 176 // Calculates total and inelastic Xsc, derives 177 // inelastic accordong to Glauber model with G 178 // in the dipole approximation on light cone. 179 // nucleons helps to calculate rest integrals 180 // [1] B.Z. Kopeliovich, nucl-th/0306044 + sim 181 182 void G4ComponentGGHadronNucleusXsc::ComputeCro 183 const G4ParticleDefinition* aP 184 G4double kinEnergy, G4int Z, G 185 { 186 // check cache 187 if(aParticle == fParticle && fZ == Z && fA = 188 { return; } 189 fParticle = aParticle; 190 fZ = Z; 191 fA = A; 192 fL = nL; 193 fEnergy = kinEnergy; 194 G4Pow* pG4Pow=G4Pow::GetInstance(); 195 // 196 G4double cofInelastic = 2.4; 197 static const G4double cofTotal = 2.0; 198 G4double sigma(0.0), hpInXsc(0.0), hnInXsc(0 199 200 G4int N = std::max(A - Z, 0); // number of 201 202 if( aParticle == theKPlus || aParticle == th 203 aParticle == theK0S || aParticle == th 204 { 205 sigma = (1 == Z) 206 ? hnXsc->KaonNucleonXscNS(aParticle, the 207 : Z*hnXsc->KaonNucleonXscGG(aParticle, t 208 hpInXsc = hnXsc->GetInelasticHadronNucleon 209 210 if(N > 0) { 211 sigma += N*hnXsc->KaonNucleonXscGG(aPart 212 hnInXsc = hnXsc->GetInelasticHadronNucle 213 } 214 R = G4NuclearRadii::RadiusKNGG(A); 215 cofInelastic = 2.2; 216 } 217 else 218 { 219 sigma = Z*hnXsc->HadronNucleonXsc(aParticl 220 hpInXsc = hnXsc->GetInelasticHadronNucleon 221 222 if(N > 0) { 223 sigma += N*hnXsc->HadronNucleonXsc(aPart 224 hnInXsc = hnXsc->GetInelasticHadronNucle 225 } 226 R = G4NuclearRadii::RadiusHNGG(A); 227 if( nL > 0 ) { 228 G4double mp = theProton->GetPDGMass(); 229 G4double ml = theLambda->GetPDGMass(); 230 G4double kinCof = ml/mp; // moving hyper 231 G4double cHN(0.88); 232 sigma += nL*hnXsc->HadronNucleonXsc(theL 233 R *= std::sqrt( pG4Pow->Z23( A - nL ) + 234 } 235 } 236 237 G4double nucleusSquare = cofTotal*pi*R*R; 238 G4double ratio = sigma/nucleusSquare; 239 G4double difratio = ratio/(1.+ratio); 240 fDiffractionXsc = 0.5*nucleusSquare*( difrat 241 242 if( A > 1 ) 243 { 244 fTotalXsc = nucleusSquare*G4Log( 1. + rati 245 *GetParticleBarCorTot(aParticle, Z); 246 247 // inelastic xsc 248 fAxsc2piR2 = cofInelastic*ratio; 249 fModelInLog = G4Log( 1. + fAxsc2piR2 ); 250 fInelasticXsc = nucleusSquare*fModelInLog/ 251 G4double barcorr = GetParticleBarCorIn(aPa 252 fInelasticXsc *= barcorr; 253 fElasticXsc = std::max(fTotalXsc - fInelas 254 255 G4double xratio = (Z*hpInXsc + N*hnInXsc)/ 256 fProductionXsc = 257 nucleusSquare*G4Log(1. + cofInelastic*xr 258 fProductionXsc = std::min(fProductionXsc, 259 } 260 else // H 261 { 262 fTotalXsc = sigma; 263 fInelasticXsc = hpInXsc; 264 fElasticXsc = std::max(fTotalXsc - fInel 265 fProductionXsc = fInelasticXsc; 266 fDiffractionXsc = 0.2*fInelasticXsc; 267 // G4double xratio = hpInXsc/nucleusSquare 268 // fProductionXsc = nucleusSquare*G4Log(1. 269 // fProductionXsc = std::min(fProductionXs 270 } 271 /* 272 G4cout << "GGXsc: Z= " << Z << " A= " << A < 273 << " xtot(b)= " << fTotalXsc/barn 274 << " xel(b)= " << fElasticXsc/barn << " xi 275 << G4endl; 276 */ 277 } 278 279 ////////////////////////////////////////////// 280 // 281 // Return single-diffraction/inelastic cross-s 282 283 G4double G4ComponentGGHadronNucleusXsc::GetRat 284 const G4DynamicParticle* aParticle, G 285 { 286 ComputeCrossSections(aParticle->GetDefinitio 287 aParticle->GetKineticEnergy(), Z, A 288 289 return (fInelasticXsc > 0.0) ? fDiffractionX 290 } 291 292 ////////////////////////////////////////////// 293 // 294 // Return quasi-elastic/inelastic cross-sectio 295 296 G4double G4ComponentGGHadronNucleusXsc:: 297 GetRatioQE(const G4DynamicParticle* aParticle, 298 { 299 ComputeCrossSections(aParticle->GetDefinitio 300 aParticle->GetKineticEnergy(), Z, A 301 302 return (fInelasticXsc > std::max(fProduction 303 ? 1.0 - fProductionXsc/fInelasticXsc : 0.0 304 } 305 306 ////////////////////////////////////////////// 307 // 308 // Returns hadron-nucleon total Xsc according 309 310 G4double G4ComponentGGHadronNucleusXsc::GetHad 311 const G4DynamicParticle* aParticle, c 312 { 313 G4int At = G4lrint(anElement->GetN()); // n 314 G4int Zt = anElement->GetZasInt(); // numbe 315 316 return GetHadronNucleonXsc(aParticle, At, Zt 317 } 318 319 ////////////////////////////////////////////// 320 // 321 // Returns hadron-nucleon total Xsc according 322 323 G4double G4ComponentGGHadronNucleusXsc::GetHad 324 const G4DynamicParticle* aParticle, G 325 { 326 return hnXsc->HadronNucleonXscEL(aParticle-> 327 aParticle->GetKineticEnergy()); 328 } 329 330 ////////////////////////////////////////////// 331 // 332 // Returns hadron-nucleon total Xsc according 333 // 334 335 G4double G4ComponentGGHadronNucleusXsc::GetHad 336 const G4DynamicParticle* aParticle, c 337 { 338 G4int At = G4lrint(anElement->GetN()); // n 339 G4int Zt = anElement->GetZasInt(); // n 340 341 return GetHadronNucleonXscPDG(aParticle, At, 342 } 343 344 ////////////////////////////////////////////// 345 // 346 // Returns hadron-nucleon total Xsc according 347 // 348 349 G4double G4ComponentGGHadronNucleusXsc::GetHad 350 const G4DynamicParticle* aParticle, G 351 { 352 G4double res = 0.0; 353 if(1 == At && 1 == Zt) { 354 res = hnXsc->HadronNucleonXscPDG(aParticle 355 aParticle->GetKineticEnergy()); 356 } else if(1 == At && 0 == Zt) { 357 res = hnXsc->HadronNucleonXscPDG(aParticle 358 aParticle->GetKineticEnergy()); 359 } else { 360 ComputeCrossSections(aParticle->GetDefinit 361 aParticle->GetKineticEnergy(), Zt, At); 362 res = fTotalXsc; 363 } 364 return res; 365 } 366 367 ////////////////////////////////////////////// 368 // 369 // Returns hadron-nucleon total cross-section 370 // data from mainly http://wwwppds.ihep.su:800 371 372 G4double G4ComponentGGHadronNucleusXsc::GetHad 373 const G4DynamicParticle* aParticle, c 374 { 375 G4int At = G4lrint(anElement->GetN()); // n 376 G4int Zt = anElement->GetZasInt(); // n 377 378 return GetHadronNucleonXscNS(aParticle, At, 379 } 380 381 ////////////////////////////////////////////// 382 // 383 // Returns hadron-nucleon total cross-section 384 // data from mainly http://wwwppds.ihep.su:800 385 386 G4double G4ComponentGGHadronNucleusXsc::GetHad 387 const G4DynamicParticle* aParticle, G 388 { 389 G4double res = 0.0; 390 if(1 == At && 1 == Zt) { 391 res = hnXsc->HadronNucleonXscNS(aParticle- 392 aParticle->GetKineticEnergy()); 393 } else if(1 == At && 0 == Zt) { 394 res = hnXsc->HadronNucleonXscNS(aParticle- 395 aParticle->GetKineticEnergy()); 396 } 397 return res; 398 } 399 400 ////////////////////////////////////////////// 401 // 402 // Returns hadron-nucleon inelastic cross-sect 403 404 G4double 405 G4ComponentGGHadronNucleusXsc::GetHNinelasticX 406 407 { 408 G4int At = G4lrint(anElement->GetN()); // n 409 G4int Zt = anElement->GetZasInt(); // n 410 411 return GetHNinelasticXsc(aParticle, At, Zt); 412 } 413 414 ////////////////////////////////////////////// 415 // 416 // Returns hadron-nucleon inelastic cross-sect 417 418 G4double G4ComponentGGHadronNucleusXsc::GetHNi 419 const G4DynamicParticle* aParticle, G 420 { 421 const G4ParticleDefinition* hadron = aPartic 422 G4double e = aParticle->GetKineticEnergy(); 423 G4int Nt = std::max(At - Zt, 0); 424 425 hnXsc->HadronNucleonXscNS(hadron, theProton, 426 G4double sumInelastic = Zt*hnXsc->GetInelast 427 if(Nt > 0) { 428 hnXsc->HadronNucleonXscNS(hadron, theNeutr 429 sumInelastic += Nt*hnXsc->GetInelasticHadr 430 } 431 return sumInelastic; 432 } 433 434 ////////////////////////////////////////////// 435 // 436 // Returns hadron-nucleon inelastic cross-sect 437 438 G4double G4ComponentGGHadronNucleusXsc::GetHNi 439 const G4DynamicParticle* aParticle, G 440 { 441 const G4ParticleDefinition* hadron = aPartic 442 G4double e = aParticle->GetKineticEnergy(); 443 G4int Nt = std::max(At - Zt, 0); 444 445 hnXsc->HadronNucleonXscVU(hadron, theProton, 446 G4double sumInelastic = Zt*hnXsc->GetInelast 447 if(Nt > 0) { 448 hnXsc->HadronNucleonXscVU(hadron, theNeutr 449 sumInelastic += Nt*hnXsc->GetInelasticHadr 450 } 451 return sumInelastic; 452 } 453 454 ////////////////////////////////////////////// 455 // 456 // 457 458 void G4ComponentGGHadronNucleusXsc::Descriptio 459 { 460 outFile << "G4ComponentGGHadronNucleusXsc ca 461 << "elastic cross sections for hadro 462 << "the Glauber model with Gribov co 463 << "targets except hydrogen, and for 464 << "pi+, pi-, K+, K- and gammas with 465 << "a cross section component which 466 << "data set.\n"; 467 } 468 469 470 ////////////////////////////////////////////// 471 // 472 // Correction arrays for GG <-> Bar changea at 473 474 const G4double G4ComponentGGHadronNucleusXsc:: 475 476 1.0, 1.0, 1.42517e+00, // 1.118517e+00, 477 1.082002e+00, 1.116171e+00, 1.078747e+00, 1.06 478 1.058205e+00, 1.082663e+00, 1.068500e+00, 1.07 479 1.071856e+00, 1.071990e+00, 1.073774e+00, 1.07 480 1.090772e+00, 1.096776e+00, 1.095828e+00, 1.09 481 1.105132e+00, 1.109806e+00, 1.110816e+00, 1.11 482 1.111855e+00, 1.110482e+00, 1.110112e+00, 1.10 483 1.106318e+00, 1.106242e+00, 1.107672e+00, 1.10 484 1.102588e+00, 1.096657e+00, 1.092920e+00, 1.08 485 1.083777e+00, 1.089460e+00, 1.086545e+00, 1.07 486 1.077062e+00, 1.072825e+00, 1.072241e+00, 1.07 487 1.070398e+00, 1.065458e+00, 1.064968e+00, 1.06 488 1.056428e+00, 1.055366e+00, 1.055017e+00, 1.05 489 1.048745e+00, 1.047399e+00, 1.045876e+00, 1.04 490 1.039021e+00, 1.036627e+00, 1.034176e+00, 1.03 491 1.037803e+00, 1.031266e+00, 1.032991e+00, 1.03 492 1.037075e+00, 1.034721e+00 493 494 }; 495 496 const G4double G4ComponentGGHadronNucleusXsc:: 497 498 1.0, 1.0, 1.167421e+00, 1.156250e+00, 1.20 499 1.124632e+00, 1.129460e+00, 1.107863e+00, 1.10 500 1.098450e+00, 1.092677e+00, 1.101124e+00, 1.10 501 1.126661e+00, 1.131259e+00, 1.133949e+00, 1.13 502 1.131515e+00, 1.144338e+00, // 1.130338e+00, 503 1.134171e+00, 1.139206e+00, 1.148474e+00, // 1 504 1.142189e+00, 505 1.140725e+00, 1.140100e+00, 1.139848e+00, 1.13 506 1.136439e+00, 1.135946e+00, 1.136431e+00, 1.13 507 1.131935e+00, 1.128381e+00, 1.126373e+00, 1.12 508 1.115947e+00, 1.114426e+00, 1.111749e+00, 1.10 509 1.102576e+00, 1.098816e+00, 1.097889e+00, 1.09 510 1.094552e+00, 1.090222e+00, 1.089358e+00, 1.08 511 1.080773e+00, 1.079464e+00, 1.078724e+00, 1.07 512 1.071920e+00, 1.070395e+00, 1.069503e+00, 1.06 513 1.065319e+00, 1.063730e+00, 1.062092e+00, 1.06 514 1.059109e+00, 1.051920e+00, 1.051258e+00, 1.04 515 1.046435e+00, 1.042614e+00 516 517 }; 518 519 const G4double G4ComponentGGHadronNucleusXsc:: 520 521 1.0, 1.0, 522 1.118515e+00, 1.082000e+00, 1.116169e+00, 1.07 523 1.082661e+00, 1.068498e+00, 1.076910e+00, 1.08 524 1.071988e+00, 1.073772e+00, 1.079355e+00, 1.08 525 1.096774e+00, 1.095827e+00, 1.097677e+00, 1.09 526 1.109805e+00, 1.110814e+00, 1.117377e+00, 1.11 527 1.110480e+00, 1.110111e+00, 1.106674e+00, 1.10 528 1.106241e+00, 1.107671e+00, 1.107341e+00, 1.10 529 1.096655e+00, 1.092918e+00, 1.086628e+00, 1.08 530 1.089458e+00, 1.086543e+00, 1.079923e+00, 1.08 531 1.072824e+00, 1.072239e+00, 1.072103e+00, 1.07 532 1.065456e+00, 1.064966e+00, 1.060523e+00, 1.06 533 1.055365e+00, 1.055016e+00, 1.052303e+00, 1.05 534 1.047397e+00, 1.045875e+00, 1.042971e+00, 1.04 535 1.036626e+00, 1.034175e+00, 1.032525e+00, 1.03 536 1.031265e+00, 1.032990e+00, 1.033283e+00, 1.03 537 1.034720e+00 538 539 }; 540 541 const G4double G4ComponentGGHadronNucleusXsc:: 542 543 1.0, 1.0, 544 1.147419e+00, // 1.167419e+00, 545 1.156248e+00, 1.205362e+00, 1.154224e+00, 1.12 546 1.129459e+00, 1.107861e+00, 1.102151e+00, 1.10 547 1.092675e+00, 1.101122e+00, 1.106460e+00, 1.11 548 1.131258e+00, 1.133948e+00, 1.134183e+00, 1.13 549 1.140337e+00, // 1.130337e+00, 550 551 1.134170e+00, 1.139205e+00, 1.151472e+00, // 552 1.142188e+00, 1.140724e+00, 553 1.140099e+00, 1.139847e+00, 1.137672e+00, 1.13 554 1.135945e+00, 1.136429e+00, 1.135701e+00, 1.13 555 1.128380e+00, 1.126371e+00, 1.122452e+00, 1.12 556 1.114425e+00, 1.111748e+00, 1.106205e+00, 1.10 557 1.098815e+00, 1.097888e+00, 1.097305e+00, 1.09 558 1.090221e+00, 1.089357e+00, 1.085408e+00, 1.08 559 1.079463e+00, 1.078723e+00, 1.076120e+00, 1.07 560 1.070394e+00, 1.069502e+00, 1.067524e+00, 1.06 561 1.063729e+00, 1.062091e+00, 1.061084e+00, 1.05 562 1.051919e+00, 1.051257e+00, 1.049472e+00, 1.04 563 1.042613e+00 564 565 }; 566 567 568 const G4double G4ComponentGGHadronNucleusXsc:: 569 570 1.0, 1.0, 571 1.075927e+00, 1.074407e+00, 1.126098e+00, 1.10 572 1.089988e+00, 1.103566e+00, 1.096922e+00, 1.12 573 1.136629e+00, 1.133086e+00, 1.132428e+00, 1.12 574 1.127840e+00, 1.162670e+00, 1.160392e+00, 1.15 575 1.192555e+00, 1.197243e+00, 1.197911e+00, 1.20 576 1.211703e+00, 1.209080e+00, 1.204248e+00, 1.20 577 1.194392e+00, 1.193037e+00, 1.190408e+00, 1.18 578 1.206434e+00, 1.204456e+00, 1.200547e+00, 1.19 579 1.198912e+00, 1.213048e+00, 1.207160e+00, 1.20 580 1.198306e+00, 1.197002e+00, 1.196027e+00, 1.19 581 1.187556e+00, 1.186308e+00, 1.182124e+00, 1.18 582 1.174811e+00, 1.173702e+00, 1.170827e+00, 1.16 583 1.180244e+00, 1.177626e+00, 1.175121e+00, 1.17 584 1.168997e+00, 1.166826e+00, 1.164130e+00, 1.16 585 1.158462e+00, 1.158014e+00, 1.156519e+00, 1.15 586 1.152974e+00 587 588 }; 589 590 const G4double G4ComponentGGHadronNucleusXsc:: 591 592 1.0, 1.0, 593 1.140246e+00, 1.097872e+00, 1.104301e+00, 1.06 594 1.047987e+00, 1.037032e+00, 1.035686e+00, 1.04 595 1.084480e+00, 1.078286e+00, 1.081488e+00, 1.08 596 1.102175e+00, 1.117707e+00, 1.121734e+00, 1.12 597 1.163312e+00, 1.126263e+00, 1.126459e+00, 1.13 598 1.117037e+00, 1.116777e+00, 1.115858e+00, 1.11 599 1.113226e+00, 1.112818e+00, 1.111890e+00, 1.11 600 1.110256e+00, 1.109414e+00, 1.107647e+00, 1.10 601 1.107849e+00, 1.106407e+00, 1.103426e+00, 1.10 602 1.098915e+00, 1.098260e+00, 1.097768e+00, 1.09 603 1.093348e+00, 1.092687e+00, 1.090465e+00, 1.08 604 1.086571e+00, 1.085997e+00, 1.084451e+00, 1.08 605 1.080735e+00, 1.075659e+00, 1.074341e+00, 1.07 606 1.071107e+00, 1.069955e+00, 1.074856e+00, 1.06 607 1.062192e+00, 1.061967e+00, 1.061180e+00, 1.06 608 1.059658e+00 609 610 }; 611 612 613 const G4double G4ComponentGGHadronNucleusXsc:: 614 615 1.0, 1.0, 616 1.3956e+00, 1.077959e+00, 1.129145e+00, 1.1020 617 1.089995e+00, 1.104895e+00, 1.097154e+00, 1.12 618 1.136724e+00, 1.133859e+00, 1.132498e+00, 1.13 619 1.127905e+00, 1.164210e+00, 1.162259e+00, 1.16 620 1.194157e+00, 1.199177e+00, 1.198983e+00, 1.20 621 1.214389e+00, 1.211760e+00, 1.207335e+00, 1.20 622 1.197283e+00, 1.195706e+00, 1.193071e+00, 1.19 623 1.209235e+00, 1.207163e+00, 1.203451e+00, 1.20 624 1.202244e+00, 1.216509e+00, 1.211066e+00, 1.21 625 1.202143e+00, 1.200724e+00, 1.199595e+00, 1.19 626 1.191137e+00, 1.189791e+00, 1.185888e+00, 1.18 627 1.178545e+00, 1.177355e+00, 1.174616e+00, 1.17 628 1.184120e+00, 1.181478e+00, 1.179085e+00, 1.17 629 1.172947e+00, 1.170858e+00, 1.168170e+00, 1.16 630 1.162774e+00, 1.162217e+00, 1.160740e+00, 1.16 631 1.157267e+00 632 }; 633 634 const G4double G4ComponentGGHadronNucleusXsc:: 635 636 1.0, 1.0, 637 1.463e+00, 1.100898e+00, 1.106773e+00, 1.07 638 1.047992e+00, 1.038041e+00, 1.035862e+00, 1.04 639 1.070551e+00, 1.078869e+00, 1.081541e+00, 1.09 640 1.102226e+00, 1.118865e+00, 1.123143e+00, 1.12 641 1.148502e+00, 1.127678e+00, 1.127244e+00, 1.12 642 1.118957e+00, 1.118696e+00, 1.118074e+00, 1.11 643 1.115311e+00, 1.114745e+00, 1.113814e+00, 1.11 644 1.112249e+00, 1.111343e+00, 1.109718e+00, 1.10 645 1.110227e+00, 1.108846e+00, 1.106183e+00, 1.10 646 1.101632e+00, 1.100896e+00, 1.100296e+00, 1.09 647 1.095892e+00, 1.095162e+00, 1.093144e+00, 1.09 648 1.089236e+00, 1.088604e+00, 1.087159e+00, 1.08 649 1.083473e+00, 1.078373e+00, 1.077136e+00, 1.07 650 1.073898e+00, 1.072806e+00, 1.067706e+00, 1.06 651 1.065241e+00, 1.064939e+00, 1.064166e+00, 1.06 652 1.062699e+00 653 654 }; 655 656 657 // 658 // 659 ////////////////////////////////////////////// 660