| Summary: | Found Duplicate if expressions | ||
|---|---|---|---|
| Product: | Geant4 | Reporter: | a.ramazani |
| Component: | persistency/ascii | Assignee: | Pedro.Arce |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | a.ramazani |
| Priority: | P5 | ||
| Version: | 9.4 | ||
| Hardware: | PC | ||
| OS: | Windows | ||
also at line 707:
G4FacetVertexType vertexType = ABSOLUTE;
if( solParam[jj+14] == 0 )
{
vertexType = ABSOLUTE;
}
else if( solParam[jj+14] == 0 )
{
vertexType = RELATIVE;
}
else
{
|
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 { ...