]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/TRDgui/AliTRDqaGuiMainBlack.h
Resolving all symbols in the library
[u/mrichter/AliRoot.git] / TRD / TRDgui / AliTRDqaGuiMainBlack.h
1 #ifndef ALITRDQAGUIMAINBLACK_H
2 #define ALITRDQAGUIMAINBLACK_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: AliTRDqaGuiMainBlack.h 23387 2008-01-17 17:25:16Z cblume $ */
8
9 //////////////////////////////////////////////////////////////////////////////////
10 //
11 // This class is a Graphical User Interface for the Quality Monitorig 
12 // of clusters. It lets display and browse throu histograms created by 
13 // the AliTRDQADataMakerRec run during the reconstruction 
14 //
15 // S. Radomski 
16 // Uni-Heidelberg
17 // Feb. 2008
18 // 
19 //////////////////////////////////////////////////////////////////////////////////
20
21 #include "TGFrame.h"
22
23 class TGWindow;
24 class TGTab;
25
26 class AliTRDqaGuiBlackSM;
27 class AliTRDqaGuiBlackChamber;  
28 class AliTRDqaGuiBlackError;
29 class AliTRDqaGuiBlackGlobal;
30 class AliTRDqaGuiBlackGTU;
31
32 class AliTRDqaGuiMainBlack : public TGMainFrame {
33
34  public:
35
36   AliTRDqaGuiMainBlack(TGWindow *parent);
37   ~AliTRDqaGuiMainBlack() {}
38
39   void SetQAFile(const char *file);
40
41  protected:
42   
43   TGTab *fGTabPanel;                   // Something
44    
45   AliTRDqaGuiBlackSM       *fGSM;      // Something else
46   AliTRDqaGuiBlackChamber  *fGChamber; // Something 
47   AliTRDqaGuiBlackError    *fGError;  // somethig
48   AliTRDqaGuiBlackGlobal   *fGGlobal;  // global view
49   AliTRDqaGuiBlackGTU      *fGGTU;      // view status of optical links
50
51  private:  
52   AliTRDqaGuiMainBlack& operator = (const AliTRDqaGuiMainBlack& /*g*/) { return *this; };
53   AliTRDqaGuiMainBlack(const AliTRDqaGuiMainBlack &);
54
55   ClassDef(AliTRDqaGuiMainBlack,1)     // Does something
56
57 };
58
59 #endif