64 lines
1.5 KiB
C++
64 lines
1.5 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: G4SteppingVerbose.hh,v 1.6.6.1 1999/12/07 20:53:05 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-00 $
|
|
//
|
|
//
|
|
//---------------------------------------------------------------
|
|
//
|
|
// G4SteppingVerbose.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 G4SteppingVerbose;
|
|
|
|
#ifndef G4SteppingVerose_h
|
|
#define G4SteppingVerose_h 1
|
|
|
|
#include "G4VSteppingVerbose.hh"
|
|
|
|
class G4SteppingVerbose : public G4VSteppingVerbose {
|
|
public:
|
|
// Constructor/Destructor
|
|
G4SteppingVerbose();
|
|
~G4SteppingVerbose();
|
|
//
|
|
void NewStep();
|
|
void AtRestDoItInvoked();
|
|
void AlongStepDoItAllDone();
|
|
void PostStepDoItAllDone();
|
|
void AlongStepDoItOneByOne();
|
|
void PostStepDoItOneByOne();
|
|
void StepInfo();
|
|
void TrackingStarted();
|
|
void DPSLStarted();
|
|
void DPSLUserLimit();
|
|
void DPSLPostStep();
|
|
void DPSLAlongStep();
|
|
// void DPSLAlongStepDoItOneByOne();
|
|
// void DPSLPostStepDoItOneByOne();
|
|
void VerboseTrack();
|
|
void VerboseParticleChange();
|
|
void ShowStep() const;
|
|
//
|
|
|
|
};
|
|
|
|
|
|
#endif
|
|
|