]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0Preprocessor.h
Add required AliVParticle functionality (Markus)
[u/mrichter/AliRoot.git] / T0 / AliT0Preprocessor.h
1 #ifndef ALI_T0_PREPROCESSOR_H
2 #define ALI_T0_PREPRECESSOR_H
3
4 #include "AliPreprocessor.h"
5
6 //
7 //// Example of a Shuttle Preprocessor
8 ////
9 //
10 class AliT0Preprocessor: public AliPreprocessor 
11 {
12   public:
13         AliT0Preprocessor(): AliPreprocessor("T00",0) { }
14         AliT0Preprocessor(AliShuttleInterface* shuttle);
15         virtual ~AliT0Preprocessor();
16   
17   protected:
18 //        virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
19         virtual UInt_t Process(TMap* dcsAliasMap);
20
21   private:
22         //AliT0Calc *fData;
23         
24         ClassDef(AliT0Preprocessor, 1)
25 };
26
27 typedef AliT0Preprocessor AliSTARTPreprocessor; // for backward compatibility
28
29 #endif