]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveDet/AliEveTOFStripEditor.h
From Massimo: remove usage of AliITSgeom, use AliITSgeomTGeo instead.
[u/mrichter/AliRoot.git] / EVE / EveDet / AliEveTOFStripEditor.h
1 // $Id$
2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
3
4 /**************************************************************************
5  * Copyright(c) 1998-2008, ALICE Experiment at CERN, all rights reserved. *
6  * See http://aliceinfo.cern.ch/Offline/AliRoot/License.html for          *
7  * full copyright notice.                                                 *
8  **************************************************************************/
9
10 #ifndef ALIEVE_TOFStripEditor_H
11 #define ALIEVE_TOFStripEditor_H
12
13 #include <TGedFrame.h>
14
15 class TGCheckButton;
16 class TGNumberEntry;
17 class TGColorSelect;
18
19 class TGHSlider;
20
21 class TEveGValuator;
22 class TEveGDoubleValuator;
23  
24
25 class AliEveTOFStrip;
26
27 class AliEveTOFStripEditor : public TGedFrame
28 {
29 private:
30   AliEveTOFStripEditor(const AliEveTOFStripEditor&);            // Not implemented
31   AliEveTOFStripEditor& operator=(const AliEveTOFStripEditor&); // Not implemented
32
33 protected:
34   AliEveTOFStrip* fM; // fModel dynamic-casted to AliEveTOFStripEditor
35
36   // Declare widgets
37   // TGSomeWidget*   fXYZZ;
38
39   TEveGValuator*    fThreshold;
40   TEveGValuator*    fMaxVal;
41
42 public:
43   AliEveTOFStripEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
44   virtual ~AliEveTOFStripEditor();
45
46   virtual void SetModel(TObject* obj);
47   void DoThreshold();
48   void DoMaxVal();
49
50   // Declare callback/slot methods
51   // void DoXYZZ();
52
53   ClassDef(AliEveTOFStripEditor, 0); // Editor for AliEveTOFStrip
54 }; // endclass AliEveTOFStripEditor
55
56
57 #endif