48 lines
1.1 KiB
C++
48 lines
1.1 KiB
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: Em4SteppingVerbose.hh,v 1.1.4.1 1999/12/07 20:47:06 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
//---------------------------------------------------------------
|
|
//
|
|
// Em4SteppingVerbose.hh
|
|
//
|
|
// Description:
|
|
// This class manages the vervose outputs in G4SteppingManager.
|
|
//
|
|
//
|
|
// Contact:
|
|
// Questions and comments to this code should be sent to
|
|
// Katsuya Amako (e-mail: Katsuya.Amako@kek.jp)
|
|
// Takashi Sasaki (e-mail: Takashi.Sasaki@kek.jp)
|
|
//
|
|
//---------------------------------------------------------------
|
|
|
|
class Em4SteppingVerbose;
|
|
|
|
#ifndef Em4SteppingVerbose_h
|
|
#define Em4SteppingVerbose_h 1
|
|
|
|
#include "G4SteppingVerbose.hh"
|
|
|
|
class Em4SteppingVerbose : public G4SteppingVerbose {
|
|
public:
|
|
// Constructor/Destructor
|
|
Em4SteppingVerbose();
|
|
~Em4SteppingVerbose();
|
|
//
|
|
void StepInfo();
|
|
void TrackingStarted();
|
|
//
|
|
|
|
|
|
};
|
|
|
|
#endif
|