]> git.uio.no Git - u/mrichter/AliRoot.git/blob - START/AliSTARTPreprocessor.h
This commit was generated by cvs2svn to compensate for changes in r15986,
[u/mrichter/AliRoot.git] / START / AliSTARTPreprocessor.h
1 #ifndef ALI_START_PREPROCESSOR_H
2 #define ALI_START_PREPRECESSOR_H
3
4 #include "AliPreprocessor.h"
5
6 //
7 //// Example of a Shuttle Preprocessor
8 ////
9 //
10 class AliSTARTPreprocessor: public AliPreprocessor 
11 {
12   public:
13         AliSTARTPreprocessor(const char* detector, AliShuttleInterface* shuttle);
14         virtual ~AliSTARTPreprocessor();
15   
16   protected:
17 //        virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
18         virtual UInt_t Process(TMap* dcsAliasMap);
19
20   private:
21         //AliSTARTCalc *fData;
22         
23         ClassDef(AliSTARTPreprocessor, 1);
24
25 };
26
27 #endif