32 lines
513 B
C++
32 lines
513 B
C++
// Geant4 simulation for MuSR
|
|
// AUTHOR: Toni SHIROKA, Paul Scherrer Institut, PSI
|
|
// DATE : 2008-05
|
|
//
|
|
|
|
#ifndef lem4VisManager_h
|
|
#define lem4VisManager_h 1
|
|
|
|
#ifdef G4VIS_USE
|
|
|
|
#include "G4VisManager.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
class lem4VisManager: public G4VisManager {
|
|
|
|
public:
|
|
|
|
lem4VisManager ();
|
|
|
|
private:
|
|
|
|
void RegisterGraphicsSystems ();
|
|
|
|
};
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo......
|
|
|
|
#endif
|
|
|
|
#endif
|