]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/rec/AliHLTMiscImplementation.h
adding AliHLTReconstructor option 'ignore-ctp' which allows to skip the initializatio...
[u/mrichter/AliRoot.git] / HLT / rec / AliHLTMiscImplementation.h
1 //-*- Mode: C++ -*-
2 // $Id$
3
4 #ifndef ALIHLTMISCIMPLEMENTATION_H
5 #define ALIHLTMISCIMPLEMENTATION_H_H
6 //* This file is property of and copyright by the ALICE HLT Project        * 
7 //* ALICE Experiment at CERN, All rights reserved.                         *
8 //* See cxx source for full Copyright notice                               */
9
10 /// @file   AliHLTMiscImplementation.h
11 /// @author Matthias Richter
12 /// @date   2009-07-07
13 /// @brief  Implementation of various glue functions implemented in dynamically
14 ///         loaded libraries
15
16 #include "AliHLTMisc.h"
17
18 class AliHLTMiscImplementation : public AliHLTMisc
19 {
20  public:
21   AliHLTMiscImplementation();
22   ~AliHLTMiscImplementation();
23
24   int InitCDB(const char* cdbpath);
25
26   int SetCDBRunNo(int runNo);
27   int GetCDBRunNo();
28
29   AliCDBEntry* LoadOCDBEntry(const char* path, int runNo=-1, int version = -1, int subVersion = -1);
30
31   TObject* ExtractObject(AliCDBEntry* entry);
32
33   int InitMagneticField() const;
34
35   AliHLTUInt64_t GetTriggerMask(AliRawReader* rawReader) const;
36
37   Double_t GetBz();
38   Double_t GetBz(const Double_t *r);
39   void GetBxByBz(const Double_t r[3], Double_t b[3]);
40
41   const TClass* IsAliESDHLTDecision() const;
42   int Copy(const AliHLTGlobalTriggerDecision* pDecision, TObject* pESDHLTDecision) const;
43
44  private:
45
46   ClassDef(AliHLTMiscImplementation, 0)
47 };
48
49 #endif //ALIHLTMISCIMPLEMENTATION_H