]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Alieve/TPCSector3DEditor.h
Put black-listed classes out of Alieve namespace.
[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
84aff7a4 12class TEveGValuator;
13class TEveGDoubleValuator;
e2bf98a4 14
092578a7 15namespace Alieve {
16
17class TPCSector3D;
18
19class TPCSector3DEditor : public TGedFrame
20{
265ecb21 21 TPCSector3DEditor(const TPCSector3DEditor&); // Not implemented
22 TPCSector3DEditor& operator=(const TPCSector3DEditor&); // Not implemented
23
092578a7 24protected:
e2bf98a4 25 TPCSector3D* fM; // fModel dynamic-casted to TPCSector3DEditor
092578a7 26
e2bf98a4 27 TGCheckButton* fRnrFrame;
84aff7a4 28 TEveGValuator* fDriftVel;
092578a7 29
84aff7a4 30 TEveGValuator* fPointFrac;
31 TEveGValuator* fPointSize;
092578a7 32
33public:
a8600b56 34 TPCSector3DEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30,
092578a7 35 UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
36 virtual ~TPCSector3DEditor();
37
a8600b56 38 virtual void SetModel(TObject* obj);
092578a7 39
40 void DoRnrFrame();
41 void DoDriftVel();
42
e2bf98a4 43 void DoPointFrac();
8a08431f 44 void DoPointSize();
e2bf98a4 45
092578a7 46 ClassDef(TPCSector3DEditor, 0); // Editor for TPCSector3D
47}; // endclass TPCSector3DEditor
48
49}
50
51#endif