]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/qaGui/AliTRDqaGuiBlackGlobal.cxx
QA ref defaut storage setter in sim and rec
[u/mrichter/AliRoot.git] / TRD / qaGui / AliTRDqaGuiBlackGlobal.cxx
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: AliTRDqaGuiBlackGlobal.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 "AliTRDqaGuiBlackGlobal.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
44 ClassImp(AliTRDqaGuiBlackGlobal)
45
46 //////////////////////////////////////////////////////////////////////////////////
47
48 AliTRDqaGuiBlackGlobal::AliTRDqaGuiBlackGlobal() 
49 {
50   //
51   // Default constructor
52   //
53
54 }
55
56 //////////////////////////////////////////////////////////////////////////////////
57
58 AliTRDqaGuiBlackGlobal::AliTRDqaGuiBlackGlobal(TGWindow *parent) 
59   : TGCompositeFrame(parent, 720, 500)
60 {
61   //
62   // Main constructor
63   //
64     
65   SetLayoutManager(new TGMatrixLayout(this,2,3,0,0));
66
67   for(Int_t i=0; i<6; i++) {
68     fCanvasList[i] = new TRootEmbeddedCanvas(Form("pos_%d", i), this, 330, 350);
69     AddFrame(fCanvasList[i]);
70   }
71   
72   for(Int_t i=0; i<3; i++) {
73     fHistList[i] = 0;
74     fGraphList[i] = 0;
75   }
76 }
77
78 //////////////////////////////////////////////////////////////////////////////////
79
80 void AliTRDqaGuiBlackGlobal::SetQAFile(const char *filename) {
81   //
82   // Set the file with histograms
83   //
84
85   TGaxis::SetMaxDigits(3);
86   
87   const char *names[6] = {
88     "noiseTotal", "peakPeak", "mcmEvDist_999",
89     "trendMCM", "fracPP_0", "nADCinEvent"
90   };  
91
92   const char *title[6] = {
93     ";noise (ADC)", 
94     ";peak-peak (ADC)",
95     ";#Delta Event Number from MCM",
96
97     "number of active MCMs;event number",
98     "number of ADCs with PP > 10;event number",
99     "number of ADC chanels;event number"
100   };
101
102
103   strcpy(fFileName,filename);
104  
105   for(int i=0; i<3; i++) {
106
107     if (fHistList[i]) delete fHistList[i];
108     if (fGraphList[i]) delete fGraphList[i];
109
110     fHistList[i] = 0;
111     fGraphList[i] = 0;
112   }
113   
114   TFile *file = new TFile(filename);
115   
116   for(Int_t i=0; i<3; i++) {
117
118     fHistList[i] = (TH1D*)file->Get(names[i]);
119     if (fHistList[i]) {
120       
121       fCanvasList[i]->GetCanvas()->cd();
122       gPad->SetLogy();      
123       fHistList[i]->Draw();
124       fHistList[i]->SetTitle(title[i]);
125     }
126     
127     
128     fGraphList[i] = (TGraph*)file->Get(names[i+3]);
129     if (fGraphList[i]) {
130       fCanvasList[i+3]->GetCanvas()->cd();
131       fGraphList[i]->Draw("apl");
132       fGraphList[i]->SetMarkerStyle(7);
133       fGraphList[i]->GetHistogram()->SetTitle(title[i+3]);
134     }
135   }
136 }
137
138 //////////////////////////////////////////////////////////////////////////////////