Import Geant4 11.1.2 source tree
This commit is contained in:
@@ -78,14 +78,13 @@ class G4GDMLWriteSolids : public G4GDMLWriteMaterials
|
||||
|
||||
G4bool operator()(const G4ThreeVector& t1, const G4ThreeVector& t2) const
|
||||
{
|
||||
if(t1.x() < t2.x())
|
||||
return true;
|
||||
if(t1.x() < t2.x()) { return true; }
|
||||
if(t1.x() > t2.x()) { return false; }
|
||||
|
||||
if(t1.y() < t2.y())
|
||||
return true;
|
||||
if(t1.y() < t2.y()) { return true; }
|
||||
if(t1.y() > t2.y()) { return false; }
|
||||
|
||||
if(t1.z() < t2.z())
|
||||
return true;
|
||||
if(t1.z() < t2.z()) { return true; }
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user