Import Geant4 3.1.0 source tree
This commit is contained in:
@@ -5,15 +5,16 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4DCtable.hh,v 1.2.2.1.2.1 1999/12/07 20:52:56 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
// $Id: G4DCtable.hh,v 1.5 2001/02/08 06:07:20 asaim Exp $
|
||||
// GEANT4 tag $Name: geant4-03-01 $
|
||||
//
|
||||
|
||||
#ifndef G4DCtable_H
|
||||
#define G4DCtable_H 1
|
||||
|
||||
#include "globals.hh"
|
||||
#include "g4rw/tvordvec.h"
|
||||
//#include "g4rw/tvordvec.h"
|
||||
#include "g4std/vector"
|
||||
|
||||
// class description:
|
||||
//
|
||||
@@ -38,12 +39,12 @@ class G4DCtable
|
||||
G4int GetCollectionID(G4String DCname);
|
||||
|
||||
private:
|
||||
G4RWTValOrderedVector<G4String> DMlist;
|
||||
G4RWTValOrderedVector<G4String> DClist;
|
||||
G4std::vector<G4String> DMlist;
|
||||
G4std::vector<G4String> DClist;
|
||||
|
||||
public:
|
||||
inline G4int entries() const
|
||||
{ return DClist.entries(); }
|
||||
{ return DClist.size(); }
|
||||
|
||||
};
|
||||
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4DMmessenger.hh,v 1.2.4.1 1999/12/07 20:52:56 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
// $Id: G4DMmessenger.hh,v 1.3 1999/12/15 14:53:51 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-01 $
|
||||
//
|
||||
|
||||
#ifndef G4DMmessenger_h
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4DigiManager.hh,v 1.2.2.1.2.1 1999/12/07 20:52:56 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
// $Id: G4DigiManager.hh,v 1.5 2001/02/08 06:07:21 asaim Exp $
|
||||
// GEANT4 tag $Name: geant4-03-01 $
|
||||
//
|
||||
|
||||
#ifndef G4DigiManager_h
|
||||
@@ -21,7 +21,8 @@ class G4DMmessenger;
|
||||
#include "G4DCtable.hh"
|
||||
class G4RunManager;
|
||||
class G4SDManager;
|
||||
#include "g4rw/tpordvec.h"
|
||||
//#include "g4rw/tpordvec.h"
|
||||
#include "g4std/vector"
|
||||
|
||||
// class description:
|
||||
//
|
||||
@@ -85,7 +86,7 @@ class G4DigiManager
|
||||
private:
|
||||
static G4DigiManager * fDManager;
|
||||
G4int verboseLevel;
|
||||
G4RWTPtrOrderedVector<G4VDigitizerModule> DMtable;
|
||||
G4std::vector<G4VDigitizerModule*> DMtable;
|
||||
G4DCtable* DCtable;
|
||||
G4DMmessenger* theMessenger;
|
||||
G4RunManager* runManager;
|
||||
@@ -97,7 +98,7 @@ class G4DigiManager
|
||||
inline G4int GetCollectionCapacity() const
|
||||
{ return DCtable->entries(); }
|
||||
inline G4int GetModuleCapacity() const
|
||||
{ return DMtable.entries(); }
|
||||
{ return DMtable.size(); }
|
||||
inline G4DCtable* GetDCtable() const
|
||||
{ return DCtable; }
|
||||
inline void RestoreDCtable(G4DCtable* dc)
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
// based on the Program) you indicate your acceptance of this statement,
|
||||
// and all its terms.
|
||||
//
|
||||
// $Id: G4VDigitizerModule.hh,v 1.2.2.1.2.1 1999/12/07 20:52:57 gunter Exp $
|
||||
// GEANT4 tag $Name: geant4-03-00 $
|
||||
// $Id: G4VDigitizerModule.hh,v 1.5 2001/02/08 06:07:21 asaim Exp $
|
||||
// GEANT4 tag $Name: geant4-03-01 $
|
||||
//
|
||||
|
||||
#ifndef G4VDigitizerModule_H
|
||||
@@ -15,7 +15,8 @@
|
||||
class G4DigiManager;
|
||||
class G4VDigiCollection;
|
||||
#include "globals.hh"
|
||||
#include "g4rw/tvordvec.h"
|
||||
//#include "g4rw/tvordvec.h"
|
||||
#include "g4std/vector"
|
||||
|
||||
// class description:
|
||||
//
|
||||
@@ -52,12 +53,12 @@ class G4VDigitizerModule
|
||||
protected:
|
||||
G4DigiManager* DigiManager;
|
||||
G4String moduleName;
|
||||
G4RWTValOrderedVector<G4String> collectionName;
|
||||
G4std::vector<G4String> collectionName;
|
||||
G4int verboseLevel;
|
||||
|
||||
public:
|
||||
inline G4int GetNumberOfCollections() const
|
||||
{ return collectionName.entries(); }
|
||||
{ return collectionName.size(); }
|
||||
inline G4String GetCollectionName(G4int i) const
|
||||
{ return collectionName[i]; }
|
||||
inline G4String GetName() const
|
||||
|
||||
Reference in New Issue
Block a user