]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HLT/comp/AliL3Models.h
Changes to make AliL3Compress work with new AliL3MemHandler::Init.
[u/mrichter/AliRoot.git] / HLT / comp / AliL3Models.h
CommitLineData
9f123c04 1#ifndef AliL3Models_H
2#define AliL3Models_H
3
4#include "AliL3RootTypes.h"
5
6const Int_t MaxNClusters = 32;
7
8struct AliL3ClusterModel {
9 Bool_t fPresent;
10 Float_t fDTime;
11 Float_t fDPad;
12 Float_t fDCharge;
13 Float_t fDSigmaY2;
14 Float_t fDSigmaZ2;
4a838220 15 UInt_t fNPads;
9f123c04 16};
17typedef struct AliL3ClusterModel AliL3ClusterModel;
18
19struct AliL3TrackModel {
20 Float_t fKappa;
21 Float_t fFirstPointX;
22 Float_t fFirstPointY;
23 Float_t fFirstPointZ;
24 Float_t fTgl;
25 Float_t fPsi;
26 Short_t fLength;
27 Short_t fClusterCharge;
28 Char_t fNClusters;
29};
30typedef struct AliL3TrackModel AliL3TrackModel;
31
32#endif