source: trunk/source/geometry/volumes/include/G4LogicalSkinSurface.hh @ 1315

Last change on this file since 1315 was 1228, checked in by garnier, 14 years ago

update geant4.9.3 tag

File size: 3.8 KB
Line 
1//
2// ********************************************************************
3// * License and Disclaimer                                           *
4// *                                                                  *
5// * The  Geant4 software  is  copyright of the Copyright Holders  of *
6// * the Geant4 Collaboration.  It is provided  under  the terms  and *
7// * conditions of the Geant4 Software License,  included in the file *
8// * LICENSE and available at  http://cern.ch/geant4/license .  These *
9// * include a list of copyright holders.                             *
10// *                                                                  *
11// * Neither the authors of this software system, nor their employing *
12// * institutes,nor the agencies providing financial support for this *
13// * work  make  any representation or  warranty, express or implied, *
14// * regarding  this  software system or assume any liability for its *
15// * use.  Please see the license in the file  LICENSE  and URL above *
16// * for the full disclaimer and the limitation of liability.         *
17// *                                                                  *
18// * This  code  implementation is the result of  the  scientific and *
19// * technical work of the GEANT4 collaboration.                      *
20// * By using,  copying,  modifying or  distributing the software (or *
21// * any work based  on the software)  you  agree  to acknowledge its *
22// * use  in  resulting  scientific  publications,  and indicate your *
23// * acceptance of all terms of the Geant4 Software license.          *
24// ********************************************************************
25//
26//
27// $Id: G4LogicalSkinSurface.hh,v 1.17 2008/08/19 15:31:52 gcosmo Exp $
28// GEANT4 tag $Name: geant4-09-03 $
29//
30// class G4LogicalSkinSurface
31//
32// Class description:
33//
34// A Logical Surface class for the surface surrounding a single logical
35// volume.
36
37// History:
38// -------
39// Created:     1997-06-16
40// Author:      John Apostolakis (John.Apostolakis@cern.ch)
41//
42// ----------------------------------------------------------------------
43#ifndef G4LogicalSkinSurface_h
44#define G4LogicalSkinSurface_h 1
45
46#include <vector>
47
48#include "G4LogicalSurface.hh"
49
50class G4LogicalVolume;
51class G4LogicalSkinSurface;
52
53typedef std::vector<G4LogicalSkinSurface*> G4LogicalSkinSurfaceTable;
54
55class G4LogicalSkinSurface : public G4LogicalSurface
56{
57
58  public:  // with description
59
60    G4LogicalSkinSurface( const G4String& name,
61                                G4LogicalVolume* vol,
62                                G4SurfaceProperty* surfaceProperty );
63    ~G4LogicalSkinSurface();
64      // Constructor and destructor.
65
66    static G4LogicalSkinSurface* GetSurface(const G4LogicalVolume* vol);
67    inline const G4LogicalVolume* GetLogicalVolume() const;
68    inline void  SetLogicalVolume(G4LogicalVolume* vol);
69      // Accessors.
70
71    static void CleanSurfaceTable();
72    static const G4LogicalSkinSurfaceTable* GetSurfaceTable();
73    static size_t GetNumberOfSkinSurfaces();
74    static void DumpInfo(); // const
75      // To handle with the table of surfaces.
76
77    G4int operator==(const G4LogicalSkinSurface &right) const;
78    G4int operator!=(const G4LogicalSkinSurface &right) const;
79      // Operators.
80
81  private:
82
83    G4LogicalSkinSurface(const G4LogicalSkinSurface &right);
84    const G4LogicalSkinSurface& operator=(const G4LogicalSkinSurface &right);
85      // Assignment and copying must be denied.
86
87  private:
88
89    G4LogicalVolume* LogVolume;
90      // Logical Volume pointer on side 1.
91
92    static G4LogicalSkinSurfaceTable theSkinSurfaceTable;
93      // The static Table of SkinSurfaces.
94
95};
96
97// ********************************************************************
98// Inline methods
99// ********************************************************************
100
101#include "G4LogicalSkinSurface.icc"
102
103#endif /* G4LogicalSkinSurface_h */
104
Note: See TracBrowser for help on using the repository browser.