Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Fireworks_Core_FWISpyView_h
0002 #define Fireworks_Core_FWISpyView_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     Core
0006 // Class  :     FWISpyView
0007 //
0008 /**\class FWISpyView FWISpyView.h Fireworks/Core/interface/FWISpyView.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:32 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 
0028 class FWISpyView : public FW3DViewBase {
0029 public:
0030   FWISpyView(TEveWindowSlot*, FWViewType::EType, unsigned int version = 9);
0031   ~FWISpyView() override;
0032   void setContext(const fireworks::Context& x) override;
0033 
0034   void populateController(ViewerParameterGUI&) const override;
0035   // ---------- const member functions ---------------------
0036 
0037   // ---------- static member functions --------------------
0038 
0039   // ---------- member functions ---------------------------
0040 
0041   FWISpyView(const FWISpyView&) = delete;  // stop default
0042 
0043   const FWISpyView& operator=(const FWISpyView&) = delete;  // stop default
0044 
0045   // ---------- member data --------------------------------};
0046 };
0047 
0048 #endif