]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EVE/EveDet/AliEveTOFDigitsInfoEditor.h
there have been some changes in the on-line tracklet and GTU track
[u/mrichter/AliRoot.git] / EVE / EveDet / AliEveTOFDigitsInfoEditor.h
1 #ifndef ALIEVETOFDIGITSINFOEDITOR_H
2 #define ALIEVETOFDIGITSINFOEDITOR_H
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 // $Id$
11 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
12
13 #include <TGedFrame.h>
14
15 class TGCheckButton;
16 class TGNumberEntry;
17 class TGColorSelect;
18
19 class AliEveTOFDigitsInfo;
20
21 class AliEveTOFDigitsInfoEditor : public TGedFrame
22 {
23 public:
24   AliEveTOFDigitsInfoEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
25   virtual ~AliEveTOFDigitsInfoEditor() {}
26
27   virtual void SetModel(TObject* obj);
28
29 protected:
30   AliEveTOFDigitsInfo* fM; // Model object.
31
32 private:
33   AliEveTOFDigitsInfoEditor(const AliEveTOFDigitsInfoEditor&);            // Not implemented
34   AliEveTOFDigitsInfoEditor& operator=(const AliEveTOFDigitsInfoEditor&); // Not implemented
35
36   ClassDef(AliEveTOFDigitsInfoEditor, 0); // Editor for AliEveTOFDigitsInfo
37 };
38
39 #endif