26 lines
597 B
C++
26 lines
597 B
C++
// 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: G4PCSGSolid.cc,v 1.2 1999/11/17 10:49:02 morita Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
//
|
|
//
|
|
// History:
|
|
// 19.06.98 A.Kimura Converted G4CSGSolid.cc
|
|
|
|
#include "G4PCSGSolid.hh"
|
|
|
|
// Constructor
|
|
// - Base class constructor
|
|
|
|
G4PCSGSolid::G4PCSGSolid(const G4String& name) :
|
|
G4PVSolid(name)
|
|
{;}
|
|
|
|
G4PCSGSolid::~G4PCSGSolid()
|
|
{;}
|