Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TEveJetConeEditor.cxx
Go to the documentation of this file.
1// @(#)root/eve:$Id$
2// Author: Matevz Tadel, Jochen Thaeder 2009
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#include "TEveJetConeEditor.h"
13#include "TEveJetCone.h"
14
15/** \class TEveJetConeEditor
16\ingroup TEve
17GUI editor for TEveJetCone.
18*/
19
20
21////////////////////////////////////////////////////////////////////////////////
22/// Constructor.
23
25 UInt_t options, Pixel_t back) :
26 TGedFrame(p, width, height, options | kVerticalFrame, back),
27 fM(nullptr)
28 // Initialize widget pointers to 0
29{
30 MakeTitle("TEveJetCone");
31
32 // Create widgets
33 // fXYZZ = new TGSomeWidget(this, ...);
34 // AddFrame(fXYZZ, new TGLayoutHints(...));
35 // fXYZZ->Connect("SignalName()", "Reve::TEveJetConeEditor", this, "DoXYZZ()");
36}
37
38////////////////////////////////////////////////////////////////////////////////
39/// Set model object.
40
42{
43 fM = dynamic_cast<TEveJetCone*>(obj);
44
45 // Set values of widgets
46 // fXYZZ->SetValue(fM->GetXYZZ());
47}
48
@ kVerticalFrame
Definition GuiTypes.h:381
ULong_t Pixel_t
Pixel value.
Definition GuiTypes.h:40
winID h TVirtualViewer3D TVirtualGLPainter p
Option_t Option_t width
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t height
void SetModel(TObject *obj) override
Set model object.
TEveJetConeEditor(const TEveJetConeEditor &)
Draws a jet cone with leading particle is specified in (eta,phi) and cone radius is given.
Definition TEveJetCone.h:24
ROOT GUI Window base class.
Definition TGWindow.h:23
Base frame for implementing GUI - a service class.
Definition TGedFrame.h:27
virtual void MakeTitle(const char *title)
Create attribute frame title.
Definition TGedFrame.cxx:94
Mother of all ROOT objects.
Definition TObject.h:41