40 lines
1.1 KiB
C++
40 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: Em2SteppingVerbose.hh,v 1.4 2000/12/06 14:12:16 maire Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
//
|
|
// This class manages the verbose outputs in G4SteppingManager.
|
|
// It inherits from G4SteppingVerbose.
|
|
// It shows how to extract informations during the tracking of a particle.
|
|
//
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
|
|
|
|
class Em2SteppingVerbose;
|
|
|
|
#ifndef Em2SteppingVerbose_h
|
|
#define Em2SteppingVerbose_h 1
|
|
|
|
#include "G4SteppingVerbose.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo.....
|
|
|
|
class Em2SteppingVerbose : public G4SteppingVerbose {
|
|
|
|
public:
|
|
|
|
Em2SteppingVerbose();
|
|
~Em2SteppingVerbose();
|
|
|
|
void StepInfo();
|
|
void TrackingStarted();
|
|
|
|
};
|
|
|
|
#endif
|