]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliRawDB.h
Cleaning up warnings and making some changes to memory handling to be more robust...
[u/mrichter/AliRoot.git] / RAW / AliRawDB.h
CommitLineData
a197a4ce 1#ifndef ALIRAWDB_H
2#define ALIRAWDB_H
60838f24 3// @(#)alimdc:$Name: $:$Id$
a197a4ce 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
e10815f1 27#ifndef ROOT_TString
28#include <TString.h>
29#endif
30
6605cb7a 31#include "AliDAQ.h"
a197a4ce 32
33// Forward class declarations
34class AliRawEvent;
6605cb7a 35class AliRawDataArray;
b7d09bb3 36class AliStats;
a197a4ce 37class TFile;
af885e0f 38class AliESDEvent;
a197a4ce 39
40class AliRawDB : public TObject {
41
42public:
a109e73e 43 AliRawDB(AliRawEvent *event,
af885e0f 44 AliESDEvent *esd,
e10815f1 45 Int_t compress,
46 const char* fileName = NULL);
6605cb7a 47 virtual ~AliRawDB();
a197a4ce 48
49 virtual const char *GetOpenOption() const { return "RECREATE"; }
50 virtual Int_t GetNetopt() const { return 0; }
e10815f1 51 virtual Bool_t Create(const char* fileName = NULL);
d2450633 52 virtual Long64_t Close();
e10815f1 53 Int_t Fill();
60838f24 54 Long64_t GetTotalSize();
0cd3f979 55 Long64_t AutoSave();
a197a4ce 56
b7d09bb3 57 void WriteStats(AliStats* stats);
58
e10815f1 59 void SetMaxSize(Double_t maxSize) { fMaxSize = maxSize; }
60 void SetFS(const char* fs1, const char* fs2 = NULL);
61 void SetDeleteFiles(Bool_t deleteFiles = kTRUE) { fDeleteFiles = deleteFiles; }
62
63 Bool_t NextFile(const char* fileName = NULL);
a197a4ce 64
65 Double_t GetBytesWritten() const { return fRawDB->GetBytesWritten(); }
66 TFile *GetDB() const { return fRawDB; }
67 const char *GetDBName() const { return fRawDB->GetName(); }
68 Int_t GetEvents() const { return (Int_t) fTree->GetEntries(); }
69 AliRawEvent *GetEvent() const { return fEvent; }
70 Float_t GetCompressionFactor() const;
71 Int_t GetCompressionMode() const { return fRawDB->GetCompressionLevel(); }
e10815f1 72 void Stop() { fStop = kTRUE; }
ee8f2a6c 73 static const char *GetAliRootTag();
581835ab 74 Bool_t WriteGuidFile(TString &guidFileFolder);
a197a4ce 75
76protected:
77 TFile *fRawDB; // DB to store raw data
78 TTree *fTree; // tree used to store raw data
79 AliRawEvent *fEvent; // AliRawEvent via which data is stored
30d59ac8 80 AliRawDataArray **fDetRawData[AliDAQ::kNDetectors+1]; // Detectors raw-data payload
a109e73e 81 TTree *fESDTree; // tree for storing HLT ESD information
af885e0f 82 AliESDEvent *fESD; // pointer to HLT ESD object
a197a4ce 83 Int_t fCompress; // compression mode (1 default)
84 Double_t fMaxSize; // maximum size in bytes of the raw DB
e10815f1 85 TString fFS1; // first raw DB file system location
86 TString fFS2; // second raw DB file system location
87 Bool_t fDeleteFiles; // flag for deletion of files
88 Bool_t fStop; // stop execution (triggered by SIGUSR1)
ee8f2a6c 89 static const char *fgkAliRootTag; // string with the aliroot tag id
90
30d59ac8 91 static Int_t fgkDetBranches[AliDAQ::kNDetectors+1]; // Number of branches in each detector
92
a197a4ce 93 virtual const char *GetFileName() const;
94 virtual Bool_t FSHasSpace(const char *fs) const;
95 virtual void MakeTree();
96
97private:
98 AliRawDB(const AliRawDB& rawDB);
99 AliRawDB& operator = (const AliRawDB& rawDB);
100
30d59ac8 101 ClassDef(AliRawDB,3) // Raw DB
a197a4ce 102};
103
104#endif