]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ACORDE/AliACORDERawData.h
Moving required CMake version from 2.8.4 to 2.8.8
[u/mrichter/AliRoot.git] / ACORDE / AliACORDERawData.h
CommitLineData
19f796ed 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// //
6bbe18ac 10// Converts ACORDE digits into a raw data stream //
19f796ed 11// //
12///////////////////////////////////////////////////////////////////////////////
13
14#include "TObject.h"
15
16class 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
54baf07b 25 void WriteACORDERawData(Bool_t *b,Bool_t multi);
26 void SetACORDERawWords(Bool_t *b,Bool_t multi);
19f796ed 27
28
29 private:
30
31 UInt_t fWord9;
32 UInt_t fWord10;
33 UInt_t fWord11;
34 UInt_t fWord12;
35
6bbe18ac 36 ClassDef(AliACORDERawData,1) // ACORDE raw data class
19f796ed 37
38};
39
40typedef AliACORDERawData AliCRTRawData; // for backward compatibility
41
42#endif