Geant4
10.03
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
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: G4LogicalSkinSurface.hh 80067 2014-03-31 13:48:09Z gcosmo $
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
49
class
G4LogicalVolume
;
50
class
G4LogicalSkinSurface
;
51
52
typedef
std::vector<G4LogicalSkinSurface*>
G4LogicalSkinSurfaceTable
;
53
54
class
G4LogicalSkinSurface
:
public
G4LogicalSurface
55
{
56
57
public
:
// with description
58
59
G4LogicalSkinSurface
(
const
G4String
&
name
,
60
G4LogicalVolume
* vol,
61
G4SurfaceProperty
* surfaceProperty );
62
~G4LogicalSkinSurface
();
63
// Constructor and destructor.
64
65
static
G4LogicalSkinSurface
*
GetSurface
(
const
G4LogicalVolume
* vol);
66
inline
const
G4LogicalVolume
*
GetLogicalVolume
()
const
;
67
inline
void
SetLogicalVolume
(
G4LogicalVolume
* vol);
68
// Accessors.
69
70
static
void
CleanSurfaceTable
();
71
static
const
G4LogicalSkinSurfaceTable
*
GetSurfaceTable
();
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
82
G4LogicalSkinSurface
(
const
G4LogicalSkinSurface
&right);
83
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
G4LogicalSkinSurface::~G4LogicalSkinSurface
~G4LogicalSkinSurface()
Definition:
G4LogicalSkinSurface.cc:77
right
Definition:
F04UserTrackInformation.hh:37
G4LogicalSkinSurface::GetLogicalVolume
const G4LogicalVolume * GetLogicalVolume() const
G4LogicalSkinSurface::operator!=
G4int operator!=(const G4LogicalSkinSurface &right) const
Definition:
G4LogicalSkinSurface.cc:107
G4LogicalSkinSurface::operator=
G4LogicalSkinSurface & operator=(const G4LogicalSkinSurface &right)
Definition:
G4LogicalSkinSurface.cc:87
G4LogicalSkinSurface::SetLogicalVolume
void SetLogicalVolume(G4LogicalVolume *vol)
G4InuclParticleNames::name
const char * name(G4int ptype)
Definition:
G4InuclParticleNames.hh:77
G4LogicalSkinSurface::LogVolume
G4LogicalVolume * LogVolume
Definition:
G4LogicalSkinSurface.hh:88
G4LogicalSurface.hh
G4int
int G4int
Definition:
G4Types.hh:78
G4LogicalSkinSurface::GetNumberOfSkinSurfaces
static size_t GetNumberOfSkinSurfaces()
Definition:
G4LogicalSkinSurface.cc:125
G4LogicalSkinSurface::CleanSurfaceTable
static void CleanSurfaceTable()
Definition:
G4LogicalSkinSurface.cc:169
G4LogicalSkinSurface::G4LogicalSkinSurface
G4LogicalSkinSurface(const G4String &name, G4LogicalVolume *vol, G4SurfaceProperty *surfaceProperty)
Definition:
G4LogicalSkinSurface.cc:50
G4LogicalSkinSurface::GetSurfaceTable
static const G4LogicalSkinSurfaceTable * GetSurfaceTable()
Definition:
G4LogicalSkinSurface.cc:116
G4LogicalSkinSurface::theSkinSurfaceTable
static G4LogicalSkinSurfaceTable * theSkinSurfaceTable
Definition:
G4LogicalSkinSurface.hh:91
G4LogicalSkinSurface
Definition:
G4LogicalSkinSurface.hh:54
G4LogicalVolume
Definition:
G4LogicalVolume.hh:190
G4LogicalSkinSurface.icc
G4SurfaceProperty
Definition:
G4SurfaceProperty.hh:79
G4LogicalSkinSurface::operator==
G4int operator==(const G4LogicalSkinSurface &right) const
Definition:
G4LogicalSkinSurface.cc:101
G4LogicalSkinSurface::DumpInfo
static void DumpInfo()
Definition:
G4LogicalSkinSurface.cc:150
G4LogicalSurface
Definition:
G4LogicalSurface.hh:79
G4LogicalSkinSurfaceTable
std::vector< G4LogicalSkinSurface * > G4LogicalSkinSurfaceTable
Definition:
G4LogicalSkinSurface.hh:50
G4String
Definition:
G4String.hh:45
G4LogicalSkinSurface::GetSurface
static G4LogicalSkinSurface * GetSurface(const G4LogicalVolume *vol)
Definition:
G4LogicalSkinSurface.cc:135
geant4.10.03
source
geometry
volumes
include
G4LogicalSkinSurface.hh
Generated on Thu Feb 14 2002 02:28:17 for Geant4 by
1.8.8