48 lines
1.2 KiB
C++
48 lines
1.2 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: GammaRayTelVisManager.hh,v 1.2 2000/11/15 20:27:39 flongo Exp $
|
|
// GEANT4 tag $Name: geant4-03-00 $
|
|
// ------------------------------------------------------------
|
|
// GEANT 4 class header file
|
|
// CERN Geneva Switzerland
|
|
//
|
|
// For information related to this code contact:
|
|
// CERN, IT Division, ASD group
|
|
//
|
|
// ------------ GammaRayTelVisManager ------
|
|
// by R.Giannitrapani, F.Longo & G.Santin (13 nov 2000)
|
|
//
|
|
// ************************************************************
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
#ifndef GammaRayTelVisManager_h
|
|
#define GammaRayTelVisManager_h 1
|
|
|
|
#ifdef G4VIS_USE
|
|
|
|
#include "G4VisManager.hh"
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
class GammaRayTelVisManager: public G4VisManager {
|
|
|
|
public:
|
|
|
|
GammaRayTelVisManager ();
|
|
|
|
private:
|
|
|
|
void RegisterGraphicsSystems ();
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|