]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/qaGui/AliTRDqaGuiClusters.h
Protection in case we read older data.
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiClusters.h
CommitLineData
36f55715 1#ifndef ALITRDQAGUICLUSTERS_H
2#define ALITRDQAGUICLUSTERS_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: AliTRDqaGuiClusters.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 on the full detector level.
13// It displays histograms created by the AliTRDQADataMakerRec
14// run during the reconstruction
15//
16// S. Radomski
17// Uni-Heidelberg
18// Feb. 2008
19//
20//////////////////////////////////////////////////////////////////////////////////
21
22#include "TGFrame.h"
23
24class TH1D;
25class TRootEmbeddedCanvas;
26
27class AliTRDqaGuiClusters : public TGCompositeFrame {
28
29 public:
30
31 AliTRDqaGuiClusters() {}
32 AliTRDqaGuiClusters(TGWindow *parent);
33 AliTRDqaGuiClusters& operator = (const AliTRDqaGuiClusters& /*g*/) { return *this; };
80c0ced7 34 AliTRDqaGuiClusters(const AliTRDqaGuiClusters &);
36f55715 35 ~AliTRDqaGuiClusters() {}
36
37 void SetQAFile(const char *filename);
38
39 protected:
40
41 const char *fNameList[4]; // list of histogram names
42 static const Int_t fgkLogList[4]; // flag for log scale
43
44 TRootEmbeddedCanvas *fCanvasList[4]; // list of canvases
45 TH1D *fHistList[4]; // and histograms
46
47 ClassDef(AliTRDqaGuiClusters,1) //
48};
49
50#endif