]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ACORDE/AliACORDEQAChecker.cxx
fixing coding violations
[u/mrichter/AliRoot.git] / ACORDE / AliACORDEQAChecker.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// Checks the quality assurance for ACORDE.
17// Default implementation
18// Authors:
19// Mario Rodriguez Cahuantzi <mrodrigu@mail.cern.ch> (FCFM-BUAP)
20// Luciano Diaz Gonzalez <luciano.diaz@nucleares.unam.mx> (ICN-UNAM)
21// Arturo Fernandez <afernan@mail.cern.ch> (FCFM-BUAP)
22//...
23
24// --- ROOT system ---
25#include <TClass.h>
26#include <TH1F.h>
27#include <TH1I.h>
28#include <TIterator.h>
29#include <TKey.h>
30#include <TFile.h>
31
32// --- Standard library ---
33
34// --- AliRoot header files ---
35#include "AliLog.h"
36#include "AliQA.h"
37#include "AliQAChecker.h"
38#include "AliACORDEQAChecker.h"
39
40ClassImp(AliACORDEQAChecker)
41
57acd2d2 42//____________________________________________________________________________
43Double_t * AliACORDEQAChecker::Check(AliQA::ALITASK_t /*index*/)
44{
45 Double_t * rv = new Double_t[AliRecoParam::kNSpecies] ;
46 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++)
47 rv[specie] = 0.0 ;
48 return rv ;
49}
f307c383 50
57acd2d2 51//__________________________________________________________________
52Double_t * AliACORDEQAChecker::Check(AliQA::ALITASK_t /*index*/, TObjArray ** list)
f307c383 53{
54
55
56// Super-basic check on the QA histograms on the input list:
57 // look whether they are empty!
57acd2d2 58 Double_t * test = new Double_t[AliRecoParam::kNSpecies] ;
59 Int_t * count = new Int_t[AliRecoParam::kNSpecies] ;
60 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
61 test[specie] = 0.0 ;
62 count[specie] = 0 ;
f307c383 63 }
57acd2d2 64
65 for (Int_t specie = 0 ; specie < AliRecoParam::kNSpecies ; specie++) {
66 if (list[specie]->GetEntries() == 0){
67 test[specie] = 1. ; // nothing to check
f307c383 68 }
57acd2d2 69 else {
70 TIter next(list[specie]) ;
71 TH1 * hdata ;
72 while ( (hdata = dynamic_cast<TH1 *>(next())) ) {
73 if (hdata) {
74 Double_t rv = 0.0 ;
75 if(hdata->GetEntries()>0)rv=1;
76 AliInfo(Form("%s -> %f", hdata->GetName(), rv)) ;
77 count[specie]++ ;
78 test[specie] += rv ;
79 }
80 else{
81 AliError("Data type cannot be processed") ;
82 }
f307c383 83 }
57acd2d2 84 if (count[specie] != 0) {
85 if (test[specie]==0) {
86 AliWarning("Histograms are there, but they are all empty: setting flag to kWARNING");
87 test[specie] = 0.5; //upper limit value to set kWARNING flag for a task
88 }
89 else {
90 test[specie] /= count[specie] ;
91 }
f307c383 92 }
93 }
57acd2d2 94 AliInfo(Form("Test Result = %f", test[specie])) ;
f307c383 95 }
f307c383 96 return test ;
f307c383 97}
98