]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HLT/TRD/AliHLTTRDTrackletWordArray.h
quit debug stream in calibration components if debug was enabled (Theo)
[u/mrichter/AliRoot.git] / HLT / TRD / AliHLTTRDTrackletWordArray.h
1 // $Id$
2 //* This file is property of and copyright by the ALICE HLT Project        * 
3 //* ALICE Experiment at CERN, All rights reserved.                         *
4 //* See cxx source for full Copyright notice                               *
5
6 #ifndef _ALIHLTTRDTRACKLETWORDARRAY_H_
7 #define _ALIHLTTRDTRACKLETWORDARRAY_H_
8
9 #include "AliHLTDataTypes.h"
10 #include "AliHLTStdIncludes.h"
11
12 struct AliHLTTRDTrackletWordArray {
13   AliHLTTRDTrackletWordArray(Int_t det):fDet(det),fCount(0){}
14   Int_t          fDet;
15   AliHLTUInt32_t fCount;
16 #if defined(__HP_aCC) || defined(__DECCXX) || defined(__SUNPRO_CC)
17   UInt_t fTracklets[1];
18 #else
19   UInt_t fTracklets[];
20 #endif
21 };
22
23 //typedef struct AliTRDHLTTrackletWordArray AliTRDHLTTrackletWordArray ?plain c!
24
25 #endif