Geant4 9.6.0
Toolkit for the simulation of the passage of particles through matter
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
G4LogicalSkinSurface.hh
Go to the documentation of this file.
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$
28//
29// class G4LogicalSkinSurface
30//
31// Class description:
32//
33// A Logical Surface class for the surface surrounding a single logical
34// volume.
35
36// History:
37// -------
38// Created: 1997-06-16
39// Author: John Apostolakis (John.Apostolakis@cern.ch)
40//
41// ----------------------------------------------------------------------
42#ifndef G4LogicalSkinSurface_h
43#define G4LogicalSkinSurface_h 1
44
45#include <vector>
46
47#include "G4LogicalSurface.hh"
48
49class G4LogicalVolume;
51
52typedef std::vector<G4LogicalSkinSurface*> G4LogicalSkinSurfaceTable;
53
55{
56
57 public: // with description
58
59 G4LogicalSkinSurface( const G4String& name,
60 G4LogicalVolume* vol,
61 G4SurfaceProperty* surfaceProperty );
63 // Constructor and destructor.
64
66 inline const G4LogicalVolume* GetLogicalVolume() const;
68 // Accessors.
69
70 static void CleanSurfaceTable();
72 static size_t GetNumberOfSkinSurfaces();
73 static void DumpInfo(); // const
74 // To handle with the table of surfaces.
75
76 G4int operator==(const G4LogicalSkinSurface &right) const;
77 G4int operator!=(const G4LogicalSkinSurface &right) const;
78 // Operators.
79
80 private:
81
83 const G4LogicalSkinSurface& operator=(const G4LogicalSkinSurface &right);
84 // Assignment and copying must be denied.
85
86 private:
87
88 G4LogicalVolume* LogVolume;
89 // Logical Volume pointer on side 1.
90
91 static G4LogicalSkinSurfaceTable theSkinSurfaceTable;
92 // The static Table of SkinSurfaces.
93
94};
95
96// ********************************************************************
97// Inline methods
98// ********************************************************************
99
100#include "G4LogicalSkinSurface.icc"
101
102#endif /* G4LogicalSkinSurface_h */
103
std::vector< G4LogicalSkinSurface * > G4LogicalSkinSurfaceTable
int G4int
Definition: G4Types.hh:66
G4int operator==(const G4LogicalSkinSurface &right) const
static G4LogicalSkinSurface * GetSurface(const G4LogicalVolume *vol)
void SetLogicalVolume(G4LogicalVolume *vol)
const G4LogicalVolume * GetLogicalVolume() const
G4int operator!=(const G4LogicalSkinSurface &right) const
static const G4LogicalSkinSurfaceTable * GetSurfaceTable()
static size_t GetNumberOfSkinSurfaces()