]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPainterDataSourceFrame.h
mchview version 0.93
[u/mrichter/AliRoot.git] / MUON / AliMUONPainterDataSourceFrame.h
CommitLineData
0145e89a 1#ifndef ALIMUONPAINTERDATASOURCEFRAME_H
2#define ALIMUONPAINTERDATASOURCEFRAME_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5* See cxx source for full Copyright notice */
6
7// $Id$
8
9/// \ingroup graphics
10/// \class AliMUONPainterDataSourceFrame
11/// \brief Frame to select input data source(s) to be displayed
12///
13// Author Laurent Aphecetche, Subatech
14
15#ifndef ROOT_TGFrame
16# include <TGFrame.h>
17#endif
18
10eb3d17 19class AliMUONPainterDataSourceItem;
0145e89a 20class AliMUONVTrackerDataMaker;
8741815f 21class TGCheckButton;
0145e89a 22class TGComboBox;
8741815f 23class TGGroupFrame;
24class TGNumberEntry;
25class TGTextEntry;
26class TObjArray;
0145e89a 27
28class AliMUONPainterDataSourceFrame : public TGCompositeFrame
29{
30public:
31 AliMUONPainterDataSourceFrame(const TGWindow* p, UInt_t w, UInt_t h);
32 virtual ~AliMUONPainterDataSourceFrame();
33
8741815f 34 void CalibrateButtonClicked();
35
0145e89a 36 void CreateOCDBDataSource();
37
38 void CreateRawDataSource();
39
49419555 40 void DataMakerWasRegistered(AliMUONVTrackerDataMaker* reader);
0145e89a 41
49419555 42 void DataMakerWasUnregistered(AliMUONVTrackerDataMaker* reader);
0145e89a 43
10eb3d17 44 void HistogramButtonClicked();
45
0145e89a 46 void OpenFileDialog();
47
48 void OpenRecentSource();
10eb3d17 49
50 void StartRunning(AliMUONPainterDataSourceItem* item);
51
52 void StopRunning(AliMUONPainterDataSourceItem* item);
53
0145e89a 54private:
55 /// Not implemented
56 AliMUONPainterDataSourceFrame(const AliMUONPainterDataSourceFrame& rhs);
57 /// Not implemented
58 AliMUONPainterDataSourceFrame& operator=(const AliMUONPainterDataSourceFrame& rhs);
59
60 void AddRecentSource(const char* name);
61
62 Bool_t CreateRawDataSource(const TString& uri);
63
64 void CreateOCDBDataSource(const TString& uri);
65
66 void CreateOCDBDataSource(const TString& cdbPath, Int_t runNumber, const TString& type);
67
68private:
69
70 TGGroupFrame* fRecentSourceSelector; ///< to select recently used sources
8741815f 71
0145e89a 72 TGGroupFrame* fRawSelector; ///< to select a new raw data source
8741815f 73 TGCompositeFrame* fRawSelector2; ///< idem
74 TGCompositeFrame* fRawSelector21; ///< idem
75 TGCompositeFrame* fRawSelector22; ///< idem
76 TGCompositeFrame* fRawSelector23; ///< idem
10eb3d17 77 TGCheckButton* fCalibrateNoGain; ///< to trig calibration of raw data (only 0 suppression)
78 TGCheckButton* fCalibrateGainConstantCapa; ///< to trig calibration of raw data (0-supp and gain w/ constant capacitance)
79 TGCheckButton* fCalibrateGain; ///< to trig calibration of raw data (full blown calibration)
8741815f 80 TGCheckButton* fHistogramButton; ///< to trig histogramming of raw data
10eb3d17 81 TGNumberEntry* fHistoMin; ///< xmin of histo to make
82 TGNumberEntry* fHistoMax; ///< xmax of histo to make
8741815f 83 TGTextEntry* fRawOCDBPath; ///< OCDB path for raw data calibration
84
0145e89a 85 TGGroupFrame* fOCDBSelector; ///< to select a new OCDB data source
86 TGGroupFrame* fDataReaders; ///< to display currently active data sources
87 TGTextEntry* fFilePath; ///< raw data file path text entry widget
0145e89a 88 TGTextEntry* fOCDBPath; ///< OCDB path text entry widget
89 TGNumberEntry* fRunSelector; ///< OCDB run number entry widget
90 TGComboBox* fOCDBTypes; ///< OCDB type combo box entry widget
91 TGComboBox* fRecentSources; ///< recent sources combo box
92 TObjArray* fItems; ///< list of data readers we handle
93
94 static const char* fgkNumberOfDataSourcesKey; ///< key used to store the # of data sources in the resource file
95 static const char* fgkDataSourceURIKey; ///< key usde to store the data source URIs in the resource file
96
8741815f 97 ClassDef(AliMUONPainterDataSourceFrame,2) // Data source selection frame
0145e89a 98};
99
100#endif