]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TPC/AliTPCMonitorAltro.h
AliEveMacro
[u/mrichter/AliRoot.git] / TPC / AliTPCMonitorAltro.h
... / ...
Content-type: text/html ]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TPC/AliTPCMonitorAltro.h


500 - Internal Server Error

Malformed UTF-8 character (fatal) at (eval 5) line 1, <$fd> line 39.
CommitLineData
1#ifndef ALITPCMONITORALTRO_H
2#define ALITPCMONITORALTRO_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 * See cxx source for full Copyright notice */
6
7/* $Id$ */
8
9////////////////////////////////////////////////////////////////////////
10////
11//// AliTPCMonitorAltro class
12////
13//// Class for decoding raw TPC data in the ALTRO format
14////
15//// Authors: Roland Bramm,
16//// Stefan Kniege, IKF, Frankfurt
17////
18/////////////////////////////////////////////////////////////////////////
19
20#include "TNamed.h"
21
22class AliTPCMonitorAltro : public TNamed {
23 public:
24 AliTPCMonitorAltro(UInt_t* memory, Int_t size, Int_t fformat);
25 AliTPCMonitorAltro(const AliTPCMonitorAltro &altro);
26 AliTPCMonitorAltro& operator= (const AliTPCMonitorAltro& altro);
27 ~AliTPCMonitorAltro();
28
29 void Allocate40BitArray();
30 void Allocate10BitArray();
31
32 void Decodeto40Bit();
33 void Decodeto10Bit(Int_t equipment = -1);
34
35 Int_t DecodeTrailer(Int_t pos);
36
37 Long64_t* Get40BitArray();
38 Short_t *Get10BitArray();
39