]> git.uio.no Git - u/mrichter/AliRoot.git/blob - SHUTTLE/test/TestRICHPreprocessor.h
49dc02f1db50af263c6f2bf2f1e3bbc157c7e36a
[u/mrichter/AliRoot.git] / SHUTTLE / test / TestRICHPreprocessor.h
1 #ifndef TEST_RICH_PRE_PROCESSOR_H
2 #define TEST_RICH_PRE_PRECESSOR_H
3
4 #include "AliPreprocessor.h"
5
6 //
7 // Prototype of RICH Preprocessor
8 //
9
10 class TestRICHPreprocessor: public AliPreprocessor {
11 public:
12         TestRICHPreprocessor();
13         TestRICHPreprocessor(const char* detector, AliShuttleInterface* shuttle);
14
15 protected:
16
17         virtual void Initialize(Int_t run, UInt_t startTime,
18                         UInt_t endTime);
19
20         virtual UInt_t Process(TMap* valueSet);
21
22         ClassDef(TestRICHPreprocessor, 0);
23 };
24
25 #endif