Problem 1270

Summary: Found Duplicate if expressions
Product: Geant4 Reporter: a.ramazani
Component: persistency/asciiAssignee: Pedro.Arce
Status: RESOLVED FIXED    
Severity: normal CC: a.ramazani
Priority: P5    
Version: 9.4   
Hardware: PC   
OS: Windows   

Description a.ramazani 2011-12-14 06:48:33 CET
Found Duplicate if expressions:

at file:
D:\g4\geant4.9.4.p03\source\persistency\ascii\src\G4tgbVolume.cc

line 680 :
	G4FacetVertexType vertexType = ABSOLUTE;
	if( solParam[jj+11] == 0 ) 
	{
	  vertexType = ABSOLUTE;
	} 
	else if( solParam[jj+11] == 0 ) 
	{
	  vertexType = RELATIVE;
	} 
	else 
	{
...
Comment 1 a.ramazani 2011-12-14 06:51:00 CET
also at line 707:

G4FacetVertexType vertexType = ABSOLUTE;
	if( solParam[jj+14] == 0 ) 
	{
	  vertexType = ABSOLUTE;
	}
	else if( solParam[jj+14] == 0 ) 
	{
	  vertexType = RELATIVE;
	} 
	else 
	{