]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/TRD/AliHLTTRDTrackletWordArray.h
adding missing argument in printf statement
[u/mrichter/AliRoot.git] / HLT / TRD / AliHLTTRDTrackletWordArray.h
CommitLineData
775f67d7 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_
93ce7d1b 7#define _ALIHLTTRDTRACKLETWORDARRAY_H_
775f67d7 8
9#include "AliHLTDataTypes.h"
10#include "AliHLTStdIncludes.h"
11
12struct 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