]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - PHOS/AliPHOSPreprocessor.h
Switch off global QA for the moment
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPreprocessor.h
... / ...
CommitLineData
1#ifndef ALIPHOSPREPROCESSOR_H
2#define ALIPHOSPREPROCESSOR_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8///////////////////////////////////////////////////////////////////////////////
9// Class AliPHOSPreprocessor
10///////////////////////////////////////////////////////////////////////////////
11
12
13#include "AliPreprocessor.h"
14#include "TFile.h"
15
16class AliPHOSPreprocessor : public AliPreprocessor {
17public:
18
19 AliPHOSPreprocessor();
20 AliPHOSPreprocessor(AliShuttleInterface* shuttle);
21
22protected:
23
24 virtual UInt_t Process(TMap* valueSet);
25 Bool_t ProcessLEDRun();
26 Bool_t FindBadChannelsEmc();
27 Bool_t CalibrateEmc();
28 Float_t HG2LG(Int_t module, Int_t X, Int_t Z, TFile* f);
29
30 ClassDef(AliPHOSPreprocessor,1);
31
32};
33
34#endif