]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - EVE/Reve/PointSetArrayEditor.h
Added method SetGeoHMatrix(), initializing TGeoHMatrix from ZTrans.
[u/mrichter/AliRoot.git] / EVE / Reve / PointSetArrayEditor.h
... / ...
CommitLineData
1// $Header$
2
3#ifndef REVE_PointSetArrayEditor_H
4#define REVE_PointSetArrayEditor_H
5
6#include <TGedFrame.h>
7
8class TGCheckButton;
9class TGNumberEntry;
10class TGColorSelect;
11
12namespace Reve {
13
14class RGValuator;
15class RGDoubleValuator;
16
17class PointSetArray;
18
19class PointSetArrayEditor : public TGedFrame
20{
21 PointSetArrayEditor(const PointSetArrayEditor&); // Not implemented
22 PointSetArrayEditor& operator=(const PointSetArrayEditor&); // Not implemented
23
24protected:
25 PointSetArray* fM; // fModel dynamic-casted to PointSetArrayEditor
26
27 Reve::RGDoubleValuator* fRange;
28
29public:
30 PointSetArrayEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
31 UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
32 ~PointSetArrayEditor();
33
34 virtual void SetModel(TObject* obj);
35
36 void DoRange();
37
38 ClassDef(PointSetArrayEditor, 1); // Editor for PointSetArray
39}; // endclass PointSetArrayEditor
40
41}
42
43#endif