Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-30 09:17:17

0001 //==========================================================================
0002 //  AIDA Detector description implementation 
0003 //--------------------------------------------------------------------------
0004 // Copyright (C) Organisation europeenne pour la Recherche nucleaire (CERN)
0005 // All rights reserved.
0006 //
0007 // For the licensing terms see $DD4hepINSTALL/LICENSE.
0008 // For the list of contributors see $DD4hepINSTALL/doc/CREDITS.
0009 //
0010 // Author     : M.Frank
0011 //
0012 //==========================================================================
0013 
0014 // Framework include files
0015 #include <DDEve/ContextMenu.h>
0016 #include <DDEve/EvePgonSetProjectedContextMenu.h>
0017 
0018 // ROOT include files
0019 #include <TEvePolygonSetProjected.h>
0020 
0021 // C/C++ include files
0022 #include <stdexcept>
0023 
0024 using namespace dd4hep;
0025 
0026 ClassImp(EvePgonSetProjectedContextMenu)
0027 
0028 /// Instantiator
0029 EvePgonSetProjectedContextMenu& EvePgonSetProjectedContextMenu::install(Display* m)   {
0030   static EvePgonSetProjectedContextMenu s(m);
0031   return s;
0032 }
0033 
0034 /// Initializing constructor
0035 EvePgonSetProjectedContextMenu::EvePgonSetProjectedContextMenu(Display* mgr)
0036   : EveUserContextMenu(mgr)
0037 {
0038   InstallGeometryContextMenu(TEvePolygonSetProjected::Class());
0039 }
0040 
0041 /// Default destructor
0042 EvePgonSetProjectedContextMenu::~EvePgonSetProjectedContextMenu()  {
0043 }