DD4hep  1.31.0
Detector Description Toolkit for High Energy Physics
OpticalSurfaceManager.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
17 #include <DD4hep/ExtensionEntry.h>
18 #include <DD4hep/Detector.h>
19 #include <DD4hep/Printout.h>
20 
21 // C/C++ includes
22 #include <string>
23 
24 using namespace dd4hep;
25 
28  return description.surfaceManager();
29 }
30 
32 SkinSurface OpticalSurfaceManager::skinSurface(DetElement de, const std::string& nam) const {
33  if ( de.isValid() ) {
34  Object* o = access();
35  std::string n = de.path() + '#' + nam;
36  TGeoSkinSurface* surf = o->detector.manager().GetSkinSurface(n.c_str());
37  if ( surf ) return surf;
38  auto i = o->skinSurfaces.find(Object::LocalKey(de, nam));
39  if ( i != o->skinSurfaces.end() ) return (*i).second;
40  return 0;
41  }
42  except("SkinSurface",
43  "++ Cannot access SkinSurface %s without valid detector element!",nam.c_str());
44  return SkinSurface();
45 }
46 
48 SkinSurface OpticalSurfaceManager::skinSurface(const std::string& full_nam) const {
49  return access()->detector.manager().GetSkinSurface(full_nam.c_str());
50 }
51 
54  if ( de.isValid() ) {
55  Object* o = access();
56  std::string n = de.path() + '#' + nam;
57  TGeoBorderSurface* surf = o->detector.manager().GetBorderSurface(n.c_str());
58  if ( surf ) return surf;
59  auto i = o->borderSurfaces.find(Object::LocalKey(de, nam));
60  if ( i != o->borderSurfaces.end() ) return (*i).second;
61  return 0;
62  }
63  except("BorderSurface",
64  "++ Cannot access BorderSurface %s without valid detector element!",nam.c_str());
65  return BorderSurface();
66 }
67 
69 BorderSurface OpticalSurfaceManager::borderSurface(const std::string& full_nam) const {
70  return access()->detector.manager().GetBorderSurface(full_nam.c_str());
71 }
72 
75  if ( de.isValid() ) {
76  Object* o = access();
77  std::string n = de.path() + '#' + nam;
78  TGeoOpticalSurface* surf = o->detector.manager().GetOpticalSurface(n.c_str());
79  if ( surf ) return surf;
80  auto i = o->opticalSurfaces.find(n);
81  if ( i != o->opticalSurfaces.end() ) return (*i).second;
82  return 0;
83  }
84  except("OpticalSurface",
85  "++ Cannot access OpticalSurface %s without valid detector element!",nam.c_str());
86  return OpticalSurface();
87 }
88 
90 OpticalSurface OpticalSurfaceManager::opticalSurface(const std::string& full_nam) const {
91  return access()->detector.manager().GetOpticalSurface(full_nam.c_str());
92 }
93 
96  if ( access()->skinSurfaces.emplace(std::make_pair(de,surf->GetName()), surf).second )
97  return;
98  except("OpticalSurfaceManager","++ Skin surface %s already present for DE:%s.",
99  surf->GetName(), de.name());
100 }
101 
104  if ( access()->borderSurfaces.emplace(std::make_pair(de,surf->GetName()), surf).second )
105  return;
106  except("OpticalSurfaceManager","++ Border surface %s already present for DE:%s.",
107  surf->GetName(), de.name());
108 }
109 
112  if ( access()->opticalSurfaces.emplace(surf->GetName(), surf).second )
113  return;
114  except("OpticalSurfaceManager","++ Optical surface %s already present.",
115  surf->GetName());
116 }
117 
120  Object* o = access();
121  std::unique_ptr<Object> extension(new Object(o->detector));
122  for(auto& optical : o->opticalSurfaces) {
123  o->detector.manager().AddOpticalSurface(optical.second.ptr());
124  extension->opticalSurfaces.insert(optical);
125  }
126  o->opticalSurfaces.clear();
127 
128  for(auto& skin : o->skinSurfaces) {
129  std::string n = skin.first.first.path() + '#' + skin.first.second;
130  skin.second->SetName(n.c_str());
131  o->detector.manager().AddSkinSurface(skin.second.ptr());
132  extension->skinSurfaces.insert(skin);
133  }
134  o->skinSurfaces.clear();
135 
136  for(auto& border : o->borderSurfaces) {
137  std::string n = border.first.first.path() + '#' + border.first.second;
138  border.second->SetName(n.c_str());
139  o->detector.manager().AddBorderSurface(border.second.ptr());
140  extension->borderSurfaces.insert(border);
141  }
142  o->borderSurfaces.clear();
143 
144  if ( extension->opticalSurfaces.empty() &&
145  extension->borderSurfaces.empty() &&
146  extension->skinSurfaces.empty() ) {
147  return;
148  }
149  subdetector.addExtension(new detail::DeleteExtension<Object,Object>(extension.release()));
150 }
151 
dd4hep::Detector::manager
virtual TGeoManager & manager() const =0
Access the geometry manager of this instance.
dd4hep::DetElement::path
const std::string & path() const
Path of the detector element (not necessarily identical to placement path!)
Definition: DetElement.cpp:158
dd4hep::OpticalSurfaceManager::opticalSurface
OpticalSurface opticalSurface(const std::string &full_name) const
Access optical surface data by its full name.
Definition: OpticalSurfaceManager.cpp:90
dd4hep::detail::OpticalSurfaceManagerObject
This structure describes the internal data of the volume manager object.
Definition: OpticalSurfaceManagerInterna.h:43
dd4hep::detail::OpticalSurfaceManagerObject::detector
Detector & detector
Reference to the main detector description object.
Definition: OpticalSurfaceManagerInterna.h:48
dd4hep::OpticalSurfaceManager::addSkinSurface
void addSkinSurface(DetElement de, SkinSurface surf) const
Add skin surface to manager.
Definition: OpticalSurfaceManager.cpp:95
Detector.h
dd4hep::Handle::isValid
bool isValid() const
Check the validity of the object held by the handle.
Definition: Handle.h:126
dd4hep::OpticalSurfaceManager::addOpticalSurface
void addOpticalSurface(OpticalSurface surf) const
Add optical surface data to manager.
Definition: OpticalSurfaceManager.cpp:111
dd4hep::OpticalSurfaceManager::getOpticalSurfaceManager
static OpticalSurfaceManager getOpticalSurfaceManager(Detector &description)
static accessor calling DD4hepOpticalSurfaceManagerPlugin if necessary
Definition: OpticalSurfaceManager.cpp:27
dd4hep::Handle::name
const char * name() const
Access the object name (or "" if not supported by the object)
dd4hep::DetElement
Handle class describing a detector element.
Definition: DetElement.h:187
dd4hep::detail::OpticalSurfaceManagerObject::skinSurfaces
std::map< LocalKey, SkinSurface > skinSurfaces
Definition: OpticalSurfaceManagerInterna.h:49
dd4hep::detail::DeleteExtension
Implementation class for the object extension mechanism.
Definition: ExtensionEntry.h:120
OpticalSurfaceManager.h
dd4hep::OpticalSurfaceManager::registerSurfaces
void registerSurfaces(DetElement subdetector)
Register the temporary surface objects with the TGeoManager.
Definition: OpticalSurfaceManager.cpp:119
dd4hep::SkinSurface
Class to support the handling of optical surfaces.
Definition: OpticalSurfaces.h:111
dd4hep::Detector::surfaceManager
virtual OpticalSurfaceManager surfaceManager() const =0
Access the optical surface manager.
dd4hep::OpticalSurfaceManager::addBorderSurface
void addBorderSurface(DetElement de, BorderSurface surf) const
Add border surface to manager.
Definition: OpticalSurfaceManager.cpp:103
dd4hep::OpticalSurfaceManager::borderSurface
BorderSurface borderSurface(const std::string &full_name) const
Access border surface by its full name.
Definition: OpticalSurfaceManager.cpp:69
dd4hep::OpticalSurfaceManager::Object
detail::OpticalSurfaceManagerObject Object
Definition: OpticalSurfaceManager.h:39
dd4hep::Handle< detail::OpticalSurfaceManagerObject >::access
detail::OpticalSurfaceManagerObject * access() const
Checked object access. Throws invalid handle runtime exception if invalid handle.
dd4hep::detail::OpticalSurfaceManagerObject::borderSurfaces
std::map< LocalKey, BorderSurface > borderSurfaces
Definition: OpticalSurfaceManagerInterna.h:50
dd4hep::detail::OpticalSurfaceManagerObject::LocalKey
std::pair< DetElement, std::string > LocalKey
Definition: OpticalSurfaceManagerInterna.h:45
dd4hep::DetElement::addExtension
void * addExtension(ExtensionEntry *entry) const
Add an extension object to the detector element.
Definition: DetElement.cpp:65
OpticalSurfaceManagerInterna.h
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::Detector
The main interface to the dd4hep detector description package.
Definition: Detector.h:90
dd4hep::BorderSurface
Class to support the handling of optical surfaces.
Definition: OpticalSurfaces.h:155
dd4hep::detail::OpticalSurfaceManagerObject::opticalSurfaces
std::map< std::string, OpticalSurface > opticalSurfaces
Definition: OpticalSurfaceManagerInterna.h:51
Printout.h
dd4hep::OpticalSurface
Class to support the handling of optical surfaces.
Definition: OpticalSurfaces.h:42
ExtensionEntry.h
dd4hep::OpticalSurfaceManager::skinSurface
SkinSurface skinSurface(const std::string &full_name) const
Access skin surface by its full name.
Definition: OpticalSurfaceManager.cpp:48
dd4hep::OpticalSurfaceManager
Class to support the handling of optical surfaces.
Definition: OpticalSurfaceManager.h:37