]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RAW/AliRawNullDB.cxx
added pointer consistency check before decoding
[u/mrichter/AliRoot.git] / RAW / AliRawNullDB.cxx
index c615425d41d92aa6635659f2009208b9f5ff42bd..b8206afc2d5814417e0d012a8968034280e91bd6 100644 (file)
@@ -32,8 +32,8 @@ ClassImp(AliRawNullDB)
 AliRawNullDB::AliRawNullDB(AliRawEvent *event,
                           AliESDEvent *esd,
                           Int_t compress,
-                          const char* fileName)
-   : AliRawDB(event, esd, compress, fileName)
+                          const char* fileName,Int_t basketsize)
+   : AliRawDB(event, esd, compress, fileName, basketsize)
 {
    // Create a new raw DB that will wrtie to /dev/null.
 
@@ -48,7 +48,7 @@ const char *AliRawNullDB::GetFileName() const
 }
 
 //______________________________________________________________________________
-Int_t AliRawNullDB::Close()
+Long64_t AliRawNullDB::Close()
 {
    // Close raw RFIO DB.
 
@@ -69,7 +69,7 @@ Int_t AliRawNullDB::Close()
    // Close DB, this also deletes the fTree
    fRawDB->Close();
 
-   Int_t filesize = fRawDB->GetEND();
+   Long64_t filesize = fRawDB->GetEND();
 
    delete fRawDB;
    fRawDB = 0;