Line data Source code
1 : #ifndef ALIACORDERAWDATA_H
2 : #define ALIACORDERAWDATA_H
3 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 : * See cxx source for full Copyright notice */
5 :
6 : /* $Id$ */
7 :
8 : ///////////////////////////////////////////////////////////////////////////////
9 : // //
10 : // Converts ACORDE digits into a raw data stream //
11 : // //
12 : ///////////////////////////////////////////////////////////////////////////////
13 :
14 : #include "TObject.h"
15 :
16 : class AliACORDERawData : public TObject {
17 :
18 : public:
19 :
20 : AliACORDERawData();
21 : AliACORDERawData(const AliACORDERawData &r);
22 : virtual ~AliACORDERawData();
23 : AliACORDERawData &operator=(const AliACORDERawData &r); // ass. op.
24 :
25 : void WriteACORDERawData(Bool_t *b,Bool_t multi);
26 : void SetACORDERawWords(Bool_t *b,Bool_t multi);
27 :
28 :
29 : private:
30 :
31 : UInt_t fWord9;
32 : UInt_t fWord10;
33 : UInt_t fWord11;
34 : UInt_t fWord12;
35 :
36 12 : ClassDef(AliACORDERawData,1) // ACORDE raw data class
37 :
38 : };
39 :
40 : typedef AliACORDERawData AliCRTRawData; // for backward compatibility
41 :
42 : #endif
|