83{
84
85
87
88 G4FragmentingString aString(theString);
90
91 #ifdef debug_LUNDfragmentation
92 G4cout<<
G4endl<<
"LUND StringFragmentation ------------------------------------"<<
G4endl;
96 <<
"------------------------------------"<<
G4endl;
103 #endif
104
105 G4KineticTrackVector * LeftVector(0);
106
107 if (!aString.IsAFourQuarkString() && !IsItFragmentable(&aString))
108 {
109 #ifdef debug_LUNDfragmentation
110 G4cout<<
"Non fragmentable - the string is converted to one hadron "<<
G4endl;
111 #endif
112
113
114
119
120 if ( LeftVector )
121 {
122 if ( LeftVector->size() > 0)
123 {
125 LeftVector->operator[](0)->SetPosition(theString.
GetPosition());
126 }
127 if (LeftVector->size() > 1)
128 {
129
131 LeftVector->operator[](1)->SetPosition(theString.
GetPosition());
132 }
133 }
134 return LeftVector;
135 }
136
137 #ifdef debug_LUNDfragmentation
139 #endif
140
141
142 LeftVector =new G4KineticTrackVector;
143 G4KineticTrackVector * RightVector=new G4KineticTrackVector;
144
145 G4bool success = Loop_toFragmentString(theString, LeftVector, RightVector);
146
147 if ( ! success )
148 {
149 std::for_each(LeftVector->begin(), LeftVector->end(), DeleteKineticTrack());
150 LeftVector->clear();
151 std::for_each(RightVector->begin(), RightVector->end(), DeleteKineticTrack());
152 delete RightVector;
153 return LeftVector;
154 }
155
156
157 while (!RightVector->empty())
158 {
159 LeftVector->push_back(RightVector->back());
160 RightVector->erase(RightVector->end()-1);
161 }
162 delete RightVector;
163
164 return LeftVector;
165}
G4GLOB_DLL std::ostream G4cout
G4double GetTimeOfCreation() const
const G4ThreeVector & GetPosition() const
G4int GetDirection(void) const
G4Parton * GetRightParton(void) const
G4Parton * GetLeftParton(void) const
G4LorentzVector Get4Momentum() const
const G4LorentzVector & Get4Momentum() const
G4KineticTrackVector * ProduceOneHadron(const G4ExcitedString *const theString)
void SetMinimalStringMass(const G4FragmentingString *const string)