]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Alieve/TPCSector3DEditor.h
Put all the naming conventions into AlIQA
[u/mrichter/AliRoot.git] / EVE / Alieve / TPCSector3DEditor.h
CommitLineData
092578a7 1// $Header$
2
3#ifndef ALIEVE_TPCSector3DEditor_H
4#define ALIEVE_TPCSector3DEditor_H
5
6#include <Alieve/TPCSector2DEditor.h>
7
8class TGCheckButton;
9class TGNumberEntry;
10class TGColorSelect;
11
e2bf98a4 12namespace Reve {
13class RGValuator;
14class RGDoubleValuator;
15}
16
092578a7 17namespace Alieve {
18
19class TPCSector3D;
20
21class TPCSector3DEditor : public TGedFrame
22{
265ecb21 23 TPCSector3DEditor(const TPCSector3DEditor&); // Not implemented
24 TPCSector3DEditor& operator=(const TPCSector3DEditor&); // Not implemented
25
092578a7 26protected:
e2bf98a4 27 TPCSector3D* fM; // fModel dynamic-casted to TPCSector3DEditor
092578a7 28
e2bf98a4 29 TGCheckButton* fRnrFrame;
30 Reve::RGValuator* fDriftVel;
092578a7 31
e2bf98a4 32 Reve::RGValuator* fPointFrac;
8a08431f 33 Reve::RGValuator* fPointSize;
092578a7 34
35public:
a8600b56 36 TPCSector3DEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
092578a7 37 UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
38 virtual ~TPCSector3DEditor();
39
a8600b56 40 virtual void SetModel(TObject* obj);
092578a7 41
42 void DoRnrFrame();
43 void DoDriftVel();
44
e2bf98a4 45 void DoPointFrac();
8a08431f 46 void DoPointSize();
e2bf98a4 47
092578a7 48 ClassDef(TPCSector3DEditor, 0); // Editor for TPCSector3D
49}; // endclass TPCSector3DEditor
50
51}
52
53#endif