]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSQASPDChecker.h
New EMCAL cosmic trigger as defined by Federico A.
[u/mrichter/AliRoot.git] / ITS / AliITSQASPDChecker.h
CommitLineData
5dfa9b71 1#ifndef ALIITSQASPDCHECKER_H
2#define ALIITSQASPDCHECKER_H
3/* Copyright(c) 2007-2009, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6
7/* $Id$ */
8
9//
10// Checks the quality assurance.
11// By comparing with reference data
12// INFN Torino
13// P. Cerello - apr 2008
14//
15
16
17// --- ROOT system ---
18class TFile ;
19class TH2F ;
20
21// --- AliRoot header files ---
4e25ac79 22#include "AliQAv1.h"
5dfa9b71 23#include "AliQACheckerBase.h"
24#include "AliITSQAChecker.h"
25class AliITSLoader ;
26
27class AliITSQASPDChecker: public TObject {
28
29public:
3647765c 30 AliITSQASPDChecker():fSubDetOffset(0) {;} // ctor
5dfa9b71 31 AliITSQASPDChecker& operator = (const AliITSQASPDChecker& qac) ; //operator =
32 virtual ~AliITSQASPDChecker() {;} // dtor
4e25ac79 33 Double_t Check(AliQAv1::ALITASK_t index, TObjArray * list);
3647765c 34 void SetTaskOffset(Int_t TaskOffset);
5dfa9b71 35private:
36
3647765c 37 AliITSQASPDChecker(const AliITSQASPDChecker& /*qac*/):TObject(),fSubDetOffset(0){;} // cpy ctor
38 Int_t fSubDetOffset; // checking operation starting point
5dfa9b71 39 ClassDef(AliITSQASPDChecker,1) // description
40
41};
42
43#endif // AliITSQASPDChecker_H