Import Geant4 10.7.0 source tree
This commit is contained in:
@@ -23,26 +23,24 @@
|
||||
// * acceptance of all terms of the Geant4 Software license. *
|
||||
// ********************************************************************
|
||||
//
|
||||
// G4TrackFastVector
|
||||
//
|
||||
// Description:
|
||||
//
|
||||
//
|
||||
// ------------------------------------------------------------
|
||||
// GEANT 4 class header file
|
||||
//
|
||||
// History: first implementation, based on object model of
|
||||
// 8 Mar 1997, H.Kurashige
|
||||
// ------------------------------------------------------------
|
||||
// G4TrackFastVector contains pointers to G4Track objects which are
|
||||
// generated by either primary or secondary interactions.
|
||||
|
||||
#ifndef G4TrackFastVector_h
|
||||
#define G4TrackFastVector_h 1
|
||||
// Author: Hisaya Kurashige, 8 March 1997
|
||||
// --------------------------------------------------------------------
|
||||
#ifndef G4TrackFastVector_hh
|
||||
#define G4TrackFastVector_hh 1
|
||||
|
||||
class G4Track;
|
||||
#include "G4FastVector.hh"
|
||||
|
||||
class G4Track;
|
||||
|
||||
const G4int G4TrackFastVectorSize = 512;
|
||||
typedef G4FastVector<G4Track,G4TrackFastVectorSize> G4TrackFastVector;
|
||||
// Contains pointers to G4Track objects which are
|
||||
// generated by either primary or secondary interaction.
|
||||
|
||||
using G4TrackFastVector = G4FastVector<G4Track, G4TrackFastVectorSize>;
|
||||
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user