Import Geant4 10.5.1 source tree

This commit is contained in:
Gabriele Cosmo
2019-04-17 10:39:02 +02:00
parent a7fdc52004
commit 28a70706e0
661 changed files with 55791 additions and 106984 deletions
+4 -1
View File
@@ -19,6 +19,9 @@ committal in the CVS repository !
History file for graphics_reps category
---------------------------------------
31 January 2019 Ivana Hrivnacova (greps-V10-04-09)
- Merged GitHub PR #4: all Boolean operators now return G4bool.
19 October 2018 John Allison (greps-V10-04-08)
- G4VisExtent: Add GetNullExtent.
@@ -696,7 +699,7 @@ June 11, 2012 G.Cosmo (greps-V09-05-09)
- Replaced M_PI with CLHEP's pi.
8th December 2004 G.Cosmo (greps-V06-02-03)
- HepPolyhedron, BooleanProcessor: replaced occurences of HepStd::
- HepPolyhedron, BooleanProcessor: replaced occurrences of HepStd::
with std::
- Added inclusion of <cmath> in HepPolyhedron.cc.
+4 -4
View File
@@ -52,10 +52,10 @@ public:
// Operators
Key operator()() const {return fMyKey;}
bool operator==(const G4TypeKey& rhs) const {return fMyKey == rhs.fMyKey;}
bool operator!=(const G4TypeKey& rhs) const {return !operator==(rhs);}
bool operator<(const G4TypeKey& rhs) const {return fMyKey < rhs.fMyKey;}
bool operator>(const G4TypeKey& rhs) const {return fMyKey > rhs.fMyKey;}
G4bool operator==(const G4TypeKey& rhs) const {return fMyKey == rhs.fMyKey;}
G4bool operator!=(const G4TypeKey& rhs) const {return !operator==(rhs);}
G4bool operator<(const G4TypeKey& rhs) const {return fMyKey < rhs.fMyKey;}
G4bool operator>(const G4TypeKey& rhs) const {return fMyKey > rhs.fMyKey;}
friend std::ostream& operator<<(std::ostream& out, const G4TypeKey& key){
return out<< key.fMyKey;