]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveBase/TEveJetConeEditor.h
Remove information printout.
[u/mrichter/AliRoot.git] / EVE / EveBase / TEveJetConeEditor.h
1 // @(#)root/eve:$Id$
2 // Author: Matevz Tadel 2007
3
4 /*************************************************************************
5  * Copyright (C) 1995-2007, Rene Brun and Fons Rademakers.               *
6  * All rights reserved.                                                  *
7  *                                                                       *
8  * For the licensing terms see $ROOTSYS/LICENSE.                         *
9  * For the list of contributors see $ROOTSYS/README/CREDITS.             *
10  *************************************************************************/
11
12 #ifndef ROOT_TEveJetConeEditor
13 #define ROOT_TEveJetConeEditor
14
15 #include "TGedFrame.h"
16
17 class TGButton;
18 class TGCheckButton;
19 class TGNumberEntry;
20 class TGColorSelect;
21
22 class TEveJetCone;
23
24 class TEveJetConeEditor : public TGedFrame
25 {
26 private:
27    TEveJetConeEditor(const TEveJetConeEditor&);            // Not implemented
28    TEveJetConeEditor& operator=(const TEveJetConeEditor&); // Not implemented
29
30 protected:
31    TEveJetCone            *fM; // Model object.
32
33    // Declare widgets
34    // TGSomeWidget*   fXYZZ;
35
36 public:
37    TEveJetConeEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
38          UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
39    virtual ~TEveJetConeEditor() {}
40
41    virtual void SetModel(TObject* obj);
42
43    // Declare callback/slot methods
44    // void DoXYZZ();
45
46    ClassDef(TEveJetConeEditor, 0); // GUI editor for TEveJetCone.
47 };
48
49 #endif