]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/AliRawNullDB.h
Cleanup of makefiles
[u/mrichter/AliRoot.git] / RAW / AliRawNullDB.h
1 #ifndef ALIRAWNULLDB_H
2 #define ALIRAWNULLDB_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 // AliRawNullDB                                                         //
12 //                                                                      //
13 //////////////////////////////////////////////////////////////////////////
14
15 #include "AliRawDB.h"
16
17
18 class AliRawNullDB : public AliRawDB {
19
20 public:
21    AliRawNullDB(AliRawEvent *event, Double_t maxsize, Int_t compress);
22    ~AliRawNullDB() { Close(); }
23
24    void Close();
25
26 private:
27    const char *GetFileName() const;
28
29    ClassDef(AliRawNullDB,0)  // Raw DB to /dev/null
30 };
31
32 #endif