X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=STEER%2FAliReconstruction.h;h=8f39c79901bd974d16bf7d30d92892ecab609550;hb=024cf675196bebb0ff74599c31999078a77f033d;hp=157b1b83efcc037e6fdca80bcfbf717afb3fab14;hpb=f8616692c3315d6fccbdb31611c6de1906712b40;p=u%2Fmrichter%2FAliRoot.git diff --git a/STEER/AliReconstruction.h b/STEER/AliReconstruction.h index 157b1b83efc..8f39c79901b 100644 --- a/STEER/AliReconstruction.h +++ b/STEER/AliReconstruction.h @@ -39,6 +39,7 @@ class AliEventTag; class AliReconstruction: public TNamed { public: AliReconstruction(const char* gAliceFilename = "galice.root", + const char* cdbUri = "local://$ALICE_ROOT", const char* name = "AliReconstruction", const char* title = "reconstruction"); AliReconstruction(const AliReconstruction& rec); @@ -69,6 +70,11 @@ public: {fStopOnError = stopOnError;} void SetCheckPointLevel(Int_t checkPointLevel) {fCheckPointLevel = checkPointLevel;} + + // CDB storage activation + void InitCDBStorage(); + void SetDefaultStorage(const char* uri); + void SetSpecificStorage(const char* detName, const char* uri); virtual Bool_t Run(const char* input, Int_t firstEvent, Int_t lastEvent = -1); @@ -132,6 +138,8 @@ private: Bool_t fWriteAlignmentData; // write track space-points flag + TString fCDBUri; // Uri of the default CDB storage + ClassDef(AliReconstruction, 6) // class for running the reconstruction };