]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/qaGui/AliTRDqaGuiEnergyDeposit.h
Updated QA (Sylwester)
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiEnergyDeposit.h
1 #ifndef ALITRDQAGUIENERGYDEPOSIT_H
2 #define ALITRDQAGUIENERGYDEPOSIT_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 //////////////////////////////////////////////////////////////////////////////////
8 //
9 // This class is a Graphical User Interface for the Quality Monitorig 
10 //
11 // S. Radomski 
12 // Uni-Heidelberg
13 // April 2008
14 // 
15 //////////////////////////////////////////////////////////////////////////////////
16
17 #include "TGFrame.h"  
18
19 class TH1D;
20 class TString;
21 class TGLabel;
22 class TGComboBox;
23 class TGTextButton;
24 class TRootEmbeddedCanvas;
25
26 class AliTRDqaGuiEnergyDeposit : public TGCompositeFrame {
27
28  public:
29
30   AliTRDqaGuiEnergyDeposit();
31   AliTRDqaGuiEnergyDeposit(TGWindow *parent);
32   AliTRDqaGuiEnergyDeposit& operator = (const AliTRDqaGuiEnergyDeposit& /*g*/) { return *this; };
33   AliTRDqaGuiEnergyDeposit(const AliTRDqaGuiEnergyDeposit&);
34   ~AliTRDqaGuiEnergyDeposit() {}
35   
36   void SetQAFile(const char *filename);
37   void SetType(Int_t idx);
38
39   void PreviusType()         {if (fIdx > 0) SetType(fIdx-1);}   // *SLOT*
40   void NextType()            {if (fIdx < 17) SetType(fIdx+1);}  // *SLOT*
41   void SelectType(Int_t idx) {SetType(idx);} // *SLOT*
42   
43  protected:
44
45   Int_t fIdx;                          // super module index
46   const char *fNameList[6];            // names of histograms
47
48   char fFileName[256];                 // file with histograms
49  
50   TRootEmbeddedCanvas *fCanvasList[6];  // canvases
51   TH1D *fHistList[6];                   // and histograms
52   
53   // 
54   TGCompositeFrame *fGPanel;            // panel with buttons
55   TGCompositeFrame *fGCanvas;           // and with histograms
56   
57   // steering panel
58   TGComboBox   *fGSelect;    // step selector button 
59   TGTextButton *fGPrev;      // previus step
60   TGTextButton *fGNext;      // next step
61
62   ClassDef(AliTRDqaGuiEnergyDeposit,1) // 
63 };
64
65 #endif