]> git.uio.no Git - u/mrichter/AliRoot.git/blame - T0/AliT0Preprocessor.h
This commit was generated by cvs2svn to compensate for changes in r15986,
[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:
13 AliT0Preprocessor(const char* detector, AliShuttleInterface* shuttle);
14 virtual ~AliT0Preprocessor();
15
16 protected:
17// virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
18 virtual UInt_t Process(TMap* dcsAliasMap);
19
20 private:
21 //AliT0Calc *fData;
22
23 ClassDef(AliT0Preprocessor, 1)
24};
25
26typedef AliT0Preprocessor AliSTARTPreprocessor; // for backward compatibility
27
28#endif