]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDPreprocessor.h
AliDebug instead of AliInfo
[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
6ace5fe2 17class TMap;
18
e5c60cc7 19class AliTRDPreprocessor : public AliPreprocessor
20{
21
c8ab4518 22 public:
e5c60cc7 23
c8ab4518 24 AliTRDPreprocessor(AliShuttleInterface *shuttle);
25 virtual ~AliTRDPreprocessor();
e5c60cc7 26
8dd14606 27 protected:
e5c60cc7 28
c8ab4518 29 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
30 virtual UInt_t Process(TMap *dcsAliasMap);
a5e1169e 31
8dd14606 32
c8ab4518 33 Bool_t ExtractPedestals();
34 Bool_t ExtractDriftVelocityDAQ();
35 Bool_t ExtractHLT();
36 Bool_t ProcessDCS();
37 Bool_t ProcessDCS(TMap *dcsAliasMap);
6ace5fe2 38
c8ab4518 39 private:
6ace5fe2 40
c8ab4518 41 Bool_t fVdriftHLT; // HLT Vdrift
6e5d4cb2 42
c8ab4518 43 ClassDef(AliTRDPreprocessor,1) // The SHUTTLE preprocessor for TRD
e5c60cc7 44
45};
e5c60cc7 46#endif