]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Fixed Coding Conventions for class AliACORDERawReader (Mario Sitta)
authormrodrigu <mrodrigu@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 12 Mar 2008 09:55:52 +0000 (09:55 +0000)
committermrodrigu <mrodrigu@f7af4fe6-9843-0410-8265-dc069ae4e863>
Wed, 12 Mar 2008 09:55:52 +0000 (09:55 +0000)
ACORDE/AliACORDERawStream.h

index fb5a3007311dc29f5c269e294459de0bb866a802..155db29263d058242a1e1d7f4feee3a3c292a74d 100644 (file)
@@ -1,56 +1,57 @@
-#ifndef ALIACORDERAWSTREAM_H
-#define ALIACORDERAWSTREAM_H
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-/* $Id: AliACORDERawStream.h 20210 2007-08-18 08:41:30Z hristov $ */
-
-///////////////////////////////////////////////////////////////////////////////
-//                                                                           //
-//  Reads ACORDE DDL raw data from raw data stream                           //
-//                                                                           //
-///////////////////////////////////////////////////////////////////////////////
-
-#include "TObject.h"
-
-class AliRawReader;
-
-class AliACORDERawStream : public TObject {
-
- public:
-
-  AliACORDERawStream(AliRawReader*);
-  virtual ~AliACORDERawStream();
-//  AliACORDERawStream &operator=(const AliACORDERawStream &r);
-
-  virtual void    Reset();
-  virtual Bool_t  Next();
-
-  Int_t           DataSize() const { return fDataSize; }
-  UInt_t          GetWord(Int_t index) const;
-
-  enum EACORDERawStreamError {
-      kRawDataSizeErr = 1
-  };
-
- private:
-
-  UInt_t          GetNextWord();
-  UShort_t        GetNextShort();
-
-
-  AliRawReader*   fRawReader;    // object for reading the raw data
-  Int_t           fPosition;     // current position in the raw-data payload
-  UChar_t*        fData;         // pointer to raw data payload
-
-  Int_t           fDataSize;     // data size
-
-  UInt_t          fWord[4];      // data vector
-
-  ClassDef(AliACORDERawStream,0) // class for reading ACORDE DDL raw data
-
-};
-
-typedef AliACORDERawStream AliCRTRawStream; // for backward compatibility
-
-#endif
+#ifndef ALIACORDERAWSTREAM_H\r
+#define ALIACORDERAWSTREAM_H\r
+/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *\r
+ * See cxx source for full Copyright notice                               */\r
+\r
+/* $Id: AliACORDERawStream.h 20210 2007-08-18 08:41:30Z hristov $ */\r
+\r
+///////////////////////////////////////////////////////////////////////////////\r
+//                                                                           //\r
+//  Reads ACORDE DDL raw data from raw data stream                           //\r
+//                                                                           //\r
+///////////////////////////////////////////////////////////////////////////////\r
+\r
+#include "TObject.h"\r
+\r
+class AliRawReader;\r
+\r
+class AliACORDERawStream : public TObject {\r
+\r
+ public:\r
+\r
+  AliACORDERawStream(AliRawReader*);\r
+  AliACORDERawStream(const AliACORDERawStream &r); \r
+  virtual ~AliACORDERawStream();\r
+  AliACORDERawStream &operator=(const AliACORDERawStream &r);\r
+\r
+  virtual void    Reset();\r
+  virtual Bool_t  Next();\r
+\r
+  Int_t           DataSize() const { return fDataSize; }\r
+  UInt_t          GetWord(Int_t index) const;\r
+\r
+  enum EACORDERawStreamError {\r
+      kRawDataSizeErr = 1\r
+  };\r
+\r
+ private:\r
+\r
+  UInt_t          GetNextWord();\r
+  UShort_t        GetNextShort();\r
+\r
+\r
+  AliRawReader*   fRawReader;    // object for reading the raw data\r
+  Int_t           fPosition;     // current position in the raw-data payload\r
+  UChar_t*        fData;         // pointer to raw data payload\r
+\r
+  Int_t           fDataSize;     // data size\r
+\r
+  UInt_t          fWord[4];      // data vector\r
+\r
+  ClassDef(AliACORDERawStream,0) // class for reading ACORDE DDL raw data\r
+\r
+};\r
+\r
+typedef AliACORDERawStream AliCRTRawStream; // for backward compatibility\r
+\r
+#endif\r