Import Geant4 10.6.0 source tree
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user