]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliDefaultPreprocessor.h
Separate library for CDB (Jan)
[u/mrichter/AliRoot.git] / STEER / AliDefaultPreprocessor.h
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
15 class AliDefaultPreprocessor: public AliPreprocessor {
16
17 public:
18         AliDefaultPreprocessor(const char* detector, AliShuttleInterface* shuttle);
19         virtual ~AliDefaultPreprocessor();
20
21         virtual Int_t Process(TMap* dcsAliasMap);
22
23 private:
24   ClassDef(AliDefaultPreprocessor, 0);
25 };
26
27 #endif