]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDPreprocessor.h
Add the first version of the TRD preprocessor
[u/mrichter/AliRoot.git] / TRD / AliTRDPreprocessor.h
1 #ifndef ALI_TRD_PREPROCESSOR_H
2 #define ALI_TRD_PREPROCESSOR_H
3
4 #include "AliPreprocessor.h"
5
6 /////////////////////////////////////////////////////
7 //
8 // TRD preprocessor
9 //
10 //////////////////////////////////////////////////
11
12 class AliTRDPreprocessor : public AliPreprocessor
13 {
14
15   public:
16
17     AliTRDPreprocessor(const Char_t *detector, AliShuttleInterface *shuttle);
18     virtual ~AliTRDPreprocessor();
19
20   protected:
21
22     virtual void   Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
23     virtual UInt_t Process(TMap* /*dcsAliasMap*/);
24
25   private:
26     
27     ClassDef(AliTRDPreprocessor,0);
28
29 };
30
31 #endif