]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliFstream.h
Moving the classes that belong to the following libraries: STEERBase, ESD, CDB, AOD...
[u/mrichter/AliRoot.git] / STEER / AliFstream.h
diff --git a/STEER/AliFstream.h b/STEER/AliFstream.h
deleted file mode 100644 (file)
index 2d6c1dc..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-#ifndef ALIFSTREAM_H
-#define ALIFSTREAM_H
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-//-------------------------------------------------------------------------
-// This is the class which is to be used during the writing of
-// simulated raw data (DDL files format).
-// It is using the root functionality in order to deal correctly
-// with little/big endian issue. By convention the detector raw
-// data payload is stored always with little endian (this corresponds
-// to the real life situation when the detector data is coming from
-// the hardware).
-//-------------------------------------------------------------------------
-
-#include <TObject.h>
-
-class AliFstream : public TObject {
-public:
-  AliFstream();
-  AliFstream(const char *fileName);
-  virtual ~AliFstream();
-
-  void   Seekp(UInt_t position);
-  UInt_t Tellp();
-  void   WriteBuffer(const char *buffer, UInt_t size, Bool_t force = kFALSE);
-
-private:
-
-  AliFstream(const AliFstream &source);
-  AliFstream &operator =(const AliFstream& source);
-
-  UInt_t Swap(UInt_t x);
-
-  fstream *fFile;       // Output file stream
-  UInt_t  *fBuffer;     // Pointer to the internal buffer
-  UInt_t   fBufferSize; // Internal buffer size
-
-  ClassDef(AliFstream,0)
-};
-
-#endif