Import Geant4 4.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:18:25 +02:00
parent 36c080dca6
commit 921d3b1cda
3990 changed files with 185376 additions and 82884 deletions
@@ -14,15 +14,15 @@
// * use. *
// * *
// * This code implementation is the intellectual property of the *
// * GEANT4 collaboration. *
// * authors in 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: G4DynamicParticleVector.hh,v 1.3.8.2 2001/06/28 20:20:10 gunter Exp $
// GEANT4 tag $Name: $
// $Id: G4DynamicParticleVector.hh,v 1.8 2001/10/06 06:53:06 hpw Exp $
// GEANT4 tag $Name: geant4-04-00 $
//
//
// History: first implementation, alternative to G4FastVector
@@ -36,16 +36,10 @@
#include "globals.hh"
#include "G4ios.hh"
class G4DynamicParticle;
#include "g4rw/tpordvec.h"
#include "G4DynamicParticle.hh"
#include "g4std/vector"
// #ifdef STL
// //in future use STL vector as container of dynamic particles ...
// typedef Vector<G4DynamicParticle> G4DynamicParticleVector;
// #elseifdef RWT
typedef G4RWTPtrOrderedVector<G4DynamicParticle> G4DynamicParticleVector;
// #endif
typedef G4std::vector<G4DynamicParticle *> G4DynamicParticleVector;
struct DeleteDynamicParticle {void operator()(G4DynamicParticle*aP) {delete aP;}};
#endif