57459306 |
1 | #ifndef ALI_SHUTTLE_INTERFACE_H |
2 | #define ALI_SHUTTLE_INTERFACE_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 | // abstract interface class to AliShuttle |
11 | // |
12 | |
13 | #include <TObject.h> |
14 | |
15 | class TList; |
16 | class AliCDBMetaData; |
b88146b7 |
17 | class AliPreprocessor; |
84090f85 |
18 | class AliCDBPath; |
57459306 |
19 | |
20 | class AliShuttleInterface : public TObject |
21 | { |
22 | public: |
23 | enum { kDAQ = 0, kDCS, kHLT }; |
24 | static const char* fkSystemNames[3]; // names of the systems providing data to the shuttle |
25 | |
84090f85 |
26 | virtual UInt_t Store(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData, |
27 | Int_t validityStart = 0, Bool_t validityInfinite = kFALSE) = 0; |
3c78eaa5 |
28 | virtual UInt_t StoreReferenceData(const AliCDBPath& path, TObject* object, AliCDBMetaData* metaData) = 0; |
57459306 |
29 | virtual const char* GetFile(Int_t system, const char* detector, const char* id, const char* source) = 0; |
30 | virtual TList* GetFileSources(Int_t system, const char* detector, const char* id) = 0; |
31 | virtual void Log(const char* detector, const char* message) = 0; |
32 | |
b88146b7 |
33 | virtual void RegisterPreprocessor(AliPreprocessor* preprocessor) = 0; |
34 | |
57459306 |
35 | private: |
36 | ClassDef(AliShuttleInterface, 0); |
37 | }; |
38 | |
39 | #endif |