]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliDefaultPreprocessor.h
Record changes.
[u/mrichter/AliRoot.git] / STEER / AliDefaultPreprocessor.h
CommitLineData
57459306 1#ifndef ALI_DEFAULT_PREPROCESSOR_H
2#define ALI_DEFAULT_PREPROCESSOR_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9//
10// Default preprocessor that writes the retrieved DCS values to CDB
11//
12
13#include <AliPreprocessor.h>
14
15class AliDefaultPreprocessor: public AliPreprocessor {
16
17public:
18 AliDefaultPreprocessor(const char* detector, AliShuttleInterface* shuttle);
19 virtual ~AliDefaultPreprocessor();
20
b88146b7 21 virtual UInt_t Process(TMap* dcsAliasMap);
57459306 22
23private:
24 ClassDef(AliDefaultPreprocessor, 0);
25};
26
27#endif