75 theStatisticalNucleus[i] =
nullptr;
80 NuDEXLibDirectory =
"";
81 photonEvaporation =
nullptr;
83 if ( ch ==
nullptr ) {
84 G4Exception(
"G4NuDEXNeutronCaptureModel()",
"had0707",
FatalException,
"Environment variable G4NUDEXLIBDATA is not defined" );
92 if ( photonEvaporation !=
nullptr )
return;
97 photonEvaporation->SetICM(
true );
99 lowestEnergyLimit = 10.0*CLHEP::eV;
100 minExcitation = 0.1*CLHEP::keV;
106 if ( theStatisticalNucleus[i] )
delete theStatisticalNucleus[i];
132 G4int initialLevel = -1;
133 std::vector< char > pType;
134 std::vector< G4double > pEnergy, pTime;
135 G4int npar = GenerateNeutronCaptureCascade( Z,
A, neutronEnergy, initialLevel, pType, pEnergy, pTime );
142 for (
G4int i = 0; i < npar; i++ ) {
144 if ( pType.at(i) ==
'g' ) {
146 }
else if (pType.at(i) ==
'e' ) {
148 }
else if ( pType.at(i) ==
'p' ) {
155 G4double sintheta = std::sqrt( 1.0 - costheta*costheta );
156 G4ThreeVector direction( sintheta*std::cos(phi), sintheta*std::sin(phi), costheta );
158 G4double particle3momMod = std::sqrt( pEnergy.at(i) * ( pEnergy.at(i) + 2.0*mass ) );
159 G4LorentzVector particle4mom( particle3momMod*direction, mass + pEnergy.at(i) );
160 particle4mom.
boost( boostFromCMtoLAB );
162 remainingLab4mom -= particle4mom;
164 secondary->
SetTime( time + pTime.at(i) );
165 if ( latestEmission < time + pTime.at(i) ) latestEmission = time + pTime.at(i);
182 G4double resNuclLabEkin = std::max( remainingLab4mom.
e() - compoundMass, 0.0 );
185 if ( resNuclLabEkin > 0.0 ) {
186 resNuclLab3momMod = std::sqrt( resNuclLabEkin * ( resNuclLabEkin + 2.0*compoundMass ) );
187 resNuclLabDir = remainingLab4mom.
vect().
unit();
189 G4LorentzVector resNuclLab4mom( resNuclLab3momMod*resNuclLabDir, resNuclLabEkin + compoundMass );
191 secondary->
SetTime( latestEmission );
204 fv->push_back( aFragment );
205 size_t n = fv->size();
206 for (
size_t i = 0; i < n; ++i ) {
219 if ( eexc <= minExcitation ) eexc = 0.0;
225 if ( timeF < 0.0 ) timeF = 0.0;
240 std::vector< char >& pType, std::vector< G4double >& pEnergy,
241 std::vector< G4double >& pTime ) {
243 G4int theZA = 1000*theZ + theA;
244 G4int check = Init( theZA );
245 if ( check < 0 )
return -1;
247 theStatisticalNucleus[theZA]->
GetSnAndI0( Sn, I0 ); Sn *= MeV;
249 G4int nPar = theStatisticalNucleus[theZA]->
GenerateCascade( InitialLevel, ExcitationEnergy/MeV, pType, pEnergy, pTime );
250 for (
G4int i = 0; i < nPar; i++ ) {
251 pEnergy.at(i) *= MeV;
258G4int G4NuDEXNeutronCaptureModel::Init(
G4int theZA,
unsigned int seed1,
unsigned int seed2,
unsigned int seed3 ) {
259 if ( HasData[theZA] == -1 )
return -1;
260 if ( HasData[theZA] == 1 )
return 0;
261 if ( theStatisticalNucleus[theZA] == 0 ) {
262 G4int theZ = theZA/1000;
263 G4int theA = theZA-1000*theZ;
264 theStatisticalNucleus[theZA] =
new G4NuDEXStatisticalNucleus( theZ, theA );
265 if ( BandWidth != 0 ) theStatisticalNucleus[theZA]->SetBandWidth( BandWidth );
266 theStatisticalNucleus[theZA]->SetBrOption( BrOption );
267 if ( seed1 > 0 ) theStatisticalNucleus[theZA]->SetRandom1Seed( seed1 );
268 if ( seed2 > 0 ) theStatisticalNucleus[theZA]->SetRandom1Seed( seed2 );
269 if ( seed3 > 0 ) theStatisticalNucleus[theZA]->SetRandom1Seed( seed3 );
270 G4int check = theStatisticalNucleus[theZA]->Init( NuDEXLibDirectory.c_str() );
285 G4int theZ = theCompoundZ;
286 G4int theA = theCompoundA;
287 G4int theZA = 1000*theZ + theA;
288 G4int check = Init( theZA );
289 if ( check < 0 )
return -1;
291 theStatisticalNucleus[theZA]->GetSnAndI0( Sn, I0 ); Sn *= MeV;
293 if ( lspin < 0 ) lspin = 0;
294 if ( jspinx2 < 0 ) jspinx2 = SampleJ( theZ, theA, lspin );
296 if ( ( I0 >= 0 && (lspin%2) == 0 ) || ( I0 < 0 && (lspin%2) == 1 ) ) parity =
true;
297 G4int InitialLevel = theStatisticalNucleus[theZA]->GetClosestLevel( ExcitationEnergy/MeV, jspinx2, parity );
302G4int G4NuDEXNeutronCaptureModel ::SampleJ(
G4int theCompoundZ,
G4int theCompoundA,
G4int lspin ) {
306 G4int AllowedJx2[100];
307 G4int NAllowedJvals = GetAllowedJx2values( theCompoundZ, theCompoundA, lspin, AllowedJx2 );
308 G4double AllowedJx2CumulProb[100], TotalCumul = 0.0;
309 for (
G4int i = 0; i < NAllowedJvals; i++ ) {
310 AllowedJx2CumulProb[i] = AllowedJx2[i] + 1.0;
311 TotalCumul += AllowedJx2CumulProb[i];
313 for (
G4int i = 0; i < NAllowedJvals; i++ ) {
314 AllowedJx2CumulProb[i] /= TotalCumul;
315 if ( i > 0 ) AllowedJx2CumulProb[i] += AllowedJx2CumulProb[i-1];
319 for (
G4int i = 0; i < NAllowedJvals; i++ ) {
320 if ( rand < AllowedJx2CumulProb[i] ) {
324 if ( i_result < 0 ) {
325 G4cerr <<
" ############ Error in " << __FILE__ <<
", line " << __LINE__ <<
" ############"<<
G4endl;
328 G4int jspinx2 = AllowedJx2[i_result];
333G4int G4NuDEXNeutronCaptureModel::GetAllowedJx2values(
G4int theCompoundZ,
G4int theCompoundA,
G4int lspin,
G4int* jx2vals ) {
335 G4int theZA = 1000*theCompoundZ + theCompoundA;
336 G4int check = Init( theZA );
337 if ( check < 0 )
return -1;
339 theStatisticalNucleus[theZA]->GetSnAndI0( Sn, I0 ); Sn *= MeV;
340 G4int Ix2 = (
G4int)( ( std::fabs(I0) + 0.1 )*2.0 );
341 G4int Jx2min = std::min( std::abs( Ix2-1-2*lspin ), std::abs( Ix2+1-2*lspin ) );
342 G4int Jx2max = Ix2 + 1 + 2*lspin;
343 G4int NAllowedJvals = 0;
344 for (
G4int Jx2 = Jx2min; Jx2 <= Jx2max; Jx2 += 2 ) {
346 jx2vals[NAllowedJvals] = Jx2;
350 return NAllowedJvals;
const char * G4FindDataDir(const char *)
void G4Exception(const char *originOfException, const char *exceptionCode, G4ExceptionSeverity severity, const char *description)
std::vector< G4Fragment * > G4FragmentVector
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
G4GLOB_DLL std::ostream G4cerr
Hep3Vector boostVector() const
HepLorentzVector & boost(double, double, double)
static G4Alpha * Definition()
G4double GetMinExcitation() const
static G4Deuteron * Definition()
static G4Electron * Definition()
G4double GetExcitationEnergy() const
const G4LorentzVector & GetMomentum() const
G4double GetCreationTime() const
const G4ParticleDefinition * GetParticleDefinition() const
static G4Gamma * Definition()
G4double GetKineticEnergy() const
const G4LorentzVector & Get4Momentum() const
G4double GetGlobalTime() const
void SetTime(G4double aT)
void SetCreatorModelID(G4int id)
G4HadFinalState theParticleChange
G4HadronicInteraction(const G4String &modelName="HadronicModel")
const G4String & GetModelName() const
static G4He3 * Definition()
G4ParticleDefinition * GetIon(G4int Z, G4int A, G4int lvl=0)
virtual ~G4NuDEXNeutronCaptureModel()
virtual G4HadFinalState * ApplyYourself(const G4HadProjectile &aTrack, G4Nucleus &targetNucleus) final
virtual void InitialiseModel() final
G4NuDEXNeutronCaptureModel()
G4int GenerateCascade(G4int InitialLevel, G4double ExcitationEnergy, std::vector< char > &pType, std::vector< double > &pEnergy, std::vector< double > &pTime)
void GetSnAndI0(G4double &sn, G4double &i0)
G4DeexPrecoParameters * GetParameters()
static G4NuclearLevelData * GetInstance()
static G4double GetNuclearMass(const G4double A, const G4double Z)
G4double GetPDGMass() const
G4IonTable * GetIonTable() const
static G4ParticleTable * GetParticleTable()
void Initialise() override
static G4int GetModelID(const G4int modelIndex)
static G4Positron * Definition()
static G4Triton * Definition()