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,47 @@
// 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: G4VRML2FileView.hh,v 2.2 1998/11/09 19:33:06 allison Exp $
// GEANT4 tag $Name: geant4-00 $
//
// G4VRML2FileView.hh
// Satoshi Tanaka and Yasuhide Sawada
#ifdef G4VIS_BUILD_VRMLFILE_DRIVER
#ifndef G4VRML2FILE_VIEW_HH
#define G4VRML2FILE_VIEW_HH
#include <fstream.h>
#include "G4VView.hh"
#include "globals.hh"
class G4VRML2FileScene;
class G4VRML2FileView: public G4VView {
public:
G4VRML2FileView(G4VRML2FileScene& scene, const G4String& name = "");
~G4VRML2FileView();
void ClearView();
void DrawView();
void ShowView();
void FinishView();
private:
void SetView(); // Do nothing. SendViewParameters will do its job.
void SendViewParameters () ;
private:
G4VRML2FileScene& fScene; // Reference to Graphics Scene for this view.
ofstream& fDest ;
G4double fViewHalfAngle ;
G4double fsin_VHA ;
};
#endif //G4VRML2File_VIEW_HH
#endif //G4VIS_BUILD_VRMLFILE_DRIVER