]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RAW/AliRawCastorDB.h
Alice dependencies removed.
[u/mrichter/AliRoot.git] / RAW / AliRawCastorDB.h
CommitLineData
a197a4ce 1#ifndef ALIRAWCASTORDB_H
2#define ALIRAWCASTORDB_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// AliRawCastorDB //
12// //
13//////////////////////////////////////////////////////////////////////////
14
15#include "AliRawDB.h"
16
17
18class AliRawCastorDB : public AliRawDB {
19
20public:
21 AliRawCastorDB(AliRawEvent *event, Double_t maxsize, Int_t compress);
22 ~AliRawCastorDB() { Close(); }
23
24 const char *GetOpenOption() const { return "-RECREATE"; }
25 Int_t GetNetopt() const { return 0; }
26 void Close();
27
28private:
29 const char *GetFileName() const;
30
31 ClassDef(AliRawCastorDB,0) // Raw DB via CASTOR and rootd
32};
33
34#endif