27 lines
724 B
C++
27 lines
724 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: G4ThreeVector.hh,v 1.2 1999/11/16 17:40:47 gcosmo Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
//
|
|
// G4ThreeVector class, typedef to CLHEP Hep3Vector
|
|
//
|
|
// ----------------------------------------------------------------------
|
|
|
|
#ifndef G4THREEVECTOR_HH
|
|
#define G4THREEVECTOR_HH
|
|
|
|
#include "globals.hh"
|
|
#include <CLHEP/Vector/ThreeVector.h>
|
|
|
|
typedef Hep3Vector G4ThreeVector;
|
|
|
|
#endif
|