Import Geant4 9.1.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 15:37:50 +02:00
parent a8e9364cea
commit 96c8bcd0af
6923 changed files with 198390 additions and 41849 deletions
@@ -23,8 +23,8 @@
// * acceptance of all terms of the Geant4 Software license. *
// ********************************************************************
//
// $Id: TrackingAction.hh,v 1.2 2007/01/23 13:34:19 maire Exp $
// GEANT4 tag $Name: geant4-09-00 $
// $Id: TrackingAction.hh,v 1.3 2007/10/29 17:09:53 maire Exp $
// GEANT4 tag $Name: geant4-09-01 $
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
@@ -35,21 +35,27 @@
#include "G4UserTrackingAction.hh"
#include "globals.hh"
class SteppingAction;
class RunAction;
class HistoManager;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
class TrackingAction : public G4UserTrackingAction {
public:
TrackingAction(SteppingAction*);
TrackingAction(RunAction*, HistoManager*);
~TrackingAction();
void PreUserTrackingAction(const G4Track*);
void PostUserTrackingAction(const G4Track*);
void AddEdepCavity(G4double de) { EdepCavity += de;};
private:
SteppingAction* stepAction;
RunAction* runAction;
HistoManager* histoManager;
G4double EdepCavity;
};
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......