]> git.uio.no Git - u/mrichter/AliRoot.git/blob - PMD/AliPMDPreprocessor.h
macro to convert Raw to Digits
[u/mrichter/AliRoot.git] / PMD / AliPMDPreprocessor.h
1 #ifndef ALI_PMD_PREPROCESSOR_H
2 #define ALI_PMD_PREPROCESSOR_H
3
4 #include "AliPreprocessor.h"
5
6 // test preprocessor that writes data to AliPMDDataDAQ  
7
8
9 class AliPMDPreprocessor : public AliPreprocessor
10 {
11   public:
12     AliPMDPreprocessor(AliShuttleInterface* shuttle);
13     virtual ~AliPMDPreprocessor();
14
15   protected:
16     virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
17     virtual UInt_t Process(TMap* pdaqAliasMap);
18
19   private:
20 //    AliPMDDataDAQ *fData;    // CDB class that stores the data
21
22     ClassDef(AliPMDPreprocessor, 1);
23 };
24
25 #endif