Import Geant4 4.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:39:52 +02:00
parent 921d3b1cda
commit 330b82b769
4524 changed files with 178689 additions and 43575 deletions
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4DataVector.hh,v 1.10 2001/09/17 08:17:56 kurasige Exp $
// GEANT4 tag $Name: geant4-04-00 $
// $Id: G4DataVector.hh,v 1.11 2002/04/19 07:10:31 gcosmo Exp $
// GEANT4 tag $Name: geant4-04-01 $
//
//
// ------------------------------------------------------------
@@ -60,7 +60,7 @@ class G4DataVector : public G4std::vector<G4double>
// Constructor given a 'capacity' defining the initial number of elements
// and initialising them to 'value'.
virtual ~G4DataVector(){;}
virtual ~G4DataVector();
// Empty destructor
inline void insertAt(size_t, const G4double&);
@@ -87,24 +87,6 @@ class G4DataVector : public G4std::vector<G4double>
friend G4std::ostream& operator<<(G4std::ostream&, const G4DataVector&);
};
inline
G4DataVector::G4DataVector()
: G4std::vector<G4double>()
{
}
inline
G4DataVector::G4DataVector(size_t capacity)
: G4std::vector<G4double>(capacity)
{
}
inline
G4DataVector::G4DataVector(size_t capacity, G4double value)
: G4std::vector<G4double>(capacity, value)
{
}
inline
void G4DataVector::insertAt(size_t pos, const G4double& a)
{