]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliRawRFIODB.h
Possibility to apply an event selection based on a logical function of the trigger...
[u/mrichter/AliRoot.git] / RAW / AliRawRFIODB.h
1 #ifndef ALIRAWRFIODB_H
2 #define ALIRAWRFIODB_H
3 // @(#) $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 // AliRawRFIODB                                                         //
12 //                                                                      //
13 //////////////////////////////////////////////////////////////////////////
14
15 #include "AliRawDB.h"
16
17
18 class AliRawRFIODB : public AliRawDB {
19
20 public:
21    AliRawRFIODB(AliRawEvent *event,
22                 AliESDEvent *esd,
23                 Int_t compress,
24                 const char* fileName = NULL,
25                 Int_t basketsize = 32000);
26    ~AliRawRFIODB() { Close(); }
27
28    Long64_t Close();
29
30 private:
31    const char *GetFileName() const;
32
33    ClassDef(AliRawRFIODB,0)  // Raw DB via RFIO
34 };
35
36 #endif