25 lines
687 B
C++
25 lines
687 B
C++
// This code implementation is the intellectual property of
|
|
// the 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: G4DataVector.hh,v 1.4 1999/11/23 15:00:03 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
//
|
|
// ------------------------------------------------------------
|
|
// GEANT 4 class header file
|
|
// ------------------------------------------------------------
|
|
|
|
#ifndef G4DataVector_h
|
|
#define G4DataVector_h 1
|
|
|
|
#include "globals.hh"
|
|
#include "g4rw/tvordvec.h"
|
|
|
|
typedef G4RWTValOrderedVector<G4double> G4DataVector;
|
|
|
|
#endif
|