Geant4  10.02.p01
G4LogicalSurface.icc
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: G4LogicalSurface.icc 80066 2014-03-31 13:47:20Z gcosmo $
28 //
29 ////////////////////////////////////////////////////////////////////////
30 // Surface Class Inline Methods
31 ////////////////////////////////////////////////////////////////////////
32 //
33 // File: G4LogicalSurface.icc
34 // Description: A Surface class
35 // Created: 1997-06-26
36 // Author: John Apostolakis
37 //
38 // ------------------------------------------------------------------------
39 
40 inline G4SurfaceProperty*
41 G4LogicalSurface::GetSurfaceProperty() const
42 {
43  return theSurfaceProperty;
44 }
45 
46 inline void
47 G4LogicalSurface::SetSurfaceProperty(G4SurfaceProperty* ptrSurfaceProperty)
48 {
49  theSurfaceProperty = ptrSurfaceProperty;
50 }
51 
52 inline const G4String&
53 G4LogicalSurface::GetName() const
54 {
55  return theName;
56 }
57 
58 inline void
59 G4LogicalSurface::SetName(const G4String& name)
60 {
61  theName = name;
62 }
63 
64 inline G4TransitionRadiationSurface*
65 G4LogicalSurface::GetTransitionRadiationSurface() const
66 {
67  return theTransRadSurface;
68 }
69 
70 inline void
71 G4LogicalSurface::SetTransitionRadiationSurface(G4TransitionRadiationSurface*
72  transRadSurf )
73 {
74  theTransRadSurface= transRadSurf;
75 }
76 
77  //////////////
78  // Operators
79  //////////////
80 
81 inline G4LogicalSurface &
82 G4LogicalSurface::operator=(const G4LogicalSurface &right)
83 {
84  if (&right == this) { return *this; }
85  theName = right.theName;
86  theSurfaceProperty = right.theSurfaceProperty;
87  theTransRadSurface = right.theTransRadSurface;
88 
89  return *this;
90 }
91 
92 inline G4int
93 G4LogicalSurface::operator==(const G4LogicalSurface &right) const
94 {
95  return (this == (G4LogicalSurface *) &right);
96 }
97 
98 inline G4int
99 G4LogicalSurface::operator!=(const G4LogicalSurface &right) const
100 {
101  return (this != (G4LogicalSurface *) &right);
102 }