Import Geant4 5.2.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-09 10:28:22 +02:00
parent fbd4999cf7
commit 4aea781e80
5454 changed files with 223141 additions and 67347 deletions
@@ -21,8 +21,8 @@
// ********************************************************************
//
//
// $Id: G4Scene.hh,v 1.12 2001/08/24 20:47:39 johna Exp $
// GEANT4 tag $Name: geant4-05-01 $
// $Id: G4Scene.hh,v 1.13 2003/06/16 17:14:03 gunter Exp $
// GEANT4 tag $Name: geant4-05-02 $
//
//
// Scene John Allison 19th July 1996.
@@ -42,13 +42,13 @@ class G4VPhysicalVolume;
#include "G4VisExtent.hh"
#include "G4Point3D.hh"
#include "G4VModel.hh"
#include "g4std/vector"
#include <vector>
class G4Scene {
public: // With description
friend G4std::ostream& operator << (G4std::ostream& os, const G4Scene& d);
friend std::ostream& operator << (std::ostream& os, const G4Scene& d);
enum {UNLIMITED = -1};
@@ -68,11 +68,11 @@ public: // With description
G4bool IsEmpty () const;
const G4std::vector<G4VModel*>& GetRunDurationModelList () const;
const std::vector<G4VModel*>& GetRunDurationModelList () const;
// Contains models which are expected to last for the duration of
// the run, for example geometry volumes.
const G4std::vector<G4VModel*>& GetEndOfEventModelList () const;
const std::vector<G4VModel*>& GetEndOfEventModelList () const;
// Contains models which are described at the end of event when the
// scene is current.
@@ -109,10 +109,10 @@ public: // With description
// Returns false if model is already in the list.
// Prints warnings if warn is true.
G4std::vector<G4VModel*>& SetRunDurationModelList ();
std::vector<G4VModel*>& SetRunDurationModelList ();
// Allows you to change the model list - do with care!
G4std::vector<G4VModel*>& SetEndOfEventModelList ();
std::vector<G4VModel*>& SetEndOfEventModelList ();
// Allows you to change the model list - do with care!
void Clear ();
@@ -128,8 +128,8 @@ public: // With description
private:
G4String fName;
G4std::vector<G4VModel*> fRunDurationModelList;
G4std::vector<G4VModel*> fEndOfEventModelList;
std::vector<G4VModel*> fRunDurationModelList;
std::vector<G4VModel*> fEndOfEventModelList;
G4VisExtent fExtent;
G4Point3D fStandardTargetPoint;
G4bool fRefreshAtEndOfEvent;