DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
OpticalSurfaces.cpp
Go to the documentation of this file.
1 //==========================================================================
2 // AIDA Detector description implementation
3 //--------------------------------------------------------------------------
4 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
5 // All rights reserved.
6 //
7 // For the licensing terms see $DD4hepINSTALL/LICENSE.
8 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
9 //
10 // Author : M.Frank
11 //
12 //==========================================================================
13 
14 // Framework include files
15 #include <DD4hep/OpticalSurfaces.h>
16 #include <DD4hep/NamedObject.h>
17 #include <DD4hep/Detector.h>
18 #include <DD4hep/Printout.h>
19 #include <DD4hep/World.h>
20 
21 #include <DD4hep/detail/Handle.inl>
22 
23 // C/C++ includes
24 
25 using namespace dd4hep;
26 
27 DD4HEP_INSTANTIATE_HANDLE(TGeoSkinSurface);
28 DD4HEP_INSTANTIATE_HANDLE(TGeoBorderSurface);
29 DD4HEP_INSTANTIATE_HANDLE(TGeoOpticalSurface);
30 
33  const std::string& full_name,
34  EModel model,
35  EFinish finish,
36  EType type,
37  double value)
38 {
39  std::unique_ptr<Object> obj(new Object(full_name.c_str(), model, finish, type, value));
40  detector.manager().AddOpticalSurface(m_element=obj.release());
41 }
42 
45  return access()->GetProperty(nam);
46 }
47 
49 OpticalSurface::Property OpticalSurface::property(const std::string& nam) const {
50  return access()->GetProperty(nam.c_str());
51 }
52 
54 SkinSurface::SkinSurface(Detector& detector, DetElement de, const std::string& nam, OpticalSurface surf, Volume vol)
55 {
56  if ( de.isValid() ) {
57  if ( vol.isValid() ) {
58  if ( surf.isValid() ) {
59  std::unique_ptr<Object> obj(new Object(nam.c_str(), surf->GetName(), surf.ptr(), vol.ptr()));
60  detector.surfaceManager().addSkinSurface(de, m_element=obj.release());
61  return;
62  }
63  except("SkinSurface","++ Cannot create SkinSurface %s without valid optical surface!",nam.c_str());
64  }
65  except("SkinSurface","++ Cannot create SkinSurface %s without valid volume!",nam.c_str());
66  }
67  except("SkinSurface",
68  "++ Cannot create SkinSurface %s which is not connected to a valid detector element!",nam.c_str());
69 }
70 
73  return (TGeoOpticalSurface*)(access()->GetSurface());
74 }
75 
78  OpticalSurface surf(surface());
79  return surf.property(nam);
80 }
81 
83 BorderSurface::Property SkinSurface::property(const std::string& nam) const {
84  OpticalSurface surf(surface());
85  return surf.property(nam.c_str());
86 }
87 
90  return access()->GetVolume();
91 }
92 
95  DetElement de,
96  const std::string& nam,
97  OpticalSurface surf,
98  PlacedVolume lft,
99  PlacedVolume rht)
100 {
101  if ( de.isValid() ) {
102  if ( lft.isValid() && rht.isValid() ) {
103  if ( surf.isValid() ) {
104  std::unique_ptr<Object> obj(new Object(nam.c_str(), surf->GetName(), surf.ptr(), lft.ptr(), rht.ptr()));
105  detector.surfaceManager().addBorderSurface(de, m_element=obj.release());
106  return;
107  }
108  except("BorderSurface","++ Cannot create BorderSurface %s without valid optical surface!",nam.c_str());
109  }
110  except("BorderSurface","++ Cannot create BorderSurface %s without valid placements!",nam.c_str());
111  }
112  except("BorderSurface",
113  "++ Cannot create BorderSurface %s which is not connected to a valid detector element!",nam.c_str());
114 }
115 
118  return (TGeoOpticalSurface*)(access()->GetSurface());
119 }
120 
123  OpticalSurface surf(surface());
124  return surf.property(nam);
125 }
126 
128 BorderSurface::Property BorderSurface::property(const std::string& nam) const {
129  OpticalSurface surf(surface());
130  return surf.property(nam.c_str());
131 }
132 
135  return (TGeoNode*)access()->GetNode1();
136 }
137 
140  return access()->GetNode2();
141 }
142 
dd4hep::BorderSurface::property
Property property(const char *name) const
Access to tabular properties of the optical surface.
Definition: OpticalSurfaces.cpp:122
dd4hep::Detector::manager
virtual TGeoManager & manager() const =0
Access the geometry manager of this instance.
dd4hep::OpticalSurfaceManager::addSkinSurface
void addSkinSurface(DetElement de, SkinSurface surf) const
Add skin surface to manager.
Definition: OpticalSurfaceManager.cpp:95
dd4hep::BorderSurface::right
PlacedVolume right() const
Access the right node of the border surface.
Definition: OpticalSurfaces.cpp:139
OpticalSurfaces.h
Detector.h
dd4hep::PlacedVolume
Handle class holding a placed volume (also called physical volume)
Definition: Volumes.h:164
dd4hep::OpticalSurface::Object
TGeoOpticalSurface Object
Definition: OpticalSurfaces.h:44
World.h
dd4hep::Handle::isValid
bool isValid() const
Check the validity of the object held by the handle.
Definition: Handle.h:126
dd4hep::SkinSurface::volume
Volume volume() const
Access the node of the skin surface.
Definition: OpticalSurfaces.cpp:89
dd4hep::DetElement
Handle class describing a detector element.
Definition: DetElement.h:187
dd4hep::Volume
Handle class holding a placed volume (also called physical volume)
Definition: Volumes.h:371
dd4hep::OpticalSurface::EFinish
Object::ESurfaceFinish EFinish
Definition: OpticalSurfaces.h:49
dd4hep::OpticalSurface::Property
const TGDMLMatrix * Property
Definition: OpticalSurfaces.h:51
dd4hep::BorderSurface::BorderSurface
BorderSurface()=default
Default constructor.
dd4hep::Detector::surfaceManager
virtual OpticalSurfaceManager surfaceManager() const =0
Access the optical surface manager.
dd4hep::SkinSurface::surface
OpticalSurface surface() const
Access surface data.
Definition: OpticalSurfaces.cpp:72
NamedObject.h
dd4hep::Handle< TGeoOpticalSurface >::m_element
TGeoOpticalSurface * m_element
Single and only data member: Reference to the actual element.
Definition: Handle.h:91
dd4hep::OpticalSurfaceManager::addBorderSurface
void addBorderSurface(DetElement de, BorderSurface surf) const
Add border surface to manager.
Definition: OpticalSurfaceManager.cpp:103
dd4hep::SkinSurface::Object
TGeoSkinSurface Object
Definition: OpticalSurfaces.h:113
dd4hep::BorderSurface::Object
TGeoBorderSurface Object
Definition: OpticalSurfaces.h:157
dd4hep::SkinSurface::property
Property property(const char *name) const
Access to tabular properties of the optical surface.
Definition: OpticalSurfaces.cpp:77
dd4hep::BorderSurface::surface
OpticalSurface surface() const
Access surface data.
Definition: OpticalSurfaces.cpp:117
dd4hep::BorderSurface::Property
const TGDMLMatrix * Property
Definition: OpticalSurfaces.h:158
dd4hep::Handle< TGeoOpticalSurface >::access
TGeoOpticalSurface * access() const
Checked object access. Throws invalid handle runtime exception if invalid handle.
dd4hep::Handle::ptr
T * ptr() const
Access to the held object.
Definition: Handle.h:151
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::BorderSurface::left
PlacedVolume left() const
Access the left node of the border surface.
Definition: OpticalSurfaces.cpp:134
DD4HEP_INSTANTIATE_HANDLE
DD4HEP_INSTANTIATE_HANDLE(TGeoSkinSurface)
dd4hep::OpticalSurface::EModel
Object::ESurfaceModel EModel
Definition: OpticalSurfaces.h:48
dd4hep::Detector
The main interface to the dd4hep detector description package.
Definition: Detector.h:90
dd4hep::SkinSurface::SkinSurface
SkinSurface()=default
Default constructor.
dd4hep::OpticalSurface::property
Property property(const char *name) const
Access to tabular properties of the surface.
Definition: OpticalSurfaces.cpp:44
dd4hep::OpticalSurface::EType
Object::ESurfaceType EType
Definition: OpticalSurfaces.h:50
Printout.h
dd4hep::OpticalSurface
Class to support the handling of optical surfaces.
Definition: OpticalSurfaces.h:42
dd4hep::OpticalSurface::OpticalSurface
OpticalSurface()=default
Default constructor.