Import Geant4 6.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:49:58 +02:00
parent 96686e0c8f
commit 1d812b78b1
4545 changed files with 24433 additions and 175005 deletions
+15 -3
View File
@@ -21,13 +21,14 @@
// ********************************************************************
//
//
// $Id: G4DCtable.hh,v 1.7 2003/06/16 17:12:45 gunter Exp $
// GEANT4 tag $Name: geant4-06-00 $
// $Id: G4DCtable.hh,v 1.8 2004/03/15 19:18:53 asaim Exp $
// GEANT4 tag $Name: geant4-06-01 $
//
#ifndef G4DCtable_H
#define G4DCtable_H 1
class G4VDigitizerModule;
#include "globals.hh"
//#include "g4rw/tvordvec.h"
#include <vector>
@@ -52,7 +53,8 @@ class G4DCtable
public:
G4int Registor(G4String SDname,G4String DCname);
G4int GetCollectionID(G4String DCname);
G4int GetCollectionID(G4String DCname) const;
G4int GetCollectionID(G4VDigitizerModule* aDM) const;
private:
std::vector<G4String> DMlist;
@@ -61,6 +63,16 @@ class G4DCtable
public:
inline G4int entries() const
{ return DClist.size(); }
inline G4String GetDMname(G4int i) const
{
if(i<0||i>entries()) return "***Not Defined***";
return DMlist[i];
}
inline G4String GetDCname(G4int i) const
{
if(i<0||i>entries()) return "***Not Defined***";
return DClist[i];
}
};
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4DMmessenger.hh,v 1.4 2001/07/11 10:08:31 gunter Exp $
// GEANT4 tag $Name: geant4-06-00 $
// GEANT4 tag $Name: geant4-05-02-patch-01 $
//
#ifndef G4DMmessenger_h
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4DigiManager.hh,v 1.7 2003/06/16 17:12:46 gunter Exp $
// GEANT4 tag $Name: geant4-06-00 $
// GEANT4 tag $Name: geant4-05-02-patch-01 $
//
#ifndef G4DigiManager_h
+1 -1
View File
@@ -22,7 +22,7 @@
//
//
// $Id: G4VDigitizerModule.hh,v 1.7 2003/06/16 17:12:47 gunter Exp $
// GEANT4 tag $Name: geant4-06-00 $
// GEANT4 tag $Name: geant4-05-02-patch-01 $
//
#ifndef G4VDigitizerModule_H