]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/AliRawDB.h
par file fix
[u/mrichter/AliRoot.git] / RAW / AliRawDB.h
index f233b2e5f14bd589d9899ecfad3fba7a0a281593..b8a7d5b3d77b5cf0c8b437fdbd535de5b0699ad3 100644 (file)
@@ -1,6 +1,6 @@
 #ifndef ALIRAWDB_H
 #define ALIRAWDB_H
-// @(#)alimdc:$Name$:$Id$
+// @(#)alimdc:$Name:  $:$Id$
 // Author: Fons Rademakers  26/11/99
 
 /* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
 #include <TTree.h>
 #endif
 
+#ifndef ROOT_TString
+#include <TString.h>
+#endif
+
+#include "AliDAQ.h"
 
 // Forward class declarations
-class AliRawEvent;
+class AliRawEventV2;
+class AliRawDataArrayV2;
 class TFile;
-
+class AliESDEvent;
 
 class AliRawDB : public TObject {
 
 public:
-   AliRawDB(AliRawEvent *event, Double_t maxsize, Int_t compress,
-            Bool_t create = kTRUE);
-   virtual ~AliRawDB() { Close(); }
+   AliRawDB(AliRawEventV2 *event,
+           AliESDEvent *esd,
+           Int_t compress,
+            const char* fileName = NULL,
+           Int_t basketsize = 32000);
+   virtual ~AliRawDB();
 
    virtual const char *GetOpenOption() const { return "RECREATE"; }
    virtual Int_t       GetNetopt() const { return 0; }
-   virtual Bool_t      Create();
-   virtual void        Close();
-   void                Fill() { fTree->Fill(); }
-   Bool_t              FileFull() { return (fRawDB->GetBytesWritten() > fMaxSize) ?
-                                    kTRUE : kFALSE; }
+   virtual Bool_t      Create(const char* fileName = NULL);
+   virtual Long64_t    Close();
+   Int_t               Fill();
+   Long64_t            GetTotalSize();
+   Long64_t            AutoSave();
 
-   Bool_t       NextFile();
+   void         SetMaxSize(Double_t maxSize) { fMaxSize = maxSize; }
+   void         SetFS(const char* fs1, const char* fs2 = NULL);
+   void         SetDeleteFiles(Bool_t deleteFiles = kTRUE) { fDeleteFiles = deleteFiles; }
+
+   Bool_t       NextFile(const char* fileName = NULL);
 
    Double_t     GetBytesWritten() const { return fRawDB->GetBytesWritten(); }
    TFile       *GetDB() const { return fRawDB; }
    const char  *GetDBName() const { return fRawDB->GetName(); }
-   Int_t        GetEvents() const { return (Int_t) fTree->GetEntries(); }
-   AliRawEvent *GetEvent() const { return fEvent; }
+   Int_t        GetEvents() const { return (fTree) ? (Int_t) fTree->GetEntries() : 0; }
+   AliRawEventV2 *GetEvent() const { return fEvent; }
    Float_t      GetCompressionFactor() const;
    Int_t        GetCompressionMode() const { return fRawDB->GetCompressionLevel(); }
+   Int_t        GetBasketSize() const { return fBasketSize; }
+   void         Stop() { fStop = kTRUE; }
+   static const char *GetAliRootTag();
+   Bool_t       WriteGuidFile(TString &guidFileFolder);
+   void         Reset();
+   AliRawDataArrayV2 *GetRawDataArray(UInt_t eqSize, UInt_t eqId) const;
 
 protected:
    TFile         *fRawDB;         // DB to store raw data
    TTree         *fTree;          // tree used to store raw data
-   AliRawEvent   *fEvent;         // AliRawEvent via which data is stored
+   AliRawEventV2   *fEvent;         // AliRawEvent via which data is stored
+   AliRawDataArrayV2  **fDetRawData[AliDAQ::kNDetectors+1]; // Detectors raw-data payload
+   TTree         *fESDTree;       // tree for storing HLT ESD information
+   AliESDEvent        *fESD;           // pointer to HLT ESD object
    Int_t          fCompress;      // compression mode (1 default)
+   Int_t          fBasketSize;    // root i/o basket size (default = 32000)
    Double_t       fMaxSize;       // maximum size in bytes of the raw DB
+   TString        fFS1;           // first raw DB file system location
+   TString        fFS2;           // second raw DB file system location
+   Bool_t         fDeleteFiles;   // flag for deletion of files
+   Bool_t         fStop;          // stop execution (triggered by SIGUSR1)
+   static const char  *fgkAliRootTag; // string with the aliroot tag id
+
+   static Int_t   fgkDetBranches[AliDAQ::kNDetectors+1]; // Number of branches in each detector
 
    virtual const char *GetFileName() const;
    virtual Bool_t      FSHasSpace(const char *fs) const;
@@ -70,7 +100,7 @@ private:
    AliRawDB(const AliRawDB& rawDB);
    AliRawDB& operator = (const AliRawDB& rawDB);
 
-   ClassDef(AliRawDB,0)  // Raw DB
+   ClassDef(AliRawDB,5)  // Raw DB
 };
 
 #endif