// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * 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. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // 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