]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/TRDgui/AliTRDqaGuiBlackGTU.cxx
Adding Domenico Colella as responsible for SPD part in TRI pp
[u/mrichter/AliRoot.git] / TRD / TRDgui / AliTRDqaGuiBlackGTU.cxx
CommitLineData
6a9add6f 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id: AliTRDqaGuiBlackGTU.cxx 23387 2008-01-17 17:25:16Z cblume $ */
17
18//////////////////////////////////////////////////////////////////////////////////
19//
20// This class is a Graphical User Interface for the Quality Monitorig
21// of black (non zero zuppresed) events from TRD.
22// It lets display and browse throu histograms created by the class
23// AliTRDqaBlackEvents.
24// The class works in cooperation with AliTRDqaGuiMainBlack.
25//
26// S. Radomski
27// Uni-Heidelberg
28// June 2008
29//
30//////////////////////////////////////////////////////////////////////////////////
31
32#include "AliTRDqaGuiBlackGTU.h"
33
34#include "TH1D.h"
35#include "TGraph.h"
36#include "TFile.h"
37#include "TCanvas.h"
38#include "TString.h"
39#include "TSystem.h"
40#include "TGaxis.h"
41
42#include "TRootEmbeddedCanvas.h"
43
44ClassImp(AliTRDqaGuiBlackGTU)
45
46//////////////////////////////////////////////////////////////////////////////////
47
48AliTRDqaGuiBlackGTU::AliTRDqaGuiBlackGTU()
49{
50 //
51 // Default constructor
52 //
53
02f3bfcc 54 for (Int_t i = 0; i < 6; i++) {
55 fCanvasList[i] = 0x0;
56 }
57 for (Int_t i = 0; i < 3; i++) {
58 fHistList[i] = 0x0;
59 }
60 for (Int_t i = 0; i < 2; i++) {
61 fGraphList[i] = 0x0;
62 }
63
64 strncpy(fFileName,"",265);
65
6a9add6f 66}
67
68//////////////////////////////////////////////////////////////////////////////////
69
70AliTRDqaGuiBlackGTU::AliTRDqaGuiBlackGTU(TGWindow *parent)
71 : TGCompositeFrame(parent, 720, 500)
72{
73 //
74 // Main constructor
75 //
76
77 SetLayoutManager(new TGMatrixLayout(this,2,3,0,0));
78
79 for(Int_t i=0; i<6; i++) {
80 fCanvasList[i] = new TRootEmbeddedCanvas(Form("pos_%d", i), this, 330, 350);
81 AddFrame(fCanvasList[i]);
82 }
83
84 for(Int_t i=0; i<3; i++) {
85 fHistList[i] = 0;
86 fGraphList[i] = 0;
87 }
88}
89
90//////////////////////////////////////////////////////////////////////////////////
91
92void AliTRDqaGuiBlackGTU::SetQAFile(const char *filename) {
93 //
94 // Set the file with histograms
95 //
96
97 // printf("GTU status \n");
98
99 TGaxis::SetMaxDigits(3);
100
101 const char *names[6] = {
102 "smLink", "smBeaf", "smData",
103 "grSmLink", "grSmBeaf", "grSmData"
104 };
105
106 const char *title[6] = {
107 "connected half-chambers;super-module;half chamber",
108 "beaf-beaf half-chambers;super-module;half chamber",
109 "half-chambers with data;super-module;half chamber",
110
111 "connected half-chambers;event number",
112 "beaf-beaf half-chambers;event number",
113 "half-chambers with data;event number",
114 };
115
116
02f3bfcc 117 strncpy(fFileName,filename,256);
6a9add6f 118
119 for(int i=0; i<3; i++) {
120
121 if (fHistList[i]) delete fHistList[i];
122 if (fGraphList[i]) delete fGraphList[i];
123
124 fHistList[i] = 0;
125 fGraphList[i] = 0;
126 }
127
128 TFile *file = new TFile(filename);
129
130 for(Int_t i=0; i<3; i++) {
131
132 //printf("name = %s\n", names[i]);
133 fHistList[i] = (TH1D*)file->Get(names[i]);
134 // if (fHistList[i]) fHistList[i]->Print();
135
136 if (fHistList[i]) {
137
138 fCanvasList[i]->GetCanvas()->cd();
139 fHistList[i]->SetTitle(title[i]);
140 fHistList[i]->Draw("colz");
141
142 // draw lines
143 for(Int_t stx=1; stx < 5; stx++) {
144 TLine *line = new TLine(-0.5, stx*12-0.5, 17.5, stx*12-0.5);
145 line->Draw();
146 }
147 }
148
149 fGraphList[i] = (TGraph*)file->Get(names[i+3]);
150 if (fGraphList[i]) {
151 fCanvasList[i+3]->GetCanvas()->cd();
152 fGraphList[i]->Draw("apl");
153 fGraphList[i]->GetHistogram()->SetTitle(title[i+3]);
154 fGraphList[i]->SetMinimum(0);
155 fGraphList[i]->SetMaximum(250);
156 fGraphList[i]->SetMarkerStyle(7);
157 }
158 }
159
160 // file->Close();
161}
162
163//////////////////////////////////////////////////////////////////////////////////