45{
46 if (theFragment.GetExcitationEnergy() <= 0.0) {
47 return nullptr;
48 }
49
50
51
54
55
56
57 G4StatMFMicroCanonical * theMicrocanonicalEnsemble = 0;
58 G4StatMFMacroCanonical * theMacrocanonicalEnsemble = 0;
59
60
61
62
63
64
65 theMicrocanonicalEnsemble = new G4StatMFMicroCanonical(theFragment);
66
68 G4int IterationsLimit = 100000;
70
72 G4StatMFChannel * theChannel = 0;
73
75 do {
76 do {
77
79 if (theMeanMult <= MaxAverageMultiplicity) {
80
81
82 theChannel = theMicrocanonicalEnsemble->
ChooseAandZ(theFragment);
83 _theEnsemble = theMicrocanonicalEnsemble;
84 } else {
85
86
87
88 if (FirstTime) {
89
90 theMacrocanonicalEnsemble = new G4StatMFMacroCanonical(theFragment);
91 _theEnsemble = theMacrocanonicalEnsemble;
92 FirstTime = false;
93 }
94
95
96
97 theChannel = theMacrocanonicalEnsemble->
ChooseAandZ(theFragment);
98 }
99
101 if (!ChannelOk) delete theChannel;
102
103
104 } while (!ChannelOk);
105
106
109 theResult->push_back(new G4Fragment(theFragment));
110 delete theMicrocanonicalEnsemble;
111 if (theMacrocanonicalEnsemble != 0) delete theMacrocanonicalEnsemble;
112 delete theChannel;
113 return theResult;
114 }
115
116
117
118
119
120
121 Temperature = _theEnsemble->GetMeanTemperature();
122
123 if (FindTemperatureOfBreakingChannel(theFragment,theChannel,Temperature)) break;
124
125
126
127
128
129
130
131 delete theChannel;
132
133
134 } while (Iterations++ < IterationsLimit );
135
136
137 if (Iterations >= IterationsLimit)
138 throw G4HadronicException(__FILE__, __LINE__, "G4StatMF::BreakItUp: Was not possible to solve for temperature of breaking channel");
139
141 GetFragments(theFragment.GetA_asInt(),theFragment.GetZ_asInt(),Temperature);
142
143
144
146 InitialMomentum.boost(-InitialMomentum.boostVector());
149 do {
151 for (auto const & ptr : *theResult) {
152 FragmentsEnergy += ptr->GetMomentum().e();
153 }
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);
165 }
166
167 } while (ScaleFactor > 1.0+1.e-5 && std::abs(ScaleFactor-SavedScaleFactor)/ScaleFactor > 1.e-10);
168
169
170
171 G4FragmentVector::iterator i;
172 for (i = theResult->begin(); i != theResult->end(); i++) {
174 FourMom.
boost(theFragment.GetMomentum().boostVector());
175 (*i)->SetMomentum(FourMom);
176 (*i)->SetCreatorModelID(_secID);
177 }
178
179
180 delete theMicrocanonicalEnsemble;
181 if (theMacrocanonicalEnsemble != 0) delete theMacrocanonicalEnsemble;
182 delete theChannel;
183
184 return theResult;
185}
std::vector< G4Fragment * > G4FragmentVector
CLHEP::HepLorentzVector G4LorentzVector
CLHEP::Hep3Vector G4ThreeVector
HepLorentzVector & boost(double, double, double)
void setVect(const Hep3Vector &)
G4bool CheckFragments(void)
size_t GetMultiplicity(void)
G4StatMFChannel * ChooseAandZ(const G4Fragment &theFragment)
G4StatMFChannel * ChooseAandZ(const G4Fragment &theFragment)
static G4double GetMaxAverageMultiplicity(G4int A)
G4double GetMeanMultiplicity(void) const