]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/qaGui/AliTRDqaGuiMainAnalysis.h
1) Centrality dependent thresholds parameters
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiMainAnalysis.h
1 #ifndef ALITRDQAGUIMAINANALYSIS_H
2 #define ALITRDQAGUIMAINANALYSIS_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 // Feb. 2008
14 // 
15 //////////////////////////////////////////////////////////////////////////////////
16
17 #include "TGFrame.h"
18
19 class TGWindow;
20 class TGTab;
21
22 class AliTRDqaGuiJPsi;
23 class AliTRDqaGuiEnergyDeposit;
24
25 class AliTRDqaGuiMainAnalysis : public TGMainFrame {
26  
27  public:
28
29   AliTRDqaGuiMainAnalysis();
30   AliTRDqaGuiMainAnalysis(TGWindow *parent);
31   ~AliTRDqaGuiMainAnalysis() {}
32
33   void SetQAFile();
34   
35  protected:
36   
37   TGTab *fGTabPanel;                  // main tab panel
38   AliTRDqaGuiJPsi          *fGJPsi;       // 
39   AliTRDqaGuiEnergyDeposit *fGED;
40
41  private:
42   AliTRDqaGuiMainAnalysis& operator = (const AliTRDqaGuiMainAnalysis& /*g*/) { return *this; };
43   AliTRDqaGuiMainAnalysis (const AliTRDqaGuiMainAnalysis&);
44
45   ClassDef(AliTRDqaGuiMainAnalysis,1) //
46 };
47
48 #endif