Import Geant4 11.1.2 source tree

This commit is contained in:
Gabriele Cosmo
2023-06-19 17:17:14 +02:00
parent 84a556a9dc
commit aef78ca386
309 changed files with 35572 additions and 34678 deletions
@@ -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;
}