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,129 @@
// 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: G4LogicalSkinSurface.cc,v 2.1 1998/07/13 16:55:06 urbi Exp $
// GEANT4 tag $Name: geant4-00 $
//
////////////////////////////////////////////////////////////////////////
// G4LogicalSkinSurface Implementation
////////////////////////////////////////////////////////////////////////
//
// File: G4LogicalSkinSurface.cc
// Description: A Logical Surface class for the surface
// surrounding a single logical volume.
// Version: 1.0
// Created: 1997-06-26
// Author: John Apostolakis
// mail: John.Apostolakis@cern.ch
// Modified: 1997-06-26 John Apostolakis
//
// CVS Id tag:
////////////////////////////////////////////////////////////////////////
#include "G4LogicalSkinSurface.hh"
#include "G4ios.hh"
// #include "G4OpticalSurface.hh"
G4LogicalSkinSurfaceTable G4LogicalSkinSurface::theSurfaceTable;
/////////////////////////
// Class Implementation
/////////////////////////
/////////////////
// Constructors
/////////////////
G4LogicalSkinSurface::G4LogicalSkinSurface(const G4String& name,
G4LogicalVolume* logicalVolume,
G4OpticalSurface* opticalSurface)
: G4LogicalSurface(name, opticalSurface),
LogVolume(logicalVolume)
{
// Store in the table of Surfaces
theSurfaceTable.insert(this);
theIndexInTable = theSurfaceTable.index(this);
}
G4LogicalSkinSurface::G4LogicalSkinSurface(const G4LogicalSkinSurface &right)
: G4LogicalSurface(right.GetName(), right.GetOpticalSurface())
{
*this = right;
}
G4LogicalSkinSurface::~G4LogicalSkinSurface(){}
//////////////
// Operators
//////////////
const G4LogicalSkinSurface& G4LogicalSkinSurface::operator=(const G4LogicalSkinSurface &right)
{
return right;
}
G4int G4LogicalSkinSurface::operator==(const G4LogicalSkinSurface &right) const
{
return (this == (G4LogicalSkinSurface *) &right);
}
G4int G4LogicalSkinSurface::operator!=(const G4LogicalSkinSurface &right) const
{
return (this != (G4LogicalSkinSurface *) &right);
}
////////////
// Methods
////////////
G4LogicalSkinSurface* G4LogicalSkinSurface::GetSurface(const G4LogicalVolume* vol)
{
for (int i=0; i<theSurfaceTable.length(); i++) {
if(theSurfaceTable[i]->GetLogicalVolume() == vol)
return theSurfaceTable[i];
}
return NULL;
}
void G4LogicalSkinSurface::DumpInfo()
{
// Dump info for known surfaces
G4cout << "***** Surface Table : Nb of Surfaces = " <<
// G4LogicalSkinSurface::
GetNumberOfSkinSurfaces() << " *****" << endl;
for (int i=0; i<theSurfaceTable.length(); i++) {
G4LogicalSkinSurface *pSkinSurface= theSurfaceTable[i];
G4cout << theSurfaceTable[i]->GetName() << " : " << endl <<
" Skin of logical volume " << pSkinSurface->GetLogicalVolume()->GetName ()
<< endl <<
" Optical Surface Ptr = " << (long) (pSkinSurface->GetOpticalSurface() )
<< endl;
#ifdef PRINT_INFO
// DOES NOT COMPILE without including "G4OpticalSurface.hh"
// G4cout << pSkinSurface->GetOpticalSurface() << endl ;
G4pticalSurface opticalSurface= pSkinSurface->GetOpticalSurface();
G4cout <<
" Surface type = " << opticalSurface->GetType() << endl <<
" Surface finish = " << opticalSurface->GetFinish() << endl <<
" Surface model = " << opticalSurface->GetModel() << endl;
/*
operator << ( G4OpticalSurface opticalSurface ) should exist
and do something like:
" Surface type = " << opticalSurface->GetType() << endl <<
" Surface finish = " << opticalSurface->GetFinish() << endl <<
" Surface model = " << opticalSurface->GetModel() << endl;
*/
#endif
}
G4cout << endl;
}