Import Geant4 8.0.0 source tree
This commit is contained in:
+75
-85
@@ -21,9 +21,22 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4DiffElasticHadrNucleus.hh,v 1.10 2005/06/10 13:23:42 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-07-01 $
|
||||
// $Id: G4DiffElasticHadrNucleus.hh,v 1.13 2005/11/25 19:17:32 dennis Exp $
|
||||
// GEANT4 tag $Name: geant4-08-00 $
|
||||
//
|
||||
|
||||
//
|
||||
// G4DiffElasticHadrNucleus header file
|
||||
//
|
||||
// High energy hadron-nucleus elastic scattering
|
||||
// Kinetic energy T > 1 GeV
|
||||
// N. Starkov 2003.
|
||||
//
|
||||
// Modifications:
|
||||
// 14.11.05 The HE elastic scattering on proton is added (N.Starkov)
|
||||
// 23.11.05 int -> G4int, fabs -> abs (V.Ivanchenko)
|
||||
//
|
||||
|
||||
#ifndef G4DiffElasticHadrNucleus_h
|
||||
#define G4DiffElasticHadrNucleus_h 1
|
||||
|
||||
@@ -32,49 +45,51 @@
|
||||
#include "G4HadronValues.hh"
|
||||
#include "G4IntegrHadrNucleus.hh"
|
||||
|
||||
class G4DiffElasticHadrNucleus: public //G4HadronValues
|
||||
G4IntegrHadrNucleus
|
||||
{
|
||||
class G4DiffElasticHadrNucleus: public G4IntegrHadrNucleus
|
||||
{
|
||||
|
||||
public:
|
||||
G4DiffElasticHadrNucleus() : // G4HadronValues(),
|
||||
G4IntegrHadrNucleus()
|
||||
{
|
||||
Factors();
|
||||
r0 = 1.1; // The WS's parameters
|
||||
r01 = 1.16;
|
||||
rAmax = 2.5;
|
||||
NpointsB = 500;
|
||||
}
|
||||
public:
|
||||
|
||||
G4DiffElasticHadrNucleus();
|
||||
|
||||
~G4DiffElasticHadrNucleus() {;}
|
||||
~G4DiffElasticHadrNucleus();
|
||||
|
||||
G4double HadrNuclDifferCrSec(
|
||||
G4double HadrNuclDifferCrSec(
|
||||
const G4DynamicParticle * aHadron,
|
||||
G4Nucleus * aNucleus,
|
||||
G4double Q2);
|
||||
|
||||
G4double HadrNuclDifferCrSecT(
|
||||
G4double HadrNuclDifferCrSecT(
|
||||
const G4DynamicParticle * aHadron,
|
||||
G4Nucleus * aNucleus,
|
||||
G4double Q2,
|
||||
G4int Kind);
|
||||
|
||||
G4double Thickness(G4int A, G4double b);
|
||||
G4double Thickness(G4int A, G4double b);
|
||||
|
||||
void GetIntegrandB(G4int Anucleus);
|
||||
void GetIntegrandB(G4int Anucleus);
|
||||
|
||||
G4double GetIntegrandS(G4int Anucleus, G4double b, G4int Kind);
|
||||
G4double GetIntegrandS(G4int Anucleus, G4double b, G4int Kind);
|
||||
|
||||
void GetNucleusParameters(G4Nucleus * aNucleus);
|
||||
void GetNucleusParameters(G4Nucleus * aNucleus);
|
||||
|
||||
G4double HadronProtonDiffCrSec(G4double Q2);
|
||||
|
||||
G4double MyJ0(G4double x)
|
||||
void GetKinematics(const G4DynamicParticle * aHadron);
|
||||
|
||||
void GetParametersHP(const G4DynamicParticle * aHadron);
|
||||
|
||||
G4double LineInterpol(G4double p0, G4double p1,
|
||||
G4double c0, G4double c1,
|
||||
G4double p);
|
||||
// ====================================================
|
||||
G4double MyJ0(G4double x)
|
||||
{
|
||||
G4double x1, x2, x3, x4, x5, x6, x7, f0, th0, res;
|
||||
|
||||
x2 = x*x/9.0;
|
||||
|
||||
if(std::fabs(x)<=3)
|
||||
if(std::abs(x)<=3.0)
|
||||
{
|
||||
x3 = x2*x2;
|
||||
x4 = x3*x2;
|
||||
@@ -104,8 +119,8 @@ class G4DiffElasticHadrNucleus: public //G4HadronValues
|
||||
}
|
||||
return res;
|
||||
}
|
||||
|
||||
G4double MyI0(G4double x)
|
||||
// +++++++++++++++++++++++++++++++++++++++++++++
|
||||
G4double MyI0(G4double x)
|
||||
{
|
||||
G4double p1=1.0, p2=3.5156229, p3=3.0899424,
|
||||
p4=1.2067492, p5=0.2659732, p6=3.360768e-2,
|
||||
@@ -114,7 +129,7 @@ class G4DiffElasticHadrNucleus: public //G4HadronValues
|
||||
q4=-1.57565e-3, q5=9.16281e-3, q6=-2.057706e-2,
|
||||
q7=2.635537e-2, q8=-1.647633e-2, q9=3.922377e-3;
|
||||
|
||||
G4double k1=3.75, ax=std::fabs(x), y=0.0, result=0.0;
|
||||
G4double k1=3.75, ax=std::abs(x), y=0.0, result=0.0;
|
||||
|
||||
if(ax<k1)
|
||||
{
|
||||
@@ -131,86 +146,61 @@ class G4DiffElasticHadrNucleus: public //G4HadronValues
|
||||
return result;
|
||||
}
|
||||
|
||||
private:
|
||||
private:
|
||||
|
||||
void Factors();
|
||||
|
||||
// ++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
G4double binom(G4int N, G4int M)
|
||||
{
|
||||
G4double binom(G4int N, G4int M)
|
||||
{
|
||||
G4double Fact1 = 1;
|
||||
if ((N>1) & (N>=M))
|
||||
{
|
||||
Fact1 = Factorials[N]/Factorials[M]/
|
||||
Fact1 = Factorials[N]/Factorials[M]/
|
||||
Factorials[N-M];
|
||||
}
|
||||
return Fact1;
|
||||
}
|
||||
|
||||
// +++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
G4double Factorial(G4int N)
|
||||
G4double Factorial(G4int N)
|
||||
{
|
||||
G4double Res;
|
||||
Res = 1;
|
||||
if(N == 0) return Res;
|
||||
G4double Res=1;
|
||||
|
||||
if(N < 100) for(G4int M = 1; M<=N; M++) Res = Res*M;
|
||||
if(N == 0) return Res;
|
||||
|
||||
if(N >= 100) Res = 2.50662827*std::exp(static_cast<double>(-N-1))*
|
||||
if(N < 100) for(G4int M = 1; M<=N; M++) Res = Res*M;
|
||||
|
||||
if(N >= 100) Res = 2.50662827*
|
||||
std::exp(static_cast<double>(-N-1))*
|
||||
std::pow(static_cast<double>(N+1),N+0.5)*
|
||||
(1+1/12/(N+1)+1/288/(N+1)/(N+1)-
|
||||
139/51840/(N+1)/(N+1)/(N+1)-
|
||||
571/2488320/(N+1)/(N+1)/(N+1)/(N+1));
|
||||
|
||||
return Res;
|
||||
}
|
||||
return Res;
|
||||
}
|
||||
|
||||
// +++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
void Factors()
|
||||
{
|
||||
G4int ii, ll, mm;
|
||||
G4double Sum1, Fac1, Fac3, Sum3;
|
||||
|
||||
Factorials[0] = 1;
|
||||
|
||||
for( ii = 1; ii<250; ii++)
|
||||
{
|
||||
if(ii >= 100) Mnoj[ii] = 3.03; // there is the saturation
|
||||
else
|
||||
{
|
||||
Sum1 = 0;
|
||||
Fac1 = 1;
|
||||
|
||||
Factorials[ii] = Factorial(ii);
|
||||
|
||||
for( ll = 0; ll<=ii; ll++)
|
||||
{
|
||||
Fac1 = binom(ii,ll);
|
||||
|
||||
Fac3 = 1;
|
||||
Sum3 = 1;
|
||||
for( mm = 1; mm<=ii-ll; mm++)
|
||||
{
|
||||
Fac3 = binom(ii-ll,mm);
|
||||
Sum3 = Sum3 + 1/Fac3;
|
||||
} // mm
|
||||
Sum1 = Sum1 + Sum3/Fac1;
|
||||
} // ll
|
||||
Mnoj[ii] = Sum1;
|
||||
} // else
|
||||
} // ii
|
||||
Mnoj[0] = 1;
|
||||
|
||||
} // Factors
|
||||
// --------------------------------------------------------
|
||||
public:
|
||||
|
||||
G4double Mnoj[250], Factorials[250];
|
||||
G4double ReIntegrand[1000], ImIntegrand[1000], Thick[1000];
|
||||
G4double rAfm, rAGeV, stepB, MomentumCMN;
|
||||
G4double SigTot, Slope, ReOnIm, HdrE, ConstU, Q2;
|
||||
G4double ProtonM, HadronM, HadronE, Sh, PM2, HM2;
|
||||
|
||||
public:
|
||||
|
||||
G4double R1, R2, Pnucl, Aeff, AIm, ARe, Dem, DIm, InCoh, InCohI;
|
||||
G4double r0, r01, rAmax;
|
||||
G4int NpointsB;
|
||||
};
|
||||
G4double EcmP, EcmH, Kcm, CosCM, SqrtS, MaxT, FmaxT, DsigDt;
|
||||
G4double Slope1, Slope2, Coeff1, Coeff2, IntConst, MaxTR;
|
||||
G4double Slope0, Coeff0;
|
||||
G4int NumbPointsB, NumbPointsT, HadrCode;
|
||||
G4String HadronName;
|
||||
|
||||
G4double Mnoj[250], Factorials[250];
|
||||
G4double ReIntegrand[1000], ImIntegrand[1000], Thick[1000];
|
||||
G4double rAfm, rAGeV, stepB, MomentumCMN, MomentumH;
|
||||
|
||||
G4double R1, R2, Pnucl, Aeff, AIm, ARe, Dem, DIm, InCoh, InCohI;
|
||||
G4double r0, r01, rAmax;
|
||||
G4double BoundaryP[7], BoundaryTL[7], BoundaryTG[7];
|
||||
G4int NpointsB, HadrCodes[7], Intern;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
+141
-102
@@ -20,11 +20,22 @@
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// $Id: G4ElasticHadrNucleusHE.hh,v 1.17 2005/11/23 11:24:08 vnivanch Exp $
|
||||
// GEANT4 tag $Name: geant4-08-00 $
|
||||
//
|
||||
// $Id: G4ElasticHadrNucleusHE.hh,v 1.15 2005/06/10 13:28:07 gcosmo Exp $
|
||||
// GEANT4 tag $Name: geant4-07-01 $
|
||||
|
||||
//
|
||||
// G4ElasticHadrNucleusHe header file
|
||||
//
|
||||
// The generator of high energy hadron-nucleus elastic scattering
|
||||
// The hadron kinetic energy T > 1 GeV
|
||||
// N. Starkov 2003.
|
||||
//
|
||||
// Modifications:
|
||||
// 19.05.04 Variant for G4 6.1: The 'ApplyYourself' was changed
|
||||
// 14.11.05 The HE elastic scattering on proton is added (N.Starkov)
|
||||
// 23.11.05 cleanup (V.Ivanchenko)
|
||||
//
|
||||
// G4ElasticHadrNucleusHe.hh
|
||||
|
||||
#ifndef G4ElasticHadrNucleusHE_h
|
||||
#define G4ElasticHadrNucleusHE_h 1
|
||||
@@ -54,35 +65,28 @@
|
||||
// on the formula is changed on the integral
|
||||
// one
|
||||
|
||||
class ElasticData
|
||||
{
|
||||
public:
|
||||
G4String hadrName;
|
||||
G4int nuclAtomicNumber;
|
||||
G4double TableE[ONE*AreaNumb];
|
||||
G4double TableQ2[ONQ2];
|
||||
G4double TableCrossSec[ONQ2XE*AreaNumb];
|
||||
class ElasticData
|
||||
{
|
||||
public:
|
||||
|
||||
ElasticData() {;}
|
||||
~ElasticData(){;}
|
||||
ElasticData() {};
|
||||
~ElasticData() {};
|
||||
|
||||
ElasticData (const ElasticData &t)
|
||||
ElasticData (const ElasticData &t)
|
||||
{
|
||||
G4int k;
|
||||
|
||||
hadrName = t.hadrName;
|
||||
nuclAtomicNumber = t.nuclAtomicNumber;
|
||||
for(k = 0; k<ONE*AreaNumb; k++)
|
||||
TableE[k] = t.TableE[k];
|
||||
hadrName = t.hadrName;
|
||||
nuclAtomicNumber = t.nuclAtomicNumber;
|
||||
for(k = 0; k<ONE*AreaNumb; k++) TableE[k] = t.TableE[k];
|
||||
|
||||
for(k = 0; k<ONQ2; k++)
|
||||
TableQ2[k] = t.TableQ2[k];
|
||||
for(k = 0; k<ONQ2; k++) TableQ2[k] = t.TableQ2[k];
|
||||
|
||||
for(k = 0; k< ONQ2XE*AreaNumb; k++)
|
||||
TableCrossSec[k] = t.TableCrossSec[k];
|
||||
for(k = 0; k< ONQ2XE*AreaNumb; k++)
|
||||
TableCrossSec[k] = t.TableCrossSec[k];
|
||||
}
|
||||
|
||||
ElasticData & operator=(const ElasticData &t)
|
||||
ElasticData & operator=(const ElasticData &t)
|
||||
{
|
||||
G4int k;
|
||||
if(this!=&t)
|
||||
@@ -90,97 +94,132 @@
|
||||
hadrName = t.hadrName;
|
||||
nuclAtomicNumber = t.nuclAtomicNumber;
|
||||
for(k = 0; k<ONE*AreaNumb; k++)
|
||||
TableE[k] = t.TableE[k];
|
||||
TableE[k] = t.TableE[k];
|
||||
|
||||
for(k = 0; k<ONQ2; k++)
|
||||
TableQ2[k] = t.TableQ2[k];
|
||||
for(k = 0; k<ONQ2; k++) TableQ2[k] = t.TableQ2[k];
|
||||
|
||||
for(k = 0; k< ONQ2XE*AreaNumb; k++)
|
||||
TableCrossSec[k] = t.TableCrossSec[k];
|
||||
TableCrossSec[k] = t.TableCrossSec[k];
|
||||
}
|
||||
return *this;
|
||||
return *this;
|
||||
}
|
||||
};
|
||||
|
||||
class G4ElasticHadrNucleusHE : public G4DiffElasticHadrNucleus,
|
||||
public G4HadronicInteraction
|
||||
{
|
||||
public:
|
||||
G4ElasticHadrNucleusHE(const G4ParticleDefinition * aHadron,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
G4ElasticHadrNucleusHE();
|
||||
|
||||
~G4ElasticHadrNucleusHE() {;}
|
||||
|
||||
G4HadFinalState * ApplyYourself( const G4HadProjectile &aTrack,
|
||||
G4Nucleus &aNucleus);
|
||||
|
||||
G4double RandomElastic0();
|
||||
|
||||
G4double RandomElastic1( const G4DynamicParticle * aHadron,
|
||||
const ElasticData * aData);
|
||||
|
||||
private:
|
||||
G4int ReadOfData(G4ParticleDefinition * aParticle,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
G4String GetHadronName(const G4DynamicParticle * aHadron);
|
||||
|
||||
G4double GetQ2limit(G4double R1);
|
||||
|
||||
void CreationArray(const G4DynamicParticle * aHadron,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
void ArrayForHeavy(const G4DynamicParticle * aHadron,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
void ArrayForLight(const G4DynamicParticle * aHadron,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
G4double InterPol(G4double X1, G4double X2, G4double X3,
|
||||
G4double Y1, G4double Y2, G4double Y3,
|
||||
G4double X);
|
||||
// +++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
G4double Factorial1(G4int N)
|
||||
void Clean()
|
||||
{
|
||||
G4double Res;
|
||||
Res = 1;
|
||||
if(N == 0) return Res;
|
||||
G4int k;
|
||||
|
||||
if(N < 100) for(G4int M = 1; M<=N; M++) Res = Res*M;
|
||||
hadrName = "Nothing";
|
||||
nuclAtomicNumber = 0;
|
||||
for(k = 0; k<ONE*AreaNumb; k++) TableE[k] = 0;
|
||||
|
||||
for(k = 0; k<ONQ2; k++) TableQ2[k] = 0;
|
||||
|
||||
for(k = 0; k< ONQ2XE*AreaNumb; k++) TableCrossSec[k] = 0;
|
||||
|
||||
else Res = 2.50662827*std::exp(static_cast<double>(-N-1))*
|
||||
std::pow(static_cast<double>(N+1),N+0.5)*
|
||||
(1+1/12/(N+1)+1/288/(N+1)/(N+1)-
|
||||
139/51840/(N+1)/(N+1)/(N+1)-
|
||||
571/2488320/(N+1)/(N+1)/(N+1)/(N+1));
|
||||
return Res;
|
||||
}
|
||||
// ++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
std::vector<ElasticData> SetOfElasticData;
|
||||
|
||||
G4IonTable * MyIonTable;
|
||||
G4DiffElasticHadrNucleus aDiffElHadNcls;
|
||||
// G4HadFinalState FinState;
|
||||
G4String hadrName;
|
||||
G4int nuclAtomicNumber;
|
||||
G4double TableE[ONE*AreaNumb];
|
||||
G4double TableQ2[ONQ2];
|
||||
G4double TableCrossSec[ONQ2XE*AreaNumb];
|
||||
|
||||
G4int Nstep, // The number of steps on Q2
|
||||
iKindWork, //
|
||||
iContr, //
|
||||
iPoE; // The number of steps on E
|
||||
G4int iTypeWork;
|
||||
G4double aNucleon; //,
|
||||
// * pTableCrSec, // The array of distr. func.
|
||||
// // at all energies
|
||||
// * pTableE; // The array of E values
|
||||
G4double iQ2[ONQ2], // The array of Q2 values
|
||||
pTableCrSec[ONQ2XE*AreaNumb],
|
||||
pTableE[ONE*AreaNumb],
|
||||
iIntgr[ONQ2], // The array of distr. func.
|
||||
// at one energy
|
||||
Factorials1[250]; // The array for factorials
|
||||
G4double dEbeg1, dEend1, dQ2, maxQ2;
|
||||
};
|
||||
|
||||
}; // The end of the class description
|
||||
class G4ElasticHadrNucleusHE : public G4DiffElasticHadrNucleus,
|
||||
public G4HadronicInteraction
|
||||
{
|
||||
public:
|
||||
G4ElasticHadrNucleusHE(const G4ParticleDefinition * aHadron,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
G4ElasticHadrNucleusHE();
|
||||
|
||||
~G4ElasticHadrNucleusHE();
|
||||
|
||||
G4HadFinalState * ApplyYourself( const G4HadProjectile &aTrack,
|
||||
G4Nucleus &aNucleus);
|
||||
|
||||
G4double RandomElastic0();
|
||||
|
||||
G4double RandomElastic1( const G4DynamicParticle * aHadron,
|
||||
const ElasticData * aData);
|
||||
|
||||
void GetHadronNucleusData(G4DynamicParticle * aParticle,
|
||||
G4Nucleus * aNucleus,
|
||||
ElasticData & ElD );
|
||||
|
||||
G4int ReadOfData(G4ParticleDefinition * aParticle,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
G4double GetQ2limit(G4double R1);
|
||||
|
||||
void CreationArray(const G4DynamicParticle * aHadron,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
void ArrayForHeavy(const G4DynamicParticle * aHadron,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
void ArrayForLight(const G4DynamicParticle * aHadron,
|
||||
G4Nucleus * aNucleus);
|
||||
|
||||
G4double InterPol(G4double X1, G4double X2, G4double X3,
|
||||
G4double Y1, G4double Y2, G4double Y3,
|
||||
G4double X);
|
||||
G4double HadronNucleusQ2(G4DynamicParticle * aHadron,
|
||||
G4Nucleus & aNucleus);
|
||||
|
||||
// ======================================================
|
||||
|
||||
G4float GetFt(G4double T);
|
||||
G4float GetDistrFun(G4double Q2);
|
||||
G4double GetQ2(G4double Ran);
|
||||
G4double HadronProtonQ2(G4DynamicParticle * aHadron);
|
||||
|
||||
// ++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
G4double Factorial1(G4int N)
|
||||
{
|
||||
G4double Res=1;
|
||||
|
||||
if(N == 0) return Res;
|
||||
|
||||
if(N < 100) for(G4int M = 1; M<=N; M++) Res = Res*M;
|
||||
|
||||
else Res = 2.50662827*
|
||||
std::exp(static_cast<double>(-N-1))*
|
||||
std::pow(static_cast<double>(N+1),N+0.5)*
|
||||
(1+1/12/(N+1)+1/288/(N+1)/(N+1)-
|
||||
139/51840/(N+1)/(N+1)/(N+1)-
|
||||
571/2488320/(N+1)/(N+1)/(N+1)/(N+1));
|
||||
return Res;
|
||||
}
|
||||
|
||||
// ++++++++++++++++++++++++++++++++++++++++++++++++++
|
||||
|
||||
G4DynamicParticle aHad;
|
||||
G4int HadrCode;
|
||||
G4String HadronName;
|
||||
|
||||
std::vector<ElasticData> SetOfElasticData;
|
||||
|
||||
G4IonTable * MyIonTable;
|
||||
G4DiffElasticHadrNucleus aDiffElHadNcls;
|
||||
|
||||
G4int Nstep, // The number of steps on Q2
|
||||
iKindWork, //
|
||||
iContr, //
|
||||
iPoE; // The number of steps on E
|
||||
G4int iTypeWork;
|
||||
G4double aNucleon;
|
||||
G4double iQ2[ONQ2], // The array of Q2 values
|
||||
pTableCrSec[ONQ2XE*AreaNumb],
|
||||
pTableE[ONE*AreaNumb],
|
||||
iIntgr[ONQ2], // The array of distr. func.
|
||||
// at one energy
|
||||
Factorials1[250]; // The array for factorials
|
||||
G4double dEbeg1, dEend1, dQ2, maxQ2;
|
||||
|
||||
}; // The end of the class description
|
||||
|
||||
#endif
|
||||
|
||||
@@ -20,37 +20,27 @@
|
||||
// * statement, and all its terms. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// G4HadronValues.hh
|
||||
// $Id: G4HadronValues.hh,v 1.9 2005/11/23 11:24:08 vnivanch Exp $
|
||||
// GEANT4 tag $Name: geant4-08-00 $
|
||||
//
|
||||
|
||||
//
|
||||
// G4HadronValues header file
|
||||
//
|
||||
//
|
||||
// Kinematic and dynamic values
|
||||
// N. Starkov 2003.
|
||||
//
|
||||
// Modifications:
|
||||
// 14.11.05 Use PDG code instead of static particle pointers (N.Starkov)
|
||||
// 23.11.05 cleanup (V.Ivanchenko)
|
||||
//
|
||||
|
||||
#ifndef G4HadronValues_h
|
||||
#define G4HadronValues_h 1
|
||||
|
||||
#include "globals.hh"
|
||||
#include "G4DynamicParticle.hh"
|
||||
#include "G4Neutron.hh"
|
||||
#include "G4Proton.hh"
|
||||
#include "G4Lambda.hh"
|
||||
#include "G4SigmaPlus.hh"
|
||||
#include "G4SigmaMinus.hh"
|
||||
#include "G4SigmaZero.hh"
|
||||
#include "G4XiMinus.hh"
|
||||
#include "G4XiZero.hh"
|
||||
#include "G4OmegaMinus.hh"
|
||||
|
||||
#include "G4AntiNeutron.hh"
|
||||
#include "G4AntiProton.hh"
|
||||
#include "G4AntiLambda.hh"
|
||||
#include "G4AntiSigmaPlus.hh"
|
||||
#include "G4AntiSigmaMinus.hh"
|
||||
#include "G4AntiSigmaZero.hh"
|
||||
#include "G4AntiXiMinus.hh"
|
||||
#include "G4AntiXiZero.hh"
|
||||
#include "G4AntiOmegaMinus.hh"
|
||||
|
||||
#include "G4PionPlus.hh"
|
||||
#include "G4PionMinus.hh"
|
||||
#include "G4KaonPlus.hh"
|
||||
#include "G4KaonMinus.hh"
|
||||
|
||||
#define MyPi 3.141593
|
||||
#define MbToGeV2 2.568
|
||||
@@ -58,20 +48,18 @@
|
||||
#define MbToFm2 25.68
|
||||
|
||||
class G4HadronValues
|
||||
{
|
||||
public:
|
||||
{
|
||||
public:
|
||||
|
||||
G4HadronValues() {;}
|
||||
~G4HadronValues() {;}
|
||||
G4HadronValues();
|
||||
~G4HadronValues();
|
||||
|
||||
// protected:
|
||||
void GetHadronValues(const G4DynamicParticle * aHadron);
|
||||
|
||||
G4double HadrTot, HadrSlope, HadrReIm, DDSect2, DDSect3,
|
||||
MomentumCM;
|
||||
|
||||
void GetHadronValues(const G4DynamicParticle * aHadron);
|
||||
|
||||
G4double HadrTot, HadrSlope, HadrReIm, DDSect2, DDSect3,
|
||||
MomentumCM;
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user