Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TEvePointSetArrayEditor.cxx
Go to the documentation of this file.
1// @(#)root/eve:$Id$
2// Authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 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
13#include "TEvePointSet.h"
14#include "TEveGValuators.h"
15
16#include "TGDoubleSlider.h"
17
18/** \class TEvePointSetArrayEditor
19\ingroup TEve
20Editor for TEvePointSetArray class.
21*/
22
24
25////////////////////////////////////////////////////////////////////////////////
26/// Constructor.
27
30 UInt_t options, Pixel_t back) :
31 TGedFrame(p,width, height, options | kVerticalFrame, back),
32 fM(nullptr),
33 fRange(nullptr)
34{
35 fM = nullptr;
36 MakeTitle("TEvePointSetArray");
37
38 fRange = new TEveGDoubleValuator(this,"Range", 200, 0);
40 fRange->Build();
41 fRange->GetSlider()->SetWidth(224);
42 fRange->Connect("ValueSet()",
43 "TEvePointSetArrayEditor", this, "DoRange()");
44 AddFrame(fRange, new TGLayoutHints(kLHintsTop, 1, 1, 2, 1));
45}
46
47////////////////////////////////////////////////////////////////////////////////
48/// Destructor.
49
51{
52}
53
54////////////////////////////////////////////////////////////////////////////////
55/// Set model object.
56
58{
59 fM = dynamic_cast<TEvePointSetArray*>(obj);
60
61 // printf("FullRange(%f, %f) Selected(%f,%f)\n",
62 // fM->GetMin(), fM->GetMax(), fM->GetCurMin(), fM->GetCurMax());
63
66}
67
68////////////////////////////////////////////////////////////////////////////////
69/// Slot for setting the range of the separating quantity.
70
72{
74 Update();
75}
@ kVerticalFrame
Definition GuiTypes.h:381
ULong_t Pixel_t
Pixel value.
Definition GuiTypes.h:40
#define ClassImp(name)
Definition Rtypes.h:377
@ kLHintsTop
Definition TGLayout.h:27
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
Composite GUI element for selection of range (label, two number-entries and double-slider).
Float_t GetMin() const
void Build(Bool_t connect=kTRUE) override
Create sub-components (label, number entries, double-slider).
TGDoubleHSlider * GetSlider()
void SetLimits(Int_t min, Int_t max)
Set limits of the represented range for integer values.
Float_t GetMax() const
void SetValues(Float_t min, Float_t max, Bool_t emit=kFALSE)
Set min/max values, optionally emit signal.
void SetNELength(Int_t l)
Editor for TEvePointSetArray class.
TEvePointSetArrayEditor(const TEvePointSetArrayEditor &)
void SetModel(TObject *obj) override
Set model object.
void DoRange()
Slot for setting the range of the separating quantity.
~TEvePointSetArrayEditor() override
Destructor.
An array of point-sets with each point-set playing a role of a bin in a histogram.
void SetRange(Double_t min, Double_t max)
Set active range of the separating quantity.
Double_t fMin
Index of the last filled TEvePointSet.
virtual void AddFrame(TGFrame *f, TGLayoutHints *l=nullptr)
Add frame to the composite frame using the specified layout hints.
Definition TGFrame.cxx:1117
virtual void SetWidth(UInt_t w)
Definition TGFrame.h:246
This class describes layout hints used by the layout classes.
Definition TGLayout.h:50
@ kNESRealTwo
Fixed fraction real, two digit.
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:95
virtual void Update()
Update the current pad when an attribute is changed via GUI.
Definition TGedFrame.cxx:72
Mother of all ROOT objects.
Definition TObject.h:41
Bool_t Connect(const char *signal, const char *receiver_class, void *receiver, const char *slot)
Non-static method is used to connect from the signal of this object to the receiver slot.
Definition TQObject.cxx:869