Problem 1270 - Found Duplicate if expressions
Summary: Found Duplicate if expressions
Status: RESOLVED FIXED
Alias: None
Product: Geant4
Classification: Unclassified
Component: persistency/ascii (show other problems)
Version: 9.4
Hardware: PC Windows
: P5 normal
Assignee: Pedro.Arce
URL:
Depends on:
Blocks:
 
Reported: 2011-12-14 06:48 CET by a.ramazani
Modified: 2012-01-31 11:48 CET (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this problem.
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 
	{