]> git.uio.no Git - u/mrichter/AliRoot.git/blob - RAW/mdc.h
reading RAW without data
[u/mrichter/AliRoot.git] / RAW / mdc.h
1 #ifndef MDC_H
2 #define MDC_H
3 /* Copyright(c) 1998-2003, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 //////////////////////////////////////////////////////////////////////////
9 //                                                                      //
10 // c interface to AliMDC                                                //
11 //                                                                      //
12 //////////////////////////////////////////////////////////////////////////
13
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17
18 void* alimdcCreate(int compress, int filterMode, 
19                    double maxSizeTagDB, const char* fileNameTagDB,
20                    const char* guidFileFolder);
21 int   alimdcOpen(void* alimdc, int mode, const char* fileName);
22 int   alimdcProcessEvent(void* alimdc, void* event, int isIovecArray);
23 long long  alimdcGetTotalFileSize(void* alimdc);
24 long long  alimdcClose(void* alimdc);
25 void  alimdcDelete(void* alimdc);
26 void  alimdcEnableDebug();
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32 #endif