]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Alieve/TPCSector3DEditor.h
Merge from EVE-dev to HEAD.
[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
12namespace Alieve {
13
14class TPCSector3D;
15
16class TPCSector3DEditor : public TGedFrame
17{
18protected:
19 TPCSector3D* fM; // fModel dynamic-casted to TPCSector3DEditor
20
21 TGCheckButton* fRnrFrame;
22 TGNumberEntry* fDriftVel;
23
24
25public:
26 TPCSector3DEditor(const TGWindow* p, Int_t id, Int_t width=170, Int_t height=30,
27 UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
28 virtual ~TPCSector3DEditor();
29
30 virtual void SetModel(TVirtualPad* pad, TObject* obj, Int_t event);
31
32 void DoRnrFrame();
33 void DoDriftVel();
34
35 ClassDef(TPCSector3DEditor, 0); // Editor for TPCSector3D
36}; // endclass TPCSector3DEditor
37
38}
39
40#endif