Import Geant4 2.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:42:07 +02:00
parent 103bda00c8
commit e7d7193284
3106 changed files with 171117 additions and 90550 deletions
@@ -0,0 +1,31 @@
// This code implementation is the intellectual property of
// the 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: G4RayTracerSceneHandler.cc,v 1.1 2000/02/23 16:03:53 johna Exp $
// GEANT4 tag $Name: geant4-02-00 $
#include "G4RayTracerSceneHandler.hh"
G4RayTracerSceneHandler::G4RayTracerSceneHandler(G4VGraphicsSystem& system,
const G4String& name):
G4VSceneHandler(system, fSceneIdCount++, name)
{
fSceneCount++;
}
G4RayTracerSceneHandler::~G4RayTracerSceneHandler()
{
fSceneCount--;
}
G4int G4RayTracerSceneHandler::GetSceneCount() {
return fSceneCount;
}
G4int G4RayTracerSceneHandler::fSceneIdCount = 0;
G4int G4RayTracerSceneHandler::fSceneCount = 0;