This is the first version of the muSR simulation code (musrSim) based on the merged codes of Kamil Sedlak and Toni Shiroka. It should be a running version of the simulation code, however it has not been very well tested, therefore it will probably need some further development.
27 lines
547 B
C++
27 lines
547 B
C++
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
class musrSteppingVerbose;
|
|
|
|
#ifndef musrSteppingVerbose_h
|
|
#define musrSteppingVerbose_h 1
|
|
|
|
#include "G4SteppingVerbose.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
class musrSteppingVerbose : public G4SteppingVerbose
|
|
{
|
|
public:
|
|
|
|
musrSteppingVerbose();
|
|
~musrSteppingVerbose();
|
|
|
|
void StepInfo();
|
|
void TrackingStarted();
|
|
|
|
};
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#endif
|