2 // Main authors: Matevz Tadel & Alja Mrak-Tadel: 2006, 2007
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 **************************************************************************/
10 #ifndef ALIEVE_TrackFitterEditor_H
11 #define ALIEVE_TrackFitterEditor_H
13 #include <TGedFrame.h>
20 class AliEveTrackFitter;
22 class AliEveTrackFitterEditor : public TGedFrame
25 AliEveTrackFitterEditor(const AliEveTrackFitterEditor&); // Not implemented
26 AliEveTrackFitterEditor& operator=(const AliEveTrackFitterEditor&); // Not implemented
29 AliEveTrackFitter* fM; // fModel dynamic-casted to AliEveTrackFitterEditor
31 TGTextButton* fFit; // button to fit selection
32 TGTextButton* fReset; // button to reset selection
33 TGTextButton* fStart; // button to connect to signal
34 TGTextButton* fStop; // button to disconnect from signal
35 TGTextButton* fGraph; // button to draw graph
38 AliEveTrackFitterEditor(const TGWindow* p=0, Int_t width=170, Int_t height=30, UInt_t options = kChildFrame, Pixel_t back=GetDefaultFrameBackground());
39 virtual ~AliEveTrackFitterEditor() {}
41 virtual void SetModel(TObject* obj);
49 ClassDef(AliEveTrackFitterEditor, 0); // Editor for AliEveTrackFitter class.