]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - PMD/AliPMDPreprocessor.h
Example macros to extend or reduce the standard AOD content.
[u/mrichter/AliRoot.git] / PMD / AliPMDPreprocessor.h
... / ...
CommitLineData
1#ifndef ALI_PMD_PREPROCESSOR_H
2#define ALI_PMD_PREPROCESSOR_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5//-----------------------------------------------------//
6// //
7// Header File : AliPMDPreprocessor.h //
8// //
9// test preprocessor that writes data to AliPMDDataDAQ //
10//-----------------------------------------------------//
11// Author - A. Ahmed
12
13#include "AliPreprocessor.h"
14
15class TTimeStamp;
16class TSystem;
17
18class AliPMDPreprocessor : public AliPreprocessor
19{
20 public:
21 AliPMDPreprocessor(AliShuttleInterface* shuttle);
22 virtual ~AliPMDPreprocessor();
23
24 protected:
25 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
26 virtual UInt_t Process(TMap* pdaqAliasMap);
27
28 private:
29// AliPMDDataDAQ *fData; // CDB class that stores the data
30
31 ClassDef(AliPMDPreprocessor, 1);
32};
33
34#endif