]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCMonitorAltro.h
Fixing ompilation warnings
[u/mrichter/AliRoot.git] / TPC / AliTPCMonitorAltro.h
Content-type: text/html ]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/AliTPCMonitorAltro.h


500 - Internal Server Error

Malformed UTF-8 character (fatal) at (eval 5) line 1, <$fd> line 121.
CommitLineData
48265b32 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////////////////////////////////////////////////////////////////////////
ca7b8371 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////
48265b32 18/////////////////////////////////////////////////////////////////////////
19
48265b32 20#include "TNamed.h"
48265b32 21
22class AliTPCMonitorAltro : public TNamed {
23 public:
24 AliTPCMonitorAltro(UInt_t* memory, Int_t size, Int_t fformat);
ca7b8371 25 AliTPCMonitorAltro(const AliTPCMonitorAltro &altro);
26 AliTPCMonitorAltro& operator= (const AliTPCMonitorAltro& altro);
48265b32 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();
fb3305d1 38 Short_t *Get10BitArray();
4c6d06dc 39