56 G4cout <<
"G4RPGKPlusInelastic::ApplyYourself called" <<
G4endl;
58 G4cout <<
"target material = " << targetMaterial->
GetName() <<
", ";
76 G4double p = std::sqrt( std::abs((et-amas)*(et+amas)) );
90 p = std::sqrt( std::abs((et-amas)*(et+amas)) );
101 targetParticle.SetSide( -1 );
102 G4bool incidentHasChanged =
false;
103 G4bool targetHasChanged =
false;
104 G4bool quasiElastic =
false;
111 Cascade( vec, vecLen,
112 originalIncident, currentParticle, targetParticle,
113 incidentHasChanged, targetHasChanged, quasiElastic );
116 originalIncident, originalTarget, modifiedOriginal,
117 targetNucleus, currentParticle, targetParticle,
118 incidentHasChanged, targetHasChanged, quasiElastic );
121 currentParticle, targetParticle,
122 incidentHasChanged );
124 delete originalTarget;
130 void G4RPGKPlusInelastic::Cascade(
136 G4bool &incidentHasChanged,
153 G4double centerofmassEnergy = std::sqrt( mOriginal*mOriginal +
154 targetMass*targetMass +
155 2.0*targetMass*etOriginal );
156 G4double availableEnergy = centerofmassEnergy-(targetMass+mOriginal);
162 static G4bool first =
true;
163 const G4int numMul = 1200;
164 const G4int numSec = 60;
165 static G4double protmul[numMul], protnorm[numSec];
166 static G4double neutmul[numMul], neutnorm[numSec];
170 G4int nt=0, np=0, nneg=0, nz=0;
177 for( i=0; i<numMul; ++i )protmul[i] = 0.0;
178 for( i=0; i<numSec; ++i )protnorm[i] = 0.0;
180 for( np=0; np<(numSec/3); ++np )
182 for( nneg=std::max(0,np-2); nneg<=np; ++nneg )
184 for( nz=0; nz<numSec/3; ++nz )
186 if( ++counter < numMul )
191 protmul[counter] =
Pmltpc(np,nneg,nz,nt,b[0],c);
192 protnorm[nt-1] += protmul[counter];
198 for( i=0; i<numMul; ++i )neutmul[i] = 0.0;
199 for( i=0; i<numSec; ++i )neutnorm[i] = 0.0;
201 for( np=0; np<numSec/3; ++np )
203 for( nneg=std::max(0,np-1); nneg<=(np+1); ++nneg )
205 for( nz=0; nz<numSec/3; ++nz )
207 if( ++counter < numMul )
210 if( (nt>0) && (nt<=numSec) )
212 neutmul[counter] =
Pmltpc(np,nneg,nz,nt,b[1],c);
213 neutnorm[nt-1] += neutmul[counter];
219 for( i=0; i<numSec; ++i )
221 if( protnorm[i] > 0.0 )protnorm[i] = 1.0/protnorm[i];
222 if( neutnorm[i] > 0.0 )neutnorm[i] = 1.0/neutnorm[i];
233 const G4double supp[] = {0.,0.4,0.55,0.65,0.75,0.82,0.86,0.90,0.94,0.98};
243 test = std::exp( std::min( expxu, std::max( expxl, -
sqr(1.0+b[0])/(2.0*c*c) ) ) );
253 test = std::exp( std::min( expxu, std::max( expxl, -
sqr(1.0+b[1])/(2.0*c*c) ) ) );
256 test = std::exp( std::min( expxu, std::max( expxl, -
sqr(-1.0+b[1])/(2.0*c*c) ) ) );
263 else if( ran < wp/wt )
278 for( np=0; (np<numSec/3) && (ran>=excs); ++np )
280 for( nneg=std::max(0,np-2); (nneg<=np) && (ran>=excs); ++nneg )
282 for( nz=0; (nz<numSec/3) && (ran>=excs); ++nz )
284 if( ++counter < numMul )
289 test = std::exp( std::min( expxu, std::max( expxl, -(
pi/4.0)*(nt*nt)/(n*n) ) ) );
290 dum = (
pi/anpn)*nt*protmul[counter]*protnorm[nt-1]/(2.0*n*n);
291 if( std::fabs(dum) < 1.0 )
293 if( test >= 1.0
e-10 )excs += dum*
test;
302 if( ran >= excs )
return;
308 for( np=0; (np<numSec/3) && (ran>=excs); ++np )
310 for( nneg=std::max(0,np-1); (nneg<=(np+1)) && (ran>=excs); ++nneg )
312 for( nz=0; (nz<numSec/3) && (ran>=excs); ++nz )
314 if( ++counter < numMul )
317 if( (nt>=1) && (nt<=numSec) )
319 test = std::exp( std::min( expxu, std::max( expxl, -(
pi/4.0)*(nt*nt)/(n*n) ) ) );
320 dum = (
pi/anpn)*nt*neutmul[counter]*neutnorm[nt-1]/(2.0*n*n);
321 if( std::fabs(dum) < 1.0 )
323 if( test >= 1.0
e-10 )excs += dum*
test;
332 if( ran >= excs )
return;
348 incidentHasChanged =
true;
353 targetHasChanged =
true;
361 incidentHasChanged =
true;
363 incidentHasChanged =
true;
364 targetHasChanged =
true;
382 incidentHasChanged =
true;
383 targetHasChanged =
true;
391 incidentHasChanged =
true;
395 targetHasChanged =
true;