]> git.uio.no Git - u/mrichter/AliRoot.git/blob - T0/AliT0Preprocessor.h
Use RGTopFrame::RedrawDisabler in GotoEvent(Int_t).
[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(const char* detector, AliShuttleInterface* shuttle);
14         virtual ~AliT0Preprocessor();
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         //AliT0Calc *fData;
22         
23         ClassDef(AliT0Preprocessor, 1)
24 };
25
26 typedef AliT0Preprocessor AliSTARTPreprocessor; // for backward compatibility
27
28 #endif