37 lines
917 B
C++
37 lines
917 B
C++
// This code implementation is the intellectual property of
|
|
// 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: ExN03SteppingVerbose.hh,v 1.4 2001/01/22 17:04:46 maire Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
class ExN03SteppingVerbose;
|
|
|
|
#ifndef ExN03SteppingVerbose_h
|
|
#define ExN03SteppingVerbose_h 1
|
|
|
|
#include "G4SteppingVerbose.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
class ExN03SteppingVerbose : public G4SteppingVerbose
|
|
{
|
|
public:
|
|
|
|
ExN03SteppingVerbose();
|
|
~ExN03SteppingVerbose();
|
|
|
|
void StepInfo();
|
|
void TrackingStarted();
|
|
|
|
};
|
|
|
|
#endif
|