DD4hep  1.30.0
Detector Description Toolkit for High Energy Physics
MultiView.h
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 #ifndef DDEVE_MULTIVIEW_H
14 #define DDEVE_MULTIVIEW_H
15 
16 // Framework include files
17 #include "DDEve/View.h"
19 
20 // Forward declarations
21 class TEveWindowPack;
22 
24 namespace dd4hep {
25 
27  /*
28  * \author M.Frank
29  * \version 1.0
30  * \ingroup DD4HEP_EVE
31  */
32  class MultiView : public View {
33  public:
35  MultiView(Display* eve, const std::string& name);
37  virtual ~MultiView();
39  virtual View& Build(TEveWindow* slot) override;
42  };
43 } /* End namespace dd4hep */
44 #endif // DDEVE_MULTIVIEW_H
dd4hep::Display
The main class of the DDEve display.
Definition: Display.h:56
dd4hep::MultiView
class MultiView MultiView.h DDEve/MultiView.h
Definition: MultiView.h:32
DisplayConfiguration.h
dd4hep::View::name
const std::string & name() const
Access to the view name/title.
Definition: View.h:81
dd4hep::MultiView::ClassDefOverride
ClassDefOverride(MultiView, 0)
Root implementation macro.
slot
View TEveWindowSlot * slot
Definition: MultiView.cpp:28
dd4hep::MultiView::Build
virtual View & Build(TEveWindow *slot) override
Build the 3d view and map it to the given slot.
Definition: MultiView.cpp:46
dd4hep::MultiView::~MultiView
virtual ~MultiView()
Default destructor.
Definition: MultiView.cpp:42
dd4hep
Namespace for the AIDA detector description toolkit.
Definition: AlignmentsCalib.h:28
dd4hep::View
class View View.h DDEve/View.h
Definition: View.h:45
dd4hep::MultiView::MultiView
MultiView(Display *eve, const std::string &name)
Initializing constructor.
Definition: MultiView.cpp:37
View.h