]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PHOS/AliPHOSPreprocessor.h
High_gain/low_gain calculation added; histogram names changed to satisfy AliPHOSDA1...
[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   Float_t HG2LG(Int_t module, Int_t X, Int_t Z, TFile* f);
27
28   ClassDef(AliPHOSPreprocessor,1);
29
30 };
31
32 #endif