Files
geant4/source/processes/hadronic/util/include/G4ReactionProductVector.hh
T
2016-06-01 15:25:35 +02:00

38 lines
1.1 KiB
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: G4ReactionProductVector.hh,v 2.1 1998/07/13 17:27:24 urbi Exp $
// GEANT4 tag $Name: geant4-00 $
//
//
// For information related to this code contact:
// CERN, CN Division, ASD group
// History: first implementation, alternative to G4FastVector
// less fast, but it has variable array length and checks boundaries
// 26th September, Chr. Voelcker
// ------------------------------------------------------------
#ifndef G4ReactionProductVector_h
#define G4ReactionProductVector_h 1
#include "globals.hh"
#include "G4ios.hh"
class G4ReactionProduct;
#include <rw/tpordvec.h>
// #ifdef STL
// //in future use STL vector as container of reaction products ...
// typedef Vector<G4ReactionProduct> G4ReactionProductVector;
// #elseifdef RWT
typedef RWTPtrOrderedVector<G4ReactionProduct> G4ReactionProductVector;
// #endif
#endif