Problem 1505

Summary: typo in class G4VKinkyStringDecay in method FragmentString KTV1->erase(KTV1->end()-1); instead of KTV2->erase(KTV2->end()-1);
Product: Geant4 Reporter: a.ramazani
Component: processes/hadronic/models/parton_string/hadronizationAssignee: Gunter.Folger
Status: RESOLVED WONTFIX    
Severity: trivial    
Priority: P5    
Version: 9.6   
Hardware: All   
OS: All   

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