]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliRawNullDB.h
Adding the AliAnalysisGUI class which is the main class that controls the GUI.
[u/mrichter/AliRoot.git] / RAW / AliRawNullDB.h
CommitLineData
a197a4ce 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
18class AliRawNullDB : public AliRawDB {
19
20public:
a109e73e 21 AliRawNullDB(AliRawEvent *event,
a109e73e 22 AliESD *esd,
e10815f1 23 Int_t compress,
24 const char* fileName);
a197a4ce 25 ~AliRawNullDB() { Close(); }
26
f07ec911 27 Int_t Close();
a197a4ce 28
29private:
30 const char *GetFileName() const;
31
32 ClassDef(AliRawNullDB,0) // Raw DB to /dev/null
33};
34
35#endif