]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PMD/AliPMDPreprocessor.h
Macro to calculate the resolution and the efficiency of chamber(s) (Nicolas)
[u/mrichter/AliRoot.git] / PMD / AliPMDPreprocessor.h
CommitLineData
ad6005fa 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
9class AliPMDPreprocessor : public AliPreprocessor
10{
11 public:
12 AliPMDPreprocessor(const char* detector, 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, 0);
23};
24
25#endif