]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/test/TestTRDPreprocessor.h
Panos Christakoglou: Added FlowOnMC macros
[u/mrichter/AliRoot.git] / SHUTTLE / test / TestTRDPreprocessor.h
CommitLineData
59ab3716 1#ifndef TEST_TRD_PRE_PROCESSOR_H
2#define TEST_TRD_PRE_PRECESSOR_H
3
4#include "AliPreprocessor.h"
5
6//
7// Prototype of TRD Preprocessor
8//
9
10class TestTRDPreprocessor: public AliPreprocessor {
11public:
12 TestTRDPreprocessor();
13 TestTRDPreprocessor(AliShuttleInterface* shuttle);
14
15protected:
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(TestTRDPreprocessor, 0);
23};
24
25#endif