43 lines
1001 B
C++
43 lines
1001 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.3 2000/02/28 18:09:58 maire Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
//
|
|
//---------------------------------------------------------------
|
|
//
|
|
// ExN03SteppingVerbose.hh
|
|
//
|
|
// Description:
|
|
// This class manages the verbose outputs in G4SteppingManager.
|
|
// It inherits from G4SteppingVerbose
|
|
//
|
|
//---------------------------------------------------------------
|
|
|
|
class ExN03SteppingVerbose;
|
|
|
|
#ifndef ExN03SteppingVerbose_h
|
|
#define ExN03SteppingVerbose_h 1
|
|
|
|
#include "G4SteppingVerbose.hh"
|
|
|
|
class ExN03SteppingVerbose : public G4SteppingVerbose {
|
|
public:
|
|
// Constructor/Destructor
|
|
ExN03SteppingVerbose();
|
|
~ExN03SteppingVerbose();
|
|
//
|
|
void StepInfo();
|
|
void TrackingStarted();
|
|
//
|
|
|
|
|
|
};
|
|
|
|
#endif
|