Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:11:30

0001 #ifndef Fireworks_Core_FW3DView_h
0002 #define Fireworks_Core_FW3DView_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FW3DView
0007 //
0008 /**\class FW3DView FW3DView.h Fireworks/Core/interface/FW3DView.h
0009 
0010  Description: [one line class summary]
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Alja Mrak-Tadel
0018 //         Created:  Wed Apr  7 14:41:26 CEST 2010
0019 //
0020 
0021 // system include files
0022 
0023 // user include files
0024 #include "Fireworks/Core/interface/FW3DViewBase.h"
0025 
0026 // forward declarations
0027 class TEveCalo3D;
0028 
0029 class FW3DView : public FW3DViewBase {
0030 public:
0031   FW3DView(TEveWindowSlot*, FWViewType::EType);
0032   ~FW3DView() override;
0033 
0034   void setContext(const fireworks::Context&) override;
0035   TEveCaloViz* getEveCalo() const override;
0036 
0037   // ---------- const member functions ---------------------
0038 
0039   //   virtual void populateController(ViewerParameterGUI&) const;
0040   // ---------- static member functions --------------------
0041 
0042   // ---------- member functions ---------------------------
0043 
0044   FW3DView(const FW3DView&) = delete;  // stop default
0045 
0046   const FW3DView& operator=(const FW3DView&) = delete;  // stop default
0047 
0048 private:
0049   // ---------- member data --------------------------------
0050   TEveCalo3D* m_calo;
0051 };
0052 
0053 #endif