]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaGui/AliTRDqaGuiMainAnalysis.h
Updated QA (Sylwester)
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiMainAnalysis.h
CommitLineData
8e2f611a 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
19class TGWindow;
20class TGTab;
21
22class AliTRDqaGuiJPsi;
23class AliTRDqaGuiEnergyDeposit;
24
25class AliTRDqaGuiMainAnalysis : public TGMainFrame {
26
27 public:
28
29 AliTRDqaGuiMainAnalysis();
30 AliTRDqaGuiMainAnalysis(TGWindow *parent);
31 AliTRDqaGuiMainAnalysis& operator = (const AliTRDqaGuiMainAnalysis& /*g*/) { return *this; };
32 AliTRDqaGuiMainAnalysis (const AliTRDqaGuiMainAnalysis&);
33 ~AliTRDqaGuiMainAnalysis() {}
34
35 void SetQAFile();
36
37 protected:
38
39 TGTab *fGTabPanel; // main tab panel
40 AliTRDqaGuiJPsi *fGJPsi; //
41 AliTRDqaGuiEnergyDeposit *fGED;
42
43 ClassDef(AliTRDqaGuiMainAnalysis,1) //
44};
45
46#endif