Warning, file /include/root/TEveJetConeEditor.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROOT_TEveJetConeEditor
0013 #define ROOT_TEveJetConeEditor
0014
0015 #include "TGedFrame.h"
0016
0017 class TGButton;
0018 class TGCheckButton;
0019 class TGNumberEntry;
0020 class TGColorSelect;
0021
0022 class TEveJetCone;
0023
0024 class TEveJetConeEditor : public TGedFrame
0025 {
0026 private:
0027 TEveJetConeEditor(const TEveJetConeEditor&);
0028 TEveJetConeEditor& operator=(const TEveJetConeEditor&);
0029
0030 protected:
0031 TEveJetCone *fM;
0032
0033
0034
0035
0036 public:
0037 TEveJetConeEditor(const TGWindow *p = nullptr, Int_t width=170, Int_t height=30,
0038 UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
0039 ~TEveJetConeEditor() override {}
0040
0041 void SetModel(TObject* obj) override;
0042
0043
0044
0045
0046 ClassDefOverride(TEveJetConeEditor, 0);
0047 };
0048
0049 #endif