]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliRawDB.h
Typo corrected.
[u/mrichter/AliRoot.git] / RAW / AliRawDB.h
1 #ifndef ALIRAWDB_H
2 #define ALIRAWDB_H
3 // @(#)alimdc:$Name:  $:$Id$
4 // Author: Fons Rademakers  26/11/99
5
6 /* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
7  * See cxx source for full Copyright notice                               */
8
9 //////////////////////////////////////////////////////////////////////////
10 //                                                                      //
11 // AliRawDB                                                             //
12 //                                                                      //
13 //////////////////////////////////////////////////////////////////////////
14
15 #ifndef ROOT_TObject
16 #include <TObject.h>
17 #endif
18
19 #ifndef ROOT_TFile
20 #include <TFile.h>
21 #endif
22
23 #ifndef ROOT_TTree
24 #include <TTree.h>
25 #endif
26
27 #ifndef ROOT_TString
28 #include <TString.h>
29 #endif
30
31 #include "AliDAQ.h"
32
33 // Forward class declarations
34 class AliRawEvent;
35 class AliRawDataArray;
36 class AliStats;
37 class TFile;
38 class AliESDEvent;
39
40 class AliRawDB : public TObject {
41
42 public:
43    AliRawDB(AliRawEvent *event,
44             AliESDEvent *esd,
45             Int_t compress,
46             const char* fileName = NULL,
47             Int_t basketsize = 32000);
48    virtual ~AliRawDB();
49
50    virtual const char *GetOpenOption() const { return "RECREATE"; }
51    virtual Int_t       GetNetopt() const { return 0; }
52    virtual Bool_t      Create(const char* fileName = NULL);
53    virtual Long64_t    Close();
54    Int_t               Fill();
55    Long64_t            GetTotalSize();
56    Long64_t            AutoSave();
57
58    void         WriteStats(AliStats* stats);
59
60    void         SetMaxSize(Double_t maxSize) { fMaxSize = maxSize; }
61    void         SetFS(const char* fs1, const char* fs2 = NULL);
62    void         SetDeleteFiles(Bool_t deleteFiles = kTRUE) { fDeleteFiles = deleteFiles; }
63
64    Bool_t       NextFile(const char* fileName = NULL);
65
66    Double_t     GetBytesWritten() const { return fRawDB->GetBytesWritten(); }
67    TFile       *GetDB() const { return fRawDB; }
68    const char  *GetDBName() const { return fRawDB->GetName(); }
69    Int_t        GetEvents() const { return (Int_t) fTree->GetEntries(); }
70    AliRawEvent *GetEvent() const { return fEvent; }
71    Float_t      GetCompressionFactor() const;
72    Int_t        GetCompressionMode() const { return fRawDB->GetCompressionLevel(); }
73    Int_t        GetBasketSize() const { return fBasketSize; }
74    void         Stop() { fStop = kTRUE; }
75    static const char *GetAliRootTag();
76    Bool_t       WriteGuidFile(TString &guidFileFolder);
77
78 protected:
79    TFile         *fRawDB;         // DB to store raw data
80    TTree         *fTree;          // tree used to store raw data
81    AliRawEvent   *fEvent;         // AliRawEvent via which data is stored
82    AliRawDataArray  **fDetRawData[AliDAQ::kNDetectors+1]; // Detectors raw-data payload
83    TTree         *fESDTree;       // tree for storing HLT ESD information
84    AliESDEvent        *fESD;           // pointer to HLT ESD object
85    Int_t          fCompress;      // compression mode (1 default)
86    Int_t          fBasketSize;    // root i/o basket size (default = 32000)
87    Double_t       fMaxSize;       // maximum size in bytes of the raw DB
88    TString        fFS1;           // first raw DB file system location
89    TString        fFS2;           // second raw DB file system location
90    Bool_t         fDeleteFiles;   // flag for deletion of files
91    Bool_t         fStop;          // stop execution (triggered by SIGUSR1)
92    static const char  *fgkAliRootTag; // string with the aliroot tag id
93
94    static Int_t   fgkDetBranches[AliDAQ::kNDetectors+1]; // Number of branches in each detector
95
96    virtual const char *GetFileName() const;
97    virtual Bool_t      FSHasSpace(const char *fs) const;
98    virtual void        MakeTree();
99
100 private:
101    AliRawDB(const AliRawDB& rawDB);
102    AliRawDB& operator = (const AliRawDB& rawDB);
103
104    ClassDef(AliRawDB,4)  // Raw DB
105 };
106
107 #endif