Import Geant4 1.0.0 source tree

This commit is contained in:
Gabriele Cosmo
2016-06-08 15:28:20 +02:00
parent aaa409b6ee
commit ca1c8cb059
2995 changed files with 106830 additions and 299600 deletions
@@ -0,0 +1,59 @@
// 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: G4LogicalVolumeModel.hh,v 1.2.2.1 1999/12/07 20:54:05 gunter Exp $
// GEANT4 tag $Name: geant4-01-00 $
//
//
// John Allison 26th July 1999.
//
// Class Description:
//
// Model for logical volumes. It describes a logical volume and its
// daughters to any depth - usually only the first by default.
//
// Inherits from G4PhysicalVolumeModel; for more information see that
// class description.
#ifndef G4LOGICALVOLUMEMODEL_HH
#define G4LOGICALVOLUMEMODEL_HH
#include "G4PhysicalVolumeModel.hh"
#include "globals.hh"
#include "G4Transform3D.hh"
class G4LogicalVolume;
class G4ModelingParameters;
class G4LogicalVolumeModel: public G4PhysicalVolumeModel {
public: // With description
G4LogicalVolumeModel
(G4LogicalVolume*,
G4int soughtDepth = 1,
const G4Transform3D& modelTransformation = G4Transform3D::Identity,
const G4ModelingParameters* = 0);
virtual ~G4LogicalVolumeModel ();
void DescribeYourselfTo (G4VGraphicsScene&);
G4String GetCurrentDescription () const;
// A description which depends on the current state of the model.
protected:
/////////////////////////////////////////////////////////
// Data members...
G4LogicalVolume* fpLV;
};
#endif