68 G4int IterationsLimit = 100000;
79 if (theMeanMult <= MaxAverageMultiplicity) {
82 theChannel = theMicrocanonicalEnsemble->
ChooseAandZ(theFragment);
83 _theEnsemble = theMicrocanonicalEnsemble;
91 _theEnsemble = theMacrocanonicalEnsemble;
97 theChannel = theMacrocanonicalEnsemble->
ChooseAandZ(theFragment);
101 if (!ChannelOk)
delete theChannel;
104 }
while (!ChannelOk);
109 theResult->push_back(
new G4Fragment(theFragment));
110 delete theMicrocanonicalEnsemble;
111 if (theMacrocanonicalEnsemble != 0)
delete theMacrocanonicalEnsemble;
121 Temperature = _theEnsemble->GetMeanTemperature();
123 if (FindTemperatureOfBreakingChannel(theFragment,theChannel,Temperature))
break;
134 }
while (Iterations++ < IterationsLimit );
137 if (Iterations >= IterationsLimit)
138 throw G4HadronicException(__FILE__, __LINE__,
"G4StatMF::BreakItUp: Was not possible to solve for temperature of breaking channel");
151 for (
auto const & ptr : *theResult) {
152 FragmentsEnergy += ptr->GetMomentum().e();
154 if (0.0 == FragmentsEnergy) {
break; }
155 SavedScaleFactor = ScaleFactor;
156 ScaleFactor = InitialMomentum.
e()/FragmentsEnergy;
158 for (
auto const & ptr : *theResult) {
159 ScaledMomentum = ScaleFactor * ptr->GetMomentum().vect();
160 G4double Mass = ptr->GetMomentum().mag();
162 NewMomentum.
setVect(ScaledMomentum);
163 NewMomentum.
setE(std::sqrt(ScaledMomentum.
mag2()+Mass*Mass));
164 ptr->SetMomentum(NewMomentum);
167 }
while (ScaleFactor > 1.0+1.e-5 && std::abs(ScaleFactor-SavedScaleFactor)/ScaleFactor > 1.e-10);
171 G4FragmentVector::iterator i;
172 for (i = theResult->begin(); i != theResult->end(); i++) {
175 (*i)->SetMomentum(FourMom);
176 (*i)->SetCreatorModelID(_secID);
180 delete theMicrocanonicalEnsemble;
181 if (theMacrocanonicalEnsemble != 0)
delete theMacrocanonicalEnsemble;