// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4LogicalBorderSurface.hh,v 1.17 2008/08/19 15:31:52 gcosmo Exp $ // GEANT4 tag $Name: geant4-09-04-beta-01 $ // // class G4LogicalBorderSurface // // Class description: // // A Logical Surface class for surfaces defined by the boundary // of two physical volumes. // History: // ------- // Created: 1997-06-17 // Author: John Apostolakis (John.Apostolakis@cern.ch) // // -------------------------------------------------------------------- #ifndef G4LogicalBorderSurface_h #define G4LogicalBorderSurface_h 1 #include #include "G4LogicalSurface.hh" #include "G4VPhysicalVolume.hh" class G4VPhysicalVolume; class G4LogicalBorderSurface; typedef std::vector G4LogicalBorderSurfaceTable; class G4LogicalBorderSurface : public G4LogicalSurface { public: // with description G4LogicalBorderSurface( const G4String& name, G4VPhysicalVolume* vol1, G4VPhysicalVolume* vol2, G4SurfaceProperty* surfaceProperty ); ~G4LogicalBorderSurface(); // Constructor and destructor static G4LogicalBorderSurface* GetSurface( const G4VPhysicalVolume* vol1, const G4VPhysicalVolume* vol2 ); inline void SetPhysicalVolumes( G4VPhysicalVolume* vol1, G4VPhysicalVolume* vol2 ); inline const G4VPhysicalVolume* GetVolume1() const; inline const G4VPhysicalVolume* GetVolume2() const; // Generic accessors. inline void SetVolume1( G4VPhysicalVolume* vol1 ); inline void SetVolume2( G4VPhysicalVolume* vol2 ); // To use with care! static void CleanSurfaceTable(); static const G4LogicalBorderSurfaceTable* GetSurfaceTable(); static size_t GetNumberOfBorderSurfaces(); static void DumpInfo(); // To handle the table of surfaces. G4int operator==( const G4LogicalBorderSurface &right ) const; G4int operator!=( const G4LogicalBorderSurface &right ) const; // Operators. private: G4LogicalBorderSurface(const G4LogicalBorderSurface &right); const G4LogicalBorderSurface& operator=(const G4LogicalBorderSurface &right); private: G4VPhysicalVolume* Volume1; // Physical Volume pointer on side 1 G4VPhysicalVolume* Volume2; // Physical Volume pointer on side 2 static G4LogicalBorderSurfaceTable theBorderSurfaceTable; // The static Table of BorderSurfaces. }; // ******************************************************************** // Inline methods // ******************************************************************** #include "G4LogicalBorderSurface.icc" #endif /* G4LogicalBorderSurface_h */