]> git.uio.no Git - u/mrichter/AliRoot.git/blame - SHUTTLE/test/TestITSPreprocessorSPD.h
corrections from Alberto
[u/mrichter/AliRoot.git] / SHUTTLE / test / TestITSPreprocessorSPD.h
CommitLineData
eba76848 1#ifndef TEST_ITS_PRE_PROCESSOR_SPD_H
2#define TEST_ITS_PRE_PRECESSOR_SPD_H
3
4#include "AliPreprocessor.h"
5
6//
7// Example of a Shuttle Preprocessor
8//
9
10class TestITSPreprocessorSPD: public AliPreprocessor {
11public:
12 TestITSPreprocessorSPD();
be48e3ea 13 TestITSPreprocessorSPD(AliShuttleInterface* shuttle);
eba76848 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(TestITSPreprocessorSPD, 0);
23};
24
25#endif