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