157 lines
3.2 KiB
C++
157 lines
3.2 KiB
C++
//
|
|
// ********************************************************************
|
|
// * DISCLAIMER *
|
|
// * *
|
|
// * The following disclaimer summarizes all the specific disclaimers *
|
|
// * of contributors to this software. The specific disclaimers,which *
|
|
// * govern, are listed with their locations in: *
|
|
// * http://cern.ch/geant4/license *
|
|
// * *
|
|
// * Neither the authors of this software system, nor their employing *
|
|
// * institutes,nor the agencies providing financial support for this *
|
|
// * work make any representation or warranty, express or implied, *
|
|
// * regarding this software system or assume any liability for its *
|
|
// * use. *
|
|
// * *
|
|
// * 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. *
|
|
// ********************************************************************
|
|
//
|
|
// This code implementation is the intellectual property of
|
|
// the RD44 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.
|
|
//
|
|
|
|
// 2002 march, updated for geant4.4.0, Hajime Yoshida
|
|
//
|
|
//
|
|
// John Allison 24th January 1998.
|
|
|
|
|
|
#ifdef G4VIS_USE
|
|
|
|
#include "MomoVisManager.hh"
|
|
|
|
// Supported drivers...
|
|
|
|
#ifdef G4VIS_USE_DAWN
|
|
#include "G4FukuiRenderer.hh"
|
|
#endif
|
|
|
|
#ifdef G4VIS_USE_DAWNFILE
|
|
#include "G4DAWNFILE.hh"
|
|
#endif
|
|
|
|
#ifdef G4VIS_USE_OPENGLX
|
|
#include "G4OpenGLImmediateX.hh"
|
|
#include "G4OpenGLStoredX.hh"
|
|
#endif
|
|
|
|
|
|
#ifdef G4VIS_USE_VRML
|
|
#include "G4VRML1.hh"
|
|
// #include "G4VRML2.hh"
|
|
#endif
|
|
|
|
#ifdef G4VIS_USE_VRMLFILE
|
|
#include "G4VRML1File.hh"
|
|
//#include "G4VRML2File.hh"
|
|
#endif
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
MomoVisManager::MomoVisManager () {}
|
|
|
|
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|
|
|
void MomoVisManager::RegisterGraphicsSystems () {
|
|
|
|
#ifdef G4VIS_USE_DAWN
|
|
RegisterGraphicsSystem (new G4FukuiRenderer);
|
|
#endif
|
|
|
|
#ifdef G4VIS_USE_DAWNFILE
|
|
RegisterGraphicsSystem (new G4DAWNFILE);
|
|
#endif
|
|
|
|
|
|
#ifdef G4VIS_USE_OPENGLX
|
|
RegisterGraphicsSystem (new G4OpenGLImmediateX);
|
|
RegisterGraphicsSystem (new G4OpenGLStoredX);
|
|
#endif
|
|
|
|
|
|
#ifdef G4VIS_USE_VRML
|
|
RegisterGraphicsSystem (new G4VRML1);
|
|
// RegisterGraphicsSystem (new G4VRML2);
|
|
#endif
|
|
|
|
#ifdef G4VIS_USE_VRMLFILE
|
|
RegisterGraphicsSystem (new G4VRML1File);
|
|
// RegisterGraphicsSystem (new G4VRML2File);
|
|
#endif
|
|
|
|
if (fVerbose > 0) {
|
|
G4cout <<
|
|
"\nYou have successfully chosen to use the following graphics systems."
|
|
<< G4endl;
|
|
PrintAvailableGraphicsSystems ();
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|