60{
62
63 #ifdef debug_G4ExcitedStringDecay
65 G4cout<<
"--------------------------- G4ExcitedStringDecay ----------------------"<<
G4endl;
66 G4cout<<
"Hadronization of Excited Strings: theStrings->size() "<<theStrings->size()<<
G4endl;
67 #endif
68
69 for ( unsigned int astring=0; astring < theStrings->size(); astring++)
70
71 {
72
73 if ( theStrings->operator[](astring)->IsExcited() )
74 {KTsum+= theStrings->operator[](astring)->Get4Momentum();}
75 else {KTsum+=theStrings->operator[](astring)->GetKineticTrack()->Get4Momentum();}
76 }
77
82
83 for ( unsigned int astring=0; astring < theStrings->size(); astring++)
84
85 {
86 if ( theStrings->operator[](astring)->IsExcited() )
87 {
88 Ptmp=toCms * theStrings->operator[](astring)->GetLeftParton()->Get4Momentum();
89 theStrings->operator[](astring)->GetLeftParton()->Set4Momentum(Ptmp);
90
91 Ptmp=toCms * theStrings->operator[](astring)->GetRightParton()->Get4Momentum();
92 theStrings->operator[](astring)->GetRightParton()->Set4Momentum(Ptmp);
93
94 KTsum+= theStrings->operator[](astring)->Get4Momentum();
95 }
96 else
97 {
98 Ptmp=toCms * theStrings->operator[](astring)->GetKineticTrack()->Get4Momentum();
99 theStrings->operator[](astring)->GetKineticTrack()->Set4Momentum(Ptmp);
100 KTsum+= theStrings->operator[](astring)->GetKineticTrack()->Get4Momentum();
101 }
102 }
103
106
110 G4bool NeedEnergyCorrector=
false;
111 do {
112 #ifdef debug_G4ExcitedStringDecay
113 G4cout<<
"New try No "<<attempts<<
" to hadronize strings"<<
G4endl;
114 #endif
115
117 theResult->clear();
118
119 attempts++;
120
122 NeedEnergyCorrector=false;
123
124 for ( unsigned int astring=0; astring < theStrings->size(); astring++)
125
126
127
128 {
129 #ifdef debug_G4ExcitedStringDecay
130 G4cout<<
"String No "<<astring+1<<
" Excited? "<<theStrings->operator[](astring)->IsExcited()<<
G4endl;
131
132 G4cout<<
"String No "<<astring+1<<
" 4Momentum "<<theStrings->operator[](astring)->Get4Momentum()
133 <<
" "<<theStrings->operator[](astring)->Get4Momentum().mag()<<
G4endl;
134 #endif
135
137 if ( theStrings->operator[](astring)->IsExcited() )
138 {
139 #ifdef debug_G4ExcitedStringDecay
140 G4cout<<
"Fragment String with partons: "
141 <<theStrings->operator[](astring)->GetLeftParton()->GetPDGcode() <<" "
142 <<theStrings->operator[](astring)->GetRightParton()->GetPDGcode()<<" "
143 <<
"Direction "<<theStrings->operator[](astring)->GetDirection()<<
G4endl;
144 #endif
145 generatedKineticTracks=FragmentString(*theStrings->operator[](astring));
146 #ifdef debug_G4ExcitedStringDecay
147 G4cout<<
"(G4ExcitedStringDecay) Number of produced hadrons = "
148 <<generatedKineticTracks->size()<<
G4endl;
149 #endif
150 } else {
151 #ifdef debug_G4ExcitedStringDecay
153 #endif
154 G4LorentzVector Mom=theStrings->operator[](astring)->GetKineticTrack()->Get4Momentum();
156 theStrings->operator[](astring)->GetKineticTrack()->GetDefinition(),
157 theStrings->operator[](astring)->GetKineticTrack()->GetFormationTime(),
159
160 aTrack->
SetPosition(theStrings->operator[](astring)->GetKineticTrack()->GetPosition());
161
162 #ifdef debug_G4ExcitedStringDecay
164 #endif
165
167 generatedKineticTracks->push_back(aTrack);
168 }
169
170 if (generatedKineticTracks == nullptr || generatedKineticTracks->size() == 0)
171 {
172
173 continue;
174 }
175
177 for ( unsigned int aTrack=0; aTrack<generatedKineticTracks->size();aTrack++)
178 {
179 #ifdef debug_G4ExcitedStringDecay
180 G4cout<<
"Prod part No. "<<aTrack+1<<
" "
182 <<(*generatedKineticTracks)[aTrack]->Get4Momentum()
183 <<(*generatedKineticTracks)[aTrack]->Get4Momentum().mag()<<
G4endl;
184 #endif
185
186 TrackDefinition = (*generatedKineticTracks)[aTrack]->GetDefinition();
187
189 {
196
197 (*generatedKineticTracks)[aTrack]->Set4Momentum(Tmp);
198
199 #ifdef debug_G4ExcitedStringDecay
200 G4cout<<
"Resonance *** "<<aTrack+1<<
" "
202 <<(*generatedKineticTracks)[aTrack]->Get4Momentum()
203 <<(*generatedKineticTracks)[aTrack]->Get4Momentum().mag()<<
G4endl;
204 #endif
205 }
206
207
208 theResult->push_back(generatedKineticTracks->operator[](aTrack));
209 KTsum1+= (*generatedKineticTracks)[aTrack]->Get4Momentum();
210 }
211 KTsecondaries+=KTsum1;
212
213 #ifdef debug_G4ExcitedStringDecay
214 G4cout <<
"String secondaries(" <<generatedKineticTracks->size()<<
")"<<
G4endl
215 <<
"Init string momentum: "<< theStrings->operator[](astring)->Get4Momentum()<<
G4endl
216 <<
"Final hadrons momentum: "<< KTsum1 <<
G4endl;
217 #endif
218
219 if ( KTsum1.e() > 0 &&
220 std::abs((KTsum1.e()-theStrings->operator[](astring)->Get4Momentum().e()) / KTsum1.e()) > perMillion )
221 {
222 NeedEnergyCorrector=true;
223 }
224
225 #ifdef debug_G4ExcitedStringDecay
226 G4cout<<
"NeedEnergyCorrection yes/no "<<NeedEnergyCorrector<<
G4endl;
227 #endif
228
229
230 delete generatedKineticTracks;
231 success=true;
232 }
233
234 if ( NeedEnergyCorrector ) success=EnergyAndMomentumCorrector(theResult, KTsum);
235 } while (!success && (attempts < 100));
236
237 for ( unsigned int aTrack=0; aTrack<theResult->size();aTrack++)
238 {
239 Ptmp=(*theResult)[aTrack]->Get4Momentum();
241 (*theResult)[aTrack]->Set4Momentum(Ptmp);
242 }
243
244 #ifdef debug_G4ExcitedStringDecay
245 G4cout<<
"End of the strings fragmentation (G4ExcitedStringDecay)"<<
G4endl;
246
248
249 for ( unsigned int aTrack=0; aTrack<theResult->size();aTrack++)
250 {
251 G4cout <<
" corrected tracks .. " << (*theResult)[aTrack]->GetDefinition()->GetParticleName()
252 <<" " << (*theResult)[aTrack]->Get4Momentum()
253 <<
" " << (*theResult)[aTrack]->Get4Momentum().mag()<<
G4endl;
254 KTsum1+= (*theResult)[aTrack]->Get4Momentum();
255 }
256
257 G4cout <<
"Needcorrector/success " << NeedEnergyCorrector <<
"/" << success
258 <<
", Corrected total 4 momentum " << KTsum1 <<
G4endl;
259 if ( ! success )
G4cout <<
"failed to correct E/p" <<
G4endl;
260
261 G4cout<<
"End of the Hadronization (G4ExcitedStringDecay)"<<
G4endl;
262 #endif
263
264 if (!success)
265 {
266 if (theResult->size() != 0)
267 {
269 theResult->clear();
270 delete theResult; theResult=0;
271 }
272 for ( unsigned int astring=0; astring < theStrings->size(); astring++)
273
274 {
275 if ( theStrings->operator[](astring)->IsExcited() )
276 {
277 Ptmp=theStrings->operator[](astring)->GetLeftParton()->Get4Momentum();
279 theStrings->operator[](astring)->GetLeftParton()->Set4Momentum(Ptmp);
280
281 Ptmp=theStrings->operator[](astring)->GetRightParton()->Get4Momentum();
283 theStrings->operator[](astring)->GetRightParton()->Set4Momentum(Ptmp);
284 }
285 else
286 {
287 Ptmp=theStrings->operator[](astring)->GetKineticTrack()->Get4Momentum();
289 theStrings->operator[](astring)->GetKineticTrack()->Set4Momentum(Ptmp);
290 }
291 }
292 }
293 return theResult;
294}
CLHEP::HepLorentzVector G4LorentzVector
G4GLOB_DLL std::ostream G4cout
HepLorentzVector & transform(const HepRotation &)
void SetPosition(const G4ThreeVector aPosition)
const G4ParticleDefinition * GetDefinition() const
G4bool IsShortLived() const
G4double GetPDGMass() const
G4double GetPDGWidth() const
const G4String & GetParticleName() const
G4double SampleMass(const G4double poleMass, const G4double gamma, const G4double minMass, const G4double maxMass) const
G4double GetMinimumMass(const G4ParticleDefinition *p) const