]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0Preprocessor.h
Removing .cvsignore files
[u/mrichter/AliRoot.git] / T0 / AliT0Preprocessor.h
1 #ifndef ALI_T0_PREPROCESSOR_H
2 #define ALI_T0_PREPRECESSOR_H
3
4 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5  * See cxx source for full Copyright notice                               */
6
7 /* $Id$ */
8
9 #include "AliPreprocessor.h"
10
11 class AliT0DataDCS;
12
13 class AliT0Preprocessor: public AliPreprocessor 
14 {
15   public:
16         AliT0Preprocessor(): AliPreprocessor("T00",0) { }
17         AliT0Preprocessor(AliShuttleInterface* shuttle);
18         virtual ~AliT0Preprocessor();
19   
20   protected:
21         virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
22         virtual UInt_t Process(TMap* dcsAliasMap);
23
24   private:
25         AliT0DataDCS *fData;                    // CDB class that stores the data       
26         ClassDef(AliT0Preprocessor, 1)
27 };
28
29 typedef AliT0Preprocessor AliSTARTPreprocessor; // for backward compatibility
30
31 #endif