]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSPreprocessor.h
Create the rec-point branch even in the case of no digits. Please review and fix...
[u/mrichter/AliRoot.git] / PHOS / AliPHOSPreprocessor.h
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
16 class AliPHOSPreprocessor : public AliPreprocessor {
17 public:
18
19   AliPHOSPreprocessor();
20   AliPHOSPreprocessor(AliShuttleInterface* shuttle);
21
22 protected:
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