Problem 1505 - typo in class G4VKinkyStringDecay in method FragmentString KTV1->erase(KTV1->end()-1); instead of KTV2->erase(KTV2->end()-1);
Summary: typo in class G4VKinkyStringDecay in method FragmentString KTV1->erase(KTV1->...
Status: RESOLVED WONTFIX
Alias: None
Product: Geant4
Classification: Unclassified
Component: processes/hadronic/models/parton_string/hadronization (show other problems)
Version: 9.6
Hardware: All All
: P5 trivial
Assignee: Gunter.Folger
URL:
Depends on:
Blocks:
 
Reported: 2013-07-26 22:03 CEST by a.ramazani
Modified: 2013-09-02 14:20 CEST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
Description a.ramazani 2013-07-26 22:03:42 CEST
\source\processes\hadronic\models\parton_string\hadronization\src\G4VKinkyStringDecay.cc
at the end of: 
G4KineticTrackVector* G4VKinkyStringDecay::FragmentString(const G4ExcitedString& String)


Error:
	     KTV1->erase(KTV1->end()-1);

Correct:
	     KTV2->erase(KTV2->end()-1);
Comment 1 Gunter.Folger 2013-09-02 14:20:40 CEST
Thanks for reporting, however this code so far is unused.

Gunter