]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDPreprocessor.h
Error messages stored in the global raw-reader error log (Cvetan, Chiara)
[u/mrichter/AliRoot.git] / TRD / AliTRDPreprocessor.h
CommitLineData
e5c60cc7 1#ifndef ALI_TRD_PREPROCESSOR_H
2#define ALI_TRD_PREPROCESSOR_H
3
ec55623f 4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
e5c60cc7 8
ec55623f 9////////////////////////////////////////////////////////////////////////////
10// //
11// TRD preprocessor for the database SHUTTLE //
12// //
13////////////////////////////////////////////////////////////////////////////
14
15#include "AliPreprocessor.h"
e5c60cc7 16
17class AliTRDPreprocessor : public AliPreprocessor
18{
19
20 public:
21
ec55623f 22 AliTRDPreprocessor(AliShuttleInterface *shuttle);
e5c60cc7 23 virtual ~AliTRDPreprocessor();
24
25 protected:
26
27 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
28 virtual UInt_t Process(TMap* /*dcsAliasMap*/);
8dfa5624 29
e5c60cc7 30 private:
31
4bb88069 32 ClassDef(AliTRDPreprocessor,0) // The SHUTTLE preprocessor for TRD
e5c60cc7 33
34};
35
36#endif