Import Geant4 5.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 16:57:27 +02:00
parent 330b82b769
commit 37fff30d2e
5733 changed files with 263867 additions and 74574 deletions
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: Em4RunAction.hh,v 1.9 2002/05/29 15:32:28 maire Exp $
// GEANT4 tag $Name: geant4-04-01 $
// $Id: Em4RunAction.hh,v 1.10 2002/12/10 17:20:30 maire Exp $
// GEANT4 tag $Name: geant4-05-00 $
//
//
@@ -40,8 +40,10 @@
class G4Run;
#ifndef G4NOHIST
namespace AIDA {
class ITree;
class IHistogram1D;
}
#endif
class Em4RunAction : public G4UserRunAction
@@ -55,7 +57,7 @@ class Em4RunAction : public G4UserRunAction
void EndOfRunAction(const G4Run*);
#ifndef G4NOHIST
IHistogram1D* GetHisto(G4int id) {return histo[id];}
AIDA::IHistogram1D* GetHisto(G4int id) {return histo[id];}
#endif
private:
@@ -63,8 +65,8 @@ class Em4RunAction : public G4UserRunAction
private:
#ifndef G4NOHIST
ITree* tree; // the tree should only be deleted at the end
IHistogram1D* histo[1]; // (after writing the histos to file)
AIDA::ITree* tree; //the tree should only be deleted at the end
AIDA::IHistogram1D* histo[1]; // (after writing the histos to file)
#endif
};