ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4LogicalBorderSurface.hh
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4LogicalBorderSurface.hh
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 (John.Apostolakis@cern.ch), 17-06-1997
34 //
35 // --------------------------------------------------------------------
36 #ifndef G4LogicalBorderSurface_h
37 #define G4LogicalBorderSurface_h 1
38 
39 #include <vector>
40 
41 #include "G4LogicalSurface.hh"
42 #include "G4VPhysicalVolume.hh"
43 
44 class G4VPhysicalVolume;
46 
47 using G4LogicalBorderSurfaceTable = std::vector<G4LogicalBorderSurface*>;
48 
50 {
51 
52  public: // with description
53 
55  G4VPhysicalVolume* vol1,
56  G4VPhysicalVolume* vol2,
57  G4SurfaceProperty* surfaceProperty );
59  // Constructor and destructor
60 
63  // Copy constructor and assignment operator not allowed.
64 
66  G4bool operator!=( const G4LogicalBorderSurface& right ) const;
67  // Operators.
68 
70  const G4VPhysicalVolume* vol2 );
71  inline void SetPhysicalVolumes( G4VPhysicalVolume* vol1,
72  G4VPhysicalVolume* vol2 );
73  inline const G4VPhysicalVolume* GetVolume1() const;
74  inline const G4VPhysicalVolume* GetVolume2() const;
75  // Generic accessors.
76 
77  inline void SetVolume1( G4VPhysicalVolume* vol1 );
78  inline void SetVolume2( G4VPhysicalVolume* vol2 );
79  // To use with care!
80 
81  static void CleanSurfaceTable();
83  static size_t GetNumberOfBorderSurfaces();
84  static void DumpInfo();
85  // To handle the table of surfaces.
86 
87  private:
88 
89  G4VPhysicalVolume* Volume1; // Physical Volume pointer on side 1
90  G4VPhysicalVolume* Volume2; // Physical Volume pointer on side 2
91 
93  // The static Table of BorderSurfaces.
94 };
95 
96 // ********************************************************************
97 // Inline methods
98 // ********************************************************************
99 
100 #include "G4LogicalBorderSurface.icc"
101 
102 #endif /* G4LogicalBorderSurface_h */
103