64{
65 using std::setw;
67 const G4bool confirm =
true;
68 G4long oldprc = os.precision(prec);
69
70 auto itrecA= startA.cbegin();
71 auto itrecB= endB.cbegin();
72
73 os << "====================================================================="
75 os << " Size of individual change record: startA : " << startA.size()
76 <<
" endB : " << endB.size() <<
G4endl;
77 os << "====================================================================="
79
80 os << setw( 7 ) << "Change#" << " "
81 << setw( 4 ) << "Iter" << " "
82 << setw( 20 ) << "CodeLocation" << " "
83 << setw( prec+9 ) << "Length-A (start)" << " "
84 << setw( prec+9 ) << "Length-B (end)" << " "
86 os << "=====================================================================";
87
88 auto eventA = (*itrecA).GetCount();
89 auto eventB = (*itrecB).GetCount();
90
93
94 G4int maxEvent = std::max( startA[ startA.size() - 1 ].GetCount() ,
95 endB[ endB.size() - 1 ].GetCount() );
98
99 G4bool advanceA=
false, advanceB=
false;
100 do
101 {
102 advanceA= false;
103 advanceB= false;
104
105 if( ((
G4int)eventA>prevA) && ((
G4int)eventB>prevB) )
106 {
107 auto codeLocA= (*itrecA).GetLocation();
108
110 os << setw( 7 ) << eventA << " "
111 << setw( 4 ) << (*itrecA).GetIteration() << " "
112 << setw( 3 ) << codeLocA << " "
113 << setw( 15 )
115 << setw( prec+9 ) << (*itrecA).GetLength() << " "
116 << setw( prec+9 ) << (*itrecB).GetLength() << " ";
117 if( confirm )
118 {
119 os << setw( 4 ) << (*itrecB).GetIteration() << " "
120 << setw( 15 ) << (*itrecB).GetLocation();
121 }
122 }
123 else
124 {
125 if ( (
G4int)eventA > prevA )
126 {
127 auto codeLocA= (*itrecA).GetLocation();
129 os << setw( 7 ) << (*itrecA).GetCount() << " "
130 << setw( 4 ) << (*itrecA).GetIteration() << " "
131 << setw( 3 ) << codeLocA << " "
132 << setw( 15 )
134 << setw( prec+9 ) << (*itrecA).GetLength() << " "
135 << setw( prec+9 ) << " " << " ";
136 }
137 else
138 {
139
140 auto codeLocB= (*itrecB).GetLocation();
141
143 os << setw( 7 ) << eventB << " "
144 << setw( 4 ) << (*itrecB).GetIteration() << " "
145 << setw( 3 ) << codeLocB << " "
146 << setw( 15 )
148 << setw( prec+9 ) << " " << " "
149 << setw( prec+9 ) << (*itrecB).GetLength() << " " ;
150 }
151 }
152
153 prevA= eventA;
154 prevB= eventB;
155
156 auto nextA= itrecA;
157 auto nextB= itrecB;
158
159 G4int nextAct = maxEvent, nextBct = maxEvent;
160 ++nextA;
161 ++nextB;
162 if ( nextA != startA.end() ) { nextAct = (*nextA).GetCount(); }
163 if ( nextB != endB.end() ) { nextBct = (*nextB).GetCount(); }
164
165 isLastA= ( nextA >= startA.end() );
166 isLastB= ( nextB >= endB.end() );
167
168 advanceA= ( nextAct <= nextBct ) && !isLastA;
169 advanceB= ( nextBct <= nextAct ) && !isLastB;
170
171 if( advanceA )
172 {
173 ++itrecA;
174 eventA = isLastA ? maxEvent : (*itrecA).GetCount();
175 }
176
177 if( advanceB )
178 {
179 ++itrecB;
180 eventB = isLastB ? maxEvent : (*itrecB).GetCount();
181 }
182
183
184 if( isLastA != ( nextA == startA.end() ) )
185 {
187 os << " Checking isLastA= " << isLastA
188 << " vs expected : " << ( itrecA == startA.end() );
189 os <<
" BAD --- ERROR " <<
G4endl;
190 }
191 if( isLastB != ( nextB == endB.end() ) )
192 {
194 os << " Checking isLastB= " << isLastB
195 << " vs expected : " << ( itrecB == endB.end() );
196 os <<
" BAD --- ERROR " <<
G4endl;
197 }
198 } while ( ! ( isLastA && isLastB ) );
199
201 os.precision(oldprc);
202 return os;
203}
static const char * GetNameChangeLocation(EChangeLocation)