Import Geant4 10.7.0 source tree

This commit is contained in:
Gabriele Cosmo
2020-12-04 12:30:43 +01:00
parent 67ba86d073
commit dab42d2018
3770 changed files with 226369 additions and 286486 deletions
+12 -14
View File
@@ -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