Geant4 11.4.0
Toolkit for the simulation of the passage of particles through matter
Loading...
Searching...
No Matches
G4LogicalBorderSurface.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// G4LogicalBorderSurface
27//
28// Class description:
29//
30// A Logical Surface class for surfaces defined by the boundary
31// of two physical volumes.
32
33// Author: John Apostolakis (CERN), 17.06.1997
34// --------------------------------------------------------------------
35#ifndef G4LogicalBorderSurface_hh
36#define G4LogicalBorderSurface_hh
37
38#include <map>
39
40#include "G4LogicalSurface.hh"
41#include "G4VPhysicalVolume.hh"
42
45
47 = std::map<std::pair<const G4VPhysicalVolume*,
49
50/**
51 * @brief G4LogicalBorderSurface is a Logical Surface class for surfaces
52 * defined by the boundary of two physical volumes.
53 */
56{
57 public:
58
59 /**
60 * Constructor and Destructor.
61 */
63 G4VPhysicalVolume* vol1,
65 G4SurfaceProperty* surfaceProperty );
66 ~G4LogicalBorderSurface() override = default;
67
68 /**
69 * Copy constructor and assignment operator are not allowed.
70 */
73
74 /**
75 * Equality operators.
76 */
77 G4bool operator==( const G4LogicalBorderSurface& right ) const;
78 G4bool operator!=( const G4LogicalBorderSurface& right ) const;
79
80 /**
81 * Generic accessors and setters.
82 */
84 const G4VPhysicalVolume* vol2 );
85 inline void SetPhysicalVolumes( G4VPhysicalVolume* vol1,
87 inline const G4VPhysicalVolume* GetVolume1() const;
88 inline const G4VPhysicalVolume* GetVolume2() const;
89 inline std::size_t GetIndex() const;
90 inline void SetVolume1( G4VPhysicalVolume* vol1 );
91 inline void SetVolume2( G4VPhysicalVolume* vol2 );
92
93 /**
94 * Handling of the table of surfaces.
95 */
96 static void CleanSurfaceTable();
98 static std::size_t GetNumberOfBorderSurfaces();
99 static void DumpInfo();
100
101 private:
102
103 /** Physical Volume pointer on side 1. */
104 G4VPhysicalVolume* Volume1;
105
106 /** Physical Volume pointer on side 2. */
107 G4VPhysicalVolume* Volume2;
108
109 /** Creation order index. */
110 std::size_t Index;
111
112 /** The static Table of BorderSurfaces. */
113 static G4LogicalBorderSurfaceTable* theBorderSurfaceTable;
114};
115
116// ********************************************************************
117// Inline methods
118// ********************************************************************
119
120#include "G4LogicalBorderSurface.icc"
121
122#endif
std::map< std::pair< const G4VPhysicalVolume *, const G4VPhysicalVolume * >, G4LogicalBorderSurface * > G4LogicalBorderSurfaceTable
bool G4bool
Definition G4Types.hh:86
G4LogicalBorderSurface is a Logical Surface class for surfaces defined by the boundary of two physica...
G4bool operator!=(const G4LogicalBorderSurface &right) const
static std::size_t GetNumberOfBorderSurfaces()
static G4LogicalBorderSurface * GetSurface(const G4VPhysicalVolume *vol1, const G4VPhysicalVolume *vol2)
static const G4LogicalBorderSurfaceTable * GetSurfaceTable()
void SetPhysicalVolumes(G4VPhysicalVolume *vol1, G4VPhysicalVolume *vol2)
const G4VPhysicalVolume * GetVolume2() const
G4LogicalBorderSurface & operator=(const G4LogicalBorderSurface &)=delete
G4LogicalBorderSurface(const G4String &name, G4VPhysicalVolume *vol1, G4VPhysicalVolume *vol2, G4SurfaceProperty *surfaceProperty)
std::size_t GetIndex() const
const G4VPhysicalVolume * GetVolume1() const
void SetVolume1(G4VPhysicalVolume *vol1)
void SetVolume2(G4VPhysicalVolume *vol2)
G4bool operator==(const G4LogicalBorderSurface &right) const
~G4LogicalBorderSurface() override=default
G4LogicalSurface(const G4LogicalSurface &)=delete
G4VPhysicalVolume is an abstract base class for the representation of a positioned volume....