]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Alieve/TPCSector3DEditor.h
Try to fix Delete problem in trigger code
[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{
23protected:
e2bf98a4 24 TPCSector3D* fM; // fModel dynamic-casted to TPCSector3DEditor
092578a7 25
e2bf98a4 26 TGCheckButton* fRnrFrame;
27 Reve::RGValuator* fDriftVel;
092578a7 28
e2bf98a4 29 Reve::RGValuator* fPointFrac;
8a08431f 30 Reve::RGValuator* fPointSize;
092578a7 31
32public:
33 TPCSector3DEditor(const TGWindow* p, Int_t id, Int_t width=170, Int_t height=30,
34 UInt_t options=kChildFrame, Pixel_t back=GetDefaultFrameBackground());
35 virtual ~TPCSector3DEditor();
36
37 virtual void SetModel(TVirtualPad* pad, TObject* obj, Int_t event);
38
39 void DoRnrFrame();
40 void DoDriftVel();
41
e2bf98a4 42 void DoPointFrac();
8a08431f 43 void DoPointSize();
e2bf98a4 44
092578a7 45 ClassDef(TPCSector3DEditor, 0); // Editor for TPCSector3D
46}; // endclass TPCSector3DEditor
47
48}
49
50#endif