Import Geant4 0.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-01 15:25:35 +02:00
parent 54d6b71f95
commit b97f8d0df7
3237 changed files with 807095 additions and 0 deletions
@@ -0,0 +1,40 @@
// 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.
//
// $Id: G4VRML1View.hh,v 2.3 1998/11/09 19:32:59 allison Exp $
// GEANT4 tag $Name: geant4-00 $
//
// G4VRML1View.hh
// Satoshi Tanaka & Yasuhide Sawada
#ifdef G4VIS_BUILD_VRML_DRIVER
#ifndef G4VRML1_VIEW_HH
#define G4VRML1_VIEW_HH
#include "G4VView.hh"
#include "globals.hh"
class G4VRML1Scene;
class G4VRML1View: public G4VView {
public:
G4VRML1View(G4VRML1Scene& scene, const G4String& name = "");
~G4VRML1View();
void ClearView();
void DrawView();
void ShowView();
void FinishView();
private:
void SetView();
private:
G4VRML1Scene& fScene; // Reference to Graphics Scene for this view.
};
#endif //G4VRML1_VIEW_HH
#endif //G4VIS_BUILD_VRML_DRIVER