Import Geant4 10.1.0 source tree
This commit is contained in:
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4DAWNFILE.cc 66373 2012-12-18 09:41:34Z gcosmo $
|
||||
// $Id: G4DAWNFILE.cc 78838 2014-01-28 08:46:17Z gcosmo $
|
||||
//
|
||||
// Satoshi TANAKA
|
||||
// DAWNFILE factory.
|
||||
@@ -50,7 +50,7 @@ G4DAWNFILE::G4DAWNFILE ():
|
||||
G4VGraphicsSystem ("DAWNFILE",
|
||||
"DAWNFILE",
|
||||
FR_DAWNFILE_FEATURES,
|
||||
G4VGraphicsSystem::threeD)
|
||||
G4VGraphicsSystem::fileWriter)
|
||||
{}
|
||||
|
||||
//----- G4DAWNFILE, destructor
|
||||
|
||||
@@ -24,7 +24,7 @@
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4FRClientServer.cc 66870 2013-01-14 23:38:59Z adotti $
|
||||
// $Id: G4FRClientServer.cc 79795 2014-03-14 10:13:31Z gcosmo $
|
||||
//
|
||||
// Satoshi TANAKA, Wed Jul 3 14:14:29 JST 1996
|
||||
////////////////////////////////
|
||||
@@ -47,8 +47,6 @@
|
||||
const char DEFAULT_SUN_PATH[] = "FR_TMP3" ;
|
||||
const int DEFAULT_PORT_NUMBER = 40701 ;
|
||||
//const char FR_ENV_SERVER_HOST_NAME[] = "G4DAWN_HOST_NAME" ; // moved to .hh
|
||||
const int MAX_BINDING_TRIAL = 10 ;
|
||||
const int BINDING_TRIAL_INTERVAL = 5 ;
|
||||
const int MAX_CONNECT_TRIAL = 10 ;
|
||||
const char FR_DEFAULT_HOST_NAME[] = "localhost" ;
|
||||
|
||||
|
||||
@@ -0,0 +1,45 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VisFeaturesOfDAWNFILE.cc 66264 2012-12-14 10:17:44Z allison $
|
||||
//
|
||||
#include "G4VisFeaturesOfDAWNFILE.hh"
|
||||
|
||||
G4String G4VisFeaturesOfDAWNFILE () {
|
||||
return
|
||||
"High quality technical renderer."
|
||||
"\n Features: exact hidden line, hidden surface algorithms."
|
||||
"\n high (unlimited) resolution."
|
||||
"\n renders to PostScript for viewing and/or hardcopy."
|
||||
"\n remote rendering."
|
||||
"\n off-line rendering."
|
||||
"\n graphical user interface."
|
||||
"\n connection via g4.prim file to Fukui Renderer DAWN etc."
|
||||
"\n Disadvantages: compute intensive, takes time (use a fast graphics"
|
||||
"\n system, such as OpenGL, to select view, then copy"
|
||||
"\n view parameters to this renderer:"
|
||||
"\n \"/vis/viewer/set/all <OpenGL-view>\".";
|
||||
}
|
||||
@@ -0,0 +1,45 @@
|
||||
//
|
||||
// ********************************************************************
|
||||
// * 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. *
|
||||
// ********************************************************************
|
||||
//
|
||||
//
|
||||
// $Id: G4VisFeaturesOfFukuiRenderer.cc 66264 2012-12-14 10:17:44Z allison $
|
||||
//
|
||||
//
|
||||
|
||||
#include "G4VisFeaturesOfFukuiRenderer.hh"
|
||||
|
||||
G4String G4VisFeaturesOfFukuiRenderer () {
|
||||
return
|
||||
"High quality technical renderer."
|
||||
"\n Features: exact hidden line, hidden surface algorithms."
|
||||
"\n high (unlimited) resolution."
|
||||
"\n renders to PostScript for viewing and/or hardcopy."
|
||||
"\n remote rendering."
|
||||
"\n off-line rendering."
|
||||
"\n graphical user interface."
|
||||
"\n Disadvantages: compute intensive, takes time (use a fast graphics"
|
||||
"\n system, such as OpenGL, to select view, then copy"
|
||||
"\n to this renderer - /vis~/copy/view, /vis~/set/view).";
|
||||
}
|
||||
Reference in New Issue
Block a user