32 lines
774 B
C++
32 lines
774 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: G4TrajectoryContainer.hh,v 1.5 1999/12/15 14:49:39 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
//
|
|
// G4TrajectoryContainer
|
|
//
|
|
|
|
#ifndef G4TrajectoryContainer_h
|
|
#define G4TrajectoryContainer_h 1
|
|
|
|
#include "G4VTrajectory.hh"
|
|
// G4RWTPtrOrderedVector
|
|
#include "g4rw/tpordvec.h"
|
|
|
|
// class description:
|
|
//
|
|
// This is a container of G4VTrajectory objects and the object of this
|
|
// container will be associated to G4Event object.
|
|
|
|
typedef G4RWTPtrOrderedVector<G4VTrajectory> G4TrajectoryContainer;
|
|
|
|
#endif
|
|
|
|
|