]> git.uio.no Git - u/mrichter/AliRoot.git/blob - STEER/AliPreprocessor.h
Update to shuttle classes (Alberto)
[u/mrichter/AliRoot.git] / STEER / AliPreprocessor.h
1 #ifndef ALI_PREPROCESSOR_H
2 #define ALI_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 // This class is the CDBPreProcessor interface,
11 // supposed to be implemented by any detector
12 // interested in immediate processing of data 
13 // which is retrieved from DCS, DAQ or HLT.
14 //
15
16 #include <TNamed.h>
17
18 class TList;
19 class TMap;
20
21 class AliCDBMetaData;
22 class AliShuttleInterface;
23
24 class AliPreprocessor : public TNamed
25 {
26   public:
27     enum { kDAQ, kDCS, kHLT };
28
29     AliPreprocessor(const char* detector, AliShuttleInterface* shuttle);
30     virtual ~AliPreprocessor();
31
32     virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
33     virtual UInt_t Process(TMap* dcsAliasMap) = 0;
34
35   protected:
36     UInt_t Store(const char* pathLevel2, const char* pathLevel3, TObject* object,
37                 AliCDBMetaData* metaData, Int_t validityStart = 0, Bool_t validityInfinite = kFALSE);
38     UInt_t StoreReferenceData(const char* pathLevel2, const char* pathLevel3, TObject* object,
39                 AliCDBMetaData* metaData, Int_t validityStart = 0, Bool_t validityInfinite = kFALSE);
40     const char* GetFile(Int_t system, const char* id, const char* source);
41     TList* GetFileSources(Int_t system, const char* id);
42     void Log(const char* message);
43
44     Int_t fRun;         // current run
45     UInt_t fStartTime;  // starttime of current run
46     UInt_t fEndTime;    // endtime of current run
47
48   private:
49     AliShuttleInterface* fShuttle;   // link to Shuttle
50
51     ClassDef(AliPreprocessor, 0);
52 };
53
54 #endif