]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ACORDE/AliACORDEQADataMakerRec.cxx
Make and print an image of QA user flagged histograms (Yves)
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQADataMakerRec.cxx
CommitLineData
51504028 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// Produces the data needed to calculate the quality assurance.
17// All data must be mergeable objects.
18
19
20// Authors:
21//
22// Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)
23// Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP)
24// Arturo Fernandez Tellez <afernan@mail.cern.ch (FCFM-BUAP)
25//
26// Created: June 13th 2008
27//---
491ceb3e 28// Last Update: Aug. 27th 2008 --> Implementation to declare QA expert histogram
51504028 29
30
31// --- ROOT system ---
32#include <TClonesArray.h>
33#include <TFile.h>
34#include <TH1F.h>
35#include <TDirectory.h>
36// --- Standard library ---
37
38// --- AliRoot header files ---
39#include "AliESDEvent.h"
40#include "AliLog.h"
41#include "AliACORDEdigit.h"
42#include "AliACORDEhit.h"
43#include "AliACORDEQADataMakerRec.h"
44#include "AliQAChecker.h"
45#include "AliACORDERawReader.h"
46#include "AliACORDERawStream.h"
47ClassImp(AliACORDEQADataMakerRec)
48
49//____________________________________________________________________________
4e25ac79 50AliACORDEQADataMakerRec::AliACORDEQADataMakerRec():AliQADataMakerRec(AliQAv1::GetDetName(AliQAv1::kACORDE), "ACORDE Quality Assurance Data Maker")
51504028 51{
52
53}
54//____________________________________________________________________________
55AliACORDEQADataMakerRec::AliACORDEQADataMakerRec(const AliACORDEQADataMakerRec& qadm):AliQADataMakerRec()
56{
57 SetName((const char*)qadm.GetName()) ;
58 SetTitle((const char*)qadm.GetTitle());
59}
60//__________________________________________________________________
61AliACORDEQADataMakerRec& AliACORDEQADataMakerRec::operator = (const AliACORDEQADataMakerRec& qadm )
62{
63 // Equal operator.
64 this->~AliACORDEQADataMakerRec();
65 new(this) AliACORDEQADataMakerRec(qadm);
66 return *this;
67}
68//____________________________________________________________________________
4e25ac79 69void AliACORDEQADataMakerRec::EndOfDetectorCycle(AliQAv1::TASKINDEX_t task, TObjArray ** list)
51504028 70{
71 //Detector specific actions at end of cycle
72 // do the QA checking
4e25ac79 73 AliQAChecker::Instance()->Run(AliQAv1::kACORDE, task, list) ;
51504028 74}
75
76//____________________________________________________________________________
77void AliACORDEQADataMakerRec::StartOfDetectorCycle()
78{
79 //Detector specific actions at start of cycle
80
81}
82
83//____________________________________________________________________________
84void AliACORDEQADataMakerRec::InitRaws()
85{
86 // create Raw histograms in Raw subdir
87
7d297381 88 const Bool_t expert = kTRUE ;
89 const Bool_t saveCorr = kTRUE ;
90 const Bool_t image = kTRUE ;
91
92 TH1D *fhACORDEBitPattern[4];
93 fhACORDEBitPattern[0] = new TH1D("ACORDERawDataSM","ACORDE-SingleMuon",60,1,60);//AcordeSingleMuon BitPattern
94 fhACORDEBitPattern[1] = new TH1D("ACORDERawDataMM","ACORDE-MultiMuon",60,1,60);//AcordeMultiMuon BitPattern
95 fhACORDEBitPattern[2] = new TH1D("ACORDERawDataSMM","ACORDE-SingleMuonMultiplicity",60,1,60);//AcordeSingleMuon Multiplicity
96 fhACORDEBitPattern[3] = new TH1D("ACORDERawDataMMM","ACORDE-MultiMuonMultiplicity",60,1,60);//AcordeMultiMuon Multiplicity
97 for(Int_t i=0;i<4;i++)
98 Add2RawsList(fhACORDEBitPattern[i],i,!expert, image, !saveCorr);
51504028 99}
100//____________________________________________________________________________
101
102void AliACORDEQADataMakerRec::InitRecPoints()
103{
104 // create cluster histograms in RecPoint subdir
105 // Not needed for ACORDE by now !!!
106}
107//____________________________________________________________________________
108void AliACORDEQADataMakerRec::InitESDs()
109{
110 //create ESDs histograms in ESDs subdir
111
7d297381 112 const Bool_t expert = kTRUE ;
113 const Bool_t image = kTRUE ;
114
115 TH1F * fhESDsSingle;
116 TH1F * fhESDsMulti;
51504028 117
118 TString name;
119
120 name = "hESDsSingle";
121 fhESDsSingle = new TH1F(name.Data(),"hESDsSingle",60,0,60);
7d297381 122 Add2ESDsList(fhESDsSingle,0,!expert,image);
51504028 123
124 name = "hESDsMulti";
125 fhESDsMulti = new TH1F(name.Data(),"hESDsMulti",60,0,60);
7d297381 126 Add2ESDsList(fhESDsMulti,1,!expert,image);
51504028 127}
128//____________________________________________________________________________
129void AliACORDEQADataMakerRec::MakeRaws(AliRawReader* rawReader)
130{
131 //fills QA histos for RAW
132 rawReader->Reset();
133 AliACORDERawStream rawStream(rawReader);
134 size_t contSingle=0;
135 size_t contMulti=0;
136 UInt_t dy[4];
137
138 bool kroSingle[60],kroMulti[60];
139 UInt_t tmpDy;
140
141 for(Int_t m=0;m<60;m++) {kroSingle[m]=0;kroMulti[m]=0;}
142
143if(rawStream.Next())
144{
51504028 145 dy[0]=rawStream.GetWord(0);
146 dy[1]=rawStream.GetWord(1);
147 dy[2]=rawStream.GetWord(2);
148 dy[3]=rawStream.GetWord(3);
149 tmpDy=dy[0];
150 for(Int_t r=0;r<30;++r)
151 {
152 kroSingle[r] = tmpDy & 1;
153 tmpDy>>=1;
154 }
155 tmpDy=dy[1];
156 for(Int_t r=30;r<60;++r)
157 {
158 kroSingle[r] = tmpDy & 1;
159 tmpDy>>=1;
160 }
161 tmpDy=dy[2];
162 for(Int_t r=0;r<30;++r)
163 {
164 kroMulti[r] = tmpDy & 1;
165 tmpDy>>=1;
166 }
167 tmpDy=dy[3];
168 for(Int_t r=30;r<60;++r)
169 {
170 kroMulti[r] = tmpDy & 1;
171 tmpDy>>=1;
172 }
173 contSingle=0;
174 contMulti=0;
175 for(Int_t r=0;r<60;++r)
176 {
177 if(kroSingle[r]==1)
178 {
179 GetRawsData(0)->Fill(r+1);
180 contSingle=contSingle+1;
181 }
182 if(kroMulti[r]==1)
183 {
184 GetRawsData(1)->Fill(r+1);
185 contMulti++;
186 }
187
188 }GetRawsData(2)->Fill(contSingle);GetRawsData(3)->Fill(contMulti);
189}
190}
191//____________________________________________________________________________
51504028 192void AliACORDEQADataMakerRec::MakeESDs(AliESDEvent * esd)
193{
194 //fills QA histos for ESD
195
196 AliESDACORDE * fESDACORDE= esd->GetACORDEData();
197 Int_t *fACORDEMultiMuon =fESDACORDE->GetACORDEMultiMuon();
198 Int_t *fACORDESingleMuon=fESDACORDE->GetACORDESingleMuon();
199
200 for(int i=0;i<60;i++){
201 if(fACORDESingleMuon[i]==1)
202 GetESDsData(0) -> Fill(i);
203 if(fACORDEMultiMuon[i]==1)
204 GetESDsData(1) -> Fill(i);
205 }
206
207
208
209
210}
211