]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0Preprocessor.h
Misalignment according survey data
[u/mrichter/AliRoot.git] / T0 / AliT0Preprocessor.h
CommitLineData
dc7ca31d 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//
10class AliT0Preprocessor: public AliPreprocessor
11{
12 public:
5221c818 13 AliT0Preprocessor(): AliPreprocessor("T00",0) { }
14 AliT0Preprocessor(AliShuttleInterface* shuttle);
dc7ca31d 15 virtual ~AliT0Preprocessor();
16
17 protected:
18// virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
19 virtual UInt_t Process(TMap* dcsAliasMap);
20
21 private:
22 //AliT0Calc *fData;
23
24 ClassDef(AliT0Preprocessor, 1)
25};
26
27typedef AliT0Preprocessor AliSTARTPreprocessor; // for backward compatibility
28
29#endif