Import Geant4 1.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:28:20 +02:00
parent aaa409b6ee
commit ca1c8cb059
2995 changed files with 106830 additions and 299600 deletions
@@ -1,12 +1,12 @@
// This code implementation is the intellectual property of
// the RD44 GEANT4 collaboration.
// 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: G4ProcessVector.hh,v 1.2 1999/04/13 09:45:07 kurasige Exp $
// GEANT4 tag $Name: geant4-00-01 $
// $Id: G4ProcessVector.hh,v 1.3.2.1 1999/11/11 14:31:30 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
//
// ------------------------------------------------------------
@@ -16,6 +16,10 @@
// CERN, CN Division, ASD group
// History: first implementation, based on object model of
// 2nd December 1995, G.Cosmo
//
// Class Description
// This class is a container for pointers to physics process objects. Its
// functionality is derived from G4RWTPtrOrderedVector<T>.
// ------------------------------------------------------------
#ifndef G4ProcessVector_h
@@ -23,19 +27,19 @@
#include "globals.hh"
#include "G4ios.hh"
#include <rw/tpordvec.h>
#include "g4rw/tpordvec.h"
#include "G4VProcess.hh"
class G4ProcessVector : public RWTPtrOrderedVector<G4VProcess>
class G4ProcessVector : public G4RWTPtrOrderedVector<G4VProcess>
{
// Is a container for pointers to physics process objects. Its
// functionality is derived from RWTPtrOrderedVector<T>.
// functionality is derived from G4RWTPtrOrderedVector<T>.
public:
G4ProcessVector(size_t capac=RWDEFAULT_CAPACITY)
: RWTPtrOrderedVector<G4VProcess>(capac) {;}
G4ProcessVector(size_t capac=G4RWDEFAULT_CAPACITY)
: G4RWTPtrOrderedVector<G4VProcess>(capac) {;}
// Constructor.
virtual ~G4ProcessVector() {;}