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
@@ -91,7 +91,7 @@ public:
// destructor
virtual ~G4VTHitsVector();
// equivalence operator
G4int operator==(const this_type& rhs) const;
G4bool operator==(const this_type& rhs) const;
virtual void DrawAllHits();
virtual void PrintAllHits();
@@ -613,7 +613,7 @@ G4VTHitsVector<T, Vector_t>::~G4VTHitsVector()
//============================================================================//
template <typename T, typename Vector_t>
G4int G4VTHitsVector<T, Vector_t>::operator==(const G4VTHitsVector<T, Vector_t> &right) const
G4bool G4VTHitsVector<T, Vector_t>::operator==(const G4VTHitsVector<T, Vector_t> &right) const
{
return (collectionName==right.collectionName);
}