Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
+8 -6
View File
@@ -23,15 +23,15 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
//
//
// Author: Makoto Asai (SLAC)
// --------------------------------------------------------------------
#include "G4TrajectoryContainer.hh"
G4Allocator<G4TrajectoryContainer>*& aTrajectoryContainerAllocator()
{
G4ThreadLocalStatic G4Allocator<G4TrajectoryContainer>* _instance = nullptr;
return _instance;
G4ThreadLocalStatic G4Allocator<G4TrajectoryContainer>* _instance = nullptr;
return _instance;
}
G4TrajectoryContainer::G4TrajectoryContainer()
@@ -45,12 +45,14 @@ G4TrajectoryContainer::~G4TrajectoryContainer()
delete vect;
}
G4bool G4TrajectoryContainer::operator==(const G4TrajectoryContainer& right) const
G4bool
G4TrajectoryContainer::operator==(const G4TrajectoryContainer& right) const
{
return (this==&right);
}
G4bool G4TrajectoryContainer::operator!=(const G4TrajectoryContainer& right) const
G4bool
G4TrajectoryContainer::operator!=(const G4TrajectoryContainer& right) const
{
return (this!=&right);
}