65 const G4double dlP=(malP-milP)/(nH-1);
66 const G4double milPG=std::log(.001*Pmin);
92 LEN =
new std::vector<G4double*>;
93 HEN =
new std::vector<G4double*>;
98 G4int lens=LEN->size();
99 for(
G4int i=0; i<lens; ++i)
delete[] (*LEN)[i];
102 G4int hens=HEN->size();
103 for(
G4int i=0; i<hens; ++i)
delete[] (*HEN)[i];
110 outFile <<
"G4ChipsKaonPlusInelasticXS provides the inelastic cross\n"
111 <<
"section for K+ nucleus scattering as a function of incident\n"
112 <<
"momentum. The cross section is calculated using M. Kossov's\n"
113 <<
"CHIPS parameterization of cross section data.\n";
141 if(tgN!=lastN || tgZ!=lastZ)
150 if(lastI)
for(
G4int i=0; i<lastI; i++)
152 if(colN[i]==tgN && colZ[i]==tgZ)
165 lastCS=CalculateCrossSection(-1,j,321,lastZ,lastN,pMom);
167 if(lastCS<=0. && pMom>lastTH)
179 lastCS=CalculateCrossSection(0,j,321,lastZ,lastN,pMom);
187 colP.push_back(pMom);
188 colTH.push_back(lastTH);
189 colCS.push_back(lastCS);
199 else if(pMom<=lastTH)
205 lastCS=CalculateCrossSection(1,j,321,lastZ,lastN,pMom);
223 G4int sync=LEN->size();
224 if(sync<=I)
G4cerr<<
"*!*G4ChipsKPlusNuclCS::CalcCrosSect:Sync="<<sync<<
"<="<<I<<
G4endl;
236 lastLEN[k] = CrossSectionLin(targZ, targN, P);
242 lastHEN[
n] = CrossSectionLog(targZ, targN, lP);
247 G4int sync=LEN->size();
250 G4cerr<<
"***G4ChipsKPlusNuclCS::CalcCrossSect: Sinc="<<sync<<
"#"<<I<<
", Z=" <<targZ
251 <<
", N="<<targN<<
", F="<<F<<
G4endl;
254 LEN->push_back(lastLEN);
255 HEN->push_back(lastHEN);
260 if (Momentum<lastTH)
return 0.;
261 else if (Momentum<Pmin)
263 if(A<=1. && Momentum < 600.) sigma=0.;
264 else sigma=EquLinearFit(Momentum,nL,THmin,dP,lastLEN);
266 else if (Momentum<Pmax)
269 sigma=EquLinearFit(lP,nH,milP,dlP,lastHEN);
274 sigma=CrossSectionFormula(targZ, targN, P, std::log(P));
276 if(sigma<0.)
return 0.;
284 if(tZ<.99 || tN<0.)
return 0.;
287 if(tZ==1 && tN==0) tM=prM;
288 else dE=tZ/(1.+std::pow(tA,third));
291 return std::sqrt(T*(tpM+T));
298 return CrossSectionFormula(tZ, tN, P, lP);
305 return CrossSectionFormula(tZ, tN, P, lP);
321 G4double El=(.0557*ld2+2.23)/(1.-.7/sp+.1/p4);
322 G4double To=(.3*ld2+19.5)/(1.+.46/sp+1.6/p4);
325 else if(tZ<97 && tN<152)
351 c=52.*std::exp(al*.6)*(1.+95./a2)/(1.+9./a)/(1.+46./a2);
352 ss=(40.+.14*
a)/(1.+12./a);
354 t=.185*y/(1.+.00012*y);
355 u=(1.+80./asa)/(1.+200./asa);
356 v=(1.+3.E-6*a4*(1.+6.E-7*a3+4.E10/a12))/a3/20000.;
363 sigma=(f*d*d+
c)/(1.+r/std::sqrt(P)+1./p4)+(rD+rR)/(1+v/p4/p4);
367 G4cerr<<
"-Warning-G4ChipsKaonPlusNuclearCroSect::CSForm:Bad A, Z="<<tZ<<
", N="<<tN<<
G4endl;
370 if(sigma<0.)
return 0.;
378 G4cerr<<
"***G4ChipsKaonPlusInelasticXS::EquLinearFit: DX="<<DX<<
", N="<<N<<
G4endl;
384 G4int jj=
static_cast<int>(d);
386 else if(jj>N2) jj=N2;
virtual G4double GetChipsCrossSection(G4double momentum, G4int Z, G4int N, G4int pdg)
std::vector< ExP01TrackerHit * > a
G4ChipsKaonPlusInelasticXS()
~G4ChipsKaonPlusInelasticXS()
virtual G4double GetIsoCrossSection(const G4DynamicParticle *, G4int tgZ, G4int A, const G4Isotope *iso=0, const G4Element *elm=0, const G4Material *mat=0)
#define G4MUTEX_INITIALIZER
G4double GetTotalMomentum() const
double A(double temperature)
static G4Proton * Proton()
static G4PionPlus * PionPlus()
#define G4_DECLARE_XS_FACTORY(cross_section)
G4double GetPDGMass() const
static G4KaonPlus * KaonPlus()
static const G4double THmin
static constexpr double millibarn
virtual G4bool IsIsoApplicable(const G4DynamicParticle *Pt, G4int Z, G4int A, const G4Element *elm, const G4Material *mat)
G4GLOB_DLL std::ostream G4cerr
virtual void CrossSectionDescription(std::ostream &) const