Import Geant4 0.0.0 source tree
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
// This code implementation is the intellectual property of
|
||||
// the RD44 GEANT4 collaboration.
|
||||
//
|
||||
// By copying, distributing or modifying the Program (or any work
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4OrderedTable.hh,v 2.0 1998/07/02 17:32:46 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-00 $
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
//
|
||||
// This class is setting up an ordered collection of
|
||||
// ordered vectors of <G4double>
|
||||
// 30 September 1996, M.Maire
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
|
||||
#ifndef G4OrderedTable_h
|
||||
#define G4OrderedTable_h 1
|
||||
|
||||
#include "globals.hh"
|
||||
#include <rw/tvordvec.h>
|
||||
#include <rw/tpordvec.h>
|
||||
|
||||
class G4ValVector : public RWTValOrderedVector<G4double>
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
G4ValVector(size_t capac=RWDEFAULT_CAPACITY)
|
||||
: RWTValOrderedVector<G4double>(capac) {;}
|
||||
|
||||
virtual ~G4ValVector() {;}
|
||||
|
||||
|
||||
G4bool operator==(const G4ValVector &right) const
|
||||
{
|
||||
return (this == (G4ValVector *) &right);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
typedef RWTPtrOrderedVector<G4ValVector> G4OrderedTable;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user