]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliRawCastorDB.h
Improvements in the raw-data dumping utility which allows to perform deeper checks...
[u/mrichter/AliRoot.git] / RAW / AliRawCastorDB.h
CommitLineData
a197a4ce 1#ifndef ALIRAWCASTORDB_H
2#define ALIRAWCASTORDB_H
d04aea32 3// @(#) $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// AliRawCastorDB //
12// //
13//////////////////////////////////////////////////////////////////////////
14
15#include "AliRawDB.h"
16
17
18class AliRawCastorDB : public AliRawDB {
19
20public:
a109e73e 21 AliRawCastorDB(AliRawEvent *event,
af885e0f 22 AliESDEvent *esd,
e10815f1 23 Int_t compress,
24 const char* fileName = NULL);
a197a4ce 25 ~AliRawCastorDB() { Close(); }
26
27 const char *GetOpenOption() const { return "-RECREATE"; }
28 Int_t GetNetopt() const { return 0; }
d2450633 29 Long64_t Close();
a197a4ce 30
31private:
32 const char *GetFileName() const;
33
34 ClassDef(AliRawCastorDB,0) // Raw DB via CASTOR and rootd
35};
36
37#endif