Import Geant4 9.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 17:01:34 +02:00
parent b1eb5424d2
commit e2d2f9810a
10384 changed files with 698580 additions and 628834 deletions
@@ -24,8 +24,7 @@
// ********************************************************************
//
//
// $Id: G4DAWNFILE.cc,v 1.11 2006-06-29 21:16:50 gunter Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
// Satoshi TANAKA
// DAWNFILE factory.
@@ -24,8 +24,7 @@
// ********************************************************************
//
//
// $Id: G4DAWNFILESceneHandler.cc,v 1.19 2010-11-11 01:13:42 akimura Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
// Satoshi TANAKA
// DAWNFILE scene.
@@ -138,7 +137,6 @@ G4DAWNFILESceneHandler::~G4DAWNFILESceneHandler ()
// close g4.prim
FREndModeling();
}
ClearStore (); // clear current scene
}
//-----
@@ -24,8 +24,7 @@
// ********************************************************************
//
//
// $Id: G4DAWNFILEViewer.cc,v 1.21 2010-11-11 01:13:42 akimura Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
// Satoshi TANAKA
// DAWNFILE view - opens window, hard copy, etc.
@@ -47,6 +46,7 @@
#include "G4VisExtent.hh"
#include "G4LogicalVolume.hh"
#include "G4VSolid.hh"
#include "G4PhysicalConstants.hh"
#include "G4FRConst.hh"
#include "G4DAWNFILE.hh"
@@ -190,7 +190,7 @@ void G4DAWNFILEViewer::ShowView( void )
G4cout << "File " << fSceneHandler.GetG4PrimFileName() ;
G4cout << " is generated." << G4endl;
G4cout << GetG4PrimViewerInvocation() << G4endl;
system( GetG4PrimViewerInvocation() );
(void) system( GetG4PrimViewerInvocation() );
} else { // no view, i.e., only file generation
G4cout << "File " << fSceneHandler.GetG4PrimFileName() ;
@@ -214,23 +214,24 @@ void G4DAWNFILEViewer::SendDrawingStyleToDAWNGUI( std::ostream& out )
G4int style = fVP.GetDrawingStyle();
enum { FR_WIREFRAME = 1, FR_WF_STORED = 2, FR_HID =3 , \
FR_HID2 = 4, FR_HID3 = 5, FR_DRAWING_MODE_END = 6 };
enum { FR_WIREFRAME_STYLE = 1, FR_WF_STORED_STYLE = 2,
FR_HID_STYLE = 3, FR_HID2_STYLE = 4,
FR_HID3_STYLE = 5, FR_DRAWING_MODE_END_STYLE = 6 };
switch( style )
{
case G4ViewParameters::wireframe:
out << FR_WIREFRAME << G4endl;
out << FR_WIREFRAME_STYLE << G4endl;
break;
case G4ViewParameters::hlr:
out << FR_HID2 << G4endl; // LINE
out << FR_HID2_STYLE << G4endl; // LINE
break;
case G4ViewParameters::hsr:
case G4ViewParameters::hlhsr:
out << FR_HID << G4endl; // SURFACE
out << FR_HID_STYLE << G4endl; // SURFACE
break;
default:
out << FR_WIREFRAME << G4endl;
out << FR_WIREFRAME_STYLE << G4endl;
break;
}
@@ -24,8 +24,7 @@
// ********************************************************************
//
//
// $Id: G4FRClientServer.cc,v 1.7 2010-11-11 01:13:42 akimura Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
// Satoshi TANAKA, Wed Jul 3 14:14:29 JST 1996
////////////////////////////////
@@ -24,8 +24,7 @@
// ********************************************************************
//
//
// $Id: G4FukuiRenderer.cc,v 1.10 2010-11-11 01:13:42 akimura Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
//
// Satoshi TANAKA
@@ -24,8 +24,7 @@
// ********************************************************************
//
//
// $Id: G4FukuiRendererSceneHandler.cc,v 1.15 2010-11-11 01:13:42 akimura Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
//
// Satoshi TANAKA, Fri Jun 28 11:34:24 JST 1996
@@ -128,8 +127,6 @@ G4FukuiRendererSceneHandler::~G4FukuiRendererSceneHandler ()
if (G4VisManager::GetVerbosity() >= G4VisManager::errors)
G4cout << "***** ~G4FukuiRendererSceneHandler" << G4endl;
#endif
ClearStore (); // clear current scene
}
//-----
@@ -24,8 +24,7 @@
// ********************************************************************
//
//
// $Id: G4FukuiRendererViewer.cc,v 1.12 2010-11-11 01:13:42 akimura Exp $
// GEANT4 tag $Name: not supported by cvs2svn $
// $Id$
//
//
// Satoshi TANAKA, Fri Jun 28 12:09:11 JST 1996
@@ -52,6 +51,7 @@
#include "G4VisExtent.hh"
#include "G4LogicalVolume.hh"
#include "G4VSolid.hh"
#include "G4PhysicalConstants.hh"
#include "G4FRConst.hh"
#include "G4FukuiRenderer.hh"