]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliRawRootdDB.h
Step size region by region.
[u/mrichter/AliRoot.git] / RAW / AliRawRootdDB.h
1 #ifndef ALIRAWROOTDDB_H
2 #define ALIRAWROOTDDB_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 // AliRawRootdDB                                                        //
12 //                                                                      //
13 //////////////////////////////////////////////////////////////////////////
14
15 #include "AliRawDB.h"
16
17
18 class AliRawRootdDB : public AliRawDB {
19
20 public:
21    AliRawRootdDB(AliRawEvent *event,
22 #ifdef USE_HLT
23                  AliESD *esd,
24 #endif
25                  Double_t maxsize, Int_t compress);
26    ~AliRawRootdDB() { Close(); }
27
28    void Close();
29
30 private:
31    const char *GetFileName() const;
32
33    ClassDef(AliRawRootdDB,0)  // Raw DB via rootd
34 };
35
36 #endif