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