Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:55:22

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 #ifndef DDEVE_MULTIVIEW_H
0014 #define DDEVE_MULTIVIEW_H
0015 
0016 // Framework include files
0017 #include "DDEve/View.h"
0018 #include "DDEve/DisplayConfiguration.h"
0019 
0020 // Forward declarations
0021 class TEveWindowPack;
0022 
0023 /// Namespace for the AIDA detector description toolkit
0024 namespace dd4hep {
0025 
0026   /// class MultiView  MultiView.h DDEve/MultiView.h
0027   /*
0028    *  \author  M.Frank
0029    *  \version 1.0
0030    *  \ingroup DD4HEP_EVE
0031    */
0032   class MultiView : public View  {
0033   public:
0034     /// Initializing constructor
0035     MultiView(Display* eve, const std::string& name);
0036     /// Default destructor
0037     virtual ~MultiView();
0038     /// Build the 3d view and map it to the given slot
0039     virtual View& Build(TEveWindow* slot)  override;
0040     /// Root implementation macro
0041     ClassDefOverride(MultiView,0);
0042   };
0043 }      /* End namespace dd4hep     */
0044 #endif // DDEVE_MULTIVIEW_H