]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQASPDChecker.cxx
Method Check updated with some basic checks on histograms (M. Nicassio)
[u/mrichter/AliRoot.git] / ITS / AliITSQASPDChecker.cxx
CommitLineData
5dfa9b71 1/**************************************************************************
2 * Copyright(c) 2007-2009, 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
2eb1130f 16/* $Id $ */
5dfa9b71 17
18// *****************************************
19// Checks the quality assurance
20// by comparing with reference data
21// P. Cerello Apr 2008
22// INFN Torino
23
24// --- ROOT system ---
2eb1130f 25#include "TH1.h"
26#include "TString.h"
5dfa9b71 27
28// --- AliRoot header files ---
29#include "AliITSQASPDChecker.h"
c71529b0 30#include "AliLog.h"
5dfa9b71 31
32ClassImp(AliITSQASPDChecker)
5dfa9b71 33//__________________________________________________________________
34AliITSQASPDChecker& AliITSQASPDChecker::operator = (const AliITSQASPDChecker& qac )
35{
36 // Equal operator.
37 this->~AliITSQASPDChecker();
38 new(this) AliITSQASPDChecker(qac);
39 return *this;
40}
41
3647765c 42
5dfa9b71 43//__________________________________________________________________
2eb1130f 44const Double_t AliITSQASPDChecker::Check(AliQA::ALITASK_t /*index*/, TObjArray * list)
5dfa9b71 45{
3647765c 46 AliDebug(1,Form("AliITSQASPDChecker called with offset: %d\n", fSubDetOffset));
c71529b0 47
2eb1130f 48 Double_t test = 0.0;
49 Int_t count = 0;
5dfa9b71 50
2eb1130f 51 if (list->GetEntries() == 0) {
52 test = 1.; // nothing to check
5dfa9b71 53 }
54 else {
2eb1130f 55 TIter next(list);
56 TH1 * hdata;
57 count = 0;
5dfa9b71 58 while ( (hdata = dynamic_cast<TH1 *>(next())) ) {
59 if (hdata) {
2eb1130f 60 TString histName = hdata->GetName();
61 if (!histName.Contains("_SPD")) continue;
5dfa9b71 62 Double_t rv = 0.;
2eb1130f 63 if (hdata->GetEntries()>0) rv = 1;
64 AliInfo(Form("%s -> %f", hdata->GetName(), rv));
65 count++;
66 test += rv;
5dfa9b71 67 }
68 else{
69 AliError("Data type cannot be processed") ;
70 }
5dfa9b71 71 }
72 if (count != 0) {
73 if (test==0) {
74 AliWarning("Histograms are there, but they are all empty: setting flag to kWARNING");
75 test = 0.5; //upper limit value to set kWARNING flag for a task
76 }
77 else {
2eb1130f 78 test /= count;
5dfa9b71 79 }
80 }
81 }
82
2eb1130f 83 AliInfo(Form("Test Result = %f", test));
5dfa9b71 84 return test ;
2eb1130f 85
5dfa9b71 86}
3647765c 87
88
89//__________________________________________________________________
90void AliITSQASPDChecker::SetTaskOffset(Int_t TaskOffset)
91{
92 fSubDetOffset = TaskOffset;
93}