28 lines
638 B
C++
28 lines
638 B
C++
// 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: G4TrajectoryContainer.hh,v 2.0 1998/07/02 16:53:34 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
//
|
|
// G4TrajectoryContainer
|
|
//
|
|
|
|
#ifndef G4TrajectoryContainer_h
|
|
#define G4TrajectoryContainer_h 1
|
|
|
|
// TrackManagement
|
|
#include "G4Trajectory.hh"
|
|
// RWTPtrOrderedVector
|
|
#include <rw/tpordvec.h>
|
|
|
|
typedef RWTPtrOrderedVector<G4Trajectory> G4TrajectoryContainer;
|
|
|
|
#endif
|
|
|
|
|