View | Details | Raw Unified | Return to problem 1888
Collapse All | Expand All

(-)G4OpBoundaryProcess.cc.bak (-1 / +2 lines)
Lines 1080-1086 Link Here
1080
	      Done = (NewMomentum * theGlobalNormal <= 0.0);
1080
	      Done = (NewMomentum * theGlobalNormal <= 0.0);
1081
	   } 
1081
	   } 
1082
	   else {
1082
	   else {
1083
	      Done = (NewMomentum * theGlobalNormal >= 0.0);
1083
	      Done = (NewMomentum * theGlobalNormal >= -kCarTolerance);
1084
	      // JPmod - Following Nuno's suggestion to add a tolerance
1084
	   }
1085
	   }
1085
1086
1086
	} while (!Done);
1087
	} while (!Done);

Return to problem 1888