| 1 | #ifndef AliL3Models_H |
| 2 | #define AliL3Models_H |
| 3 | |
| 4 | #include "AliL3RootTypes.h" |
| 5 | |
| 6 | const Int_t MaxNClusters = 32; |
| 7 | |
| 8 | struct 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; |
| 15 | }; |
| 16 | typedef struct AliL3ClusterModel AliL3ClusterModel; |
| 17 | |
| 18 | struct AliL3TrackModel { |
| 19 | Float_t fKappa; |
| 20 | Float_t fFirstPointX; |
| 21 | Float_t fFirstPointY; |
| 22 | Float_t fFirstPointZ; |
| 23 | Float_t fTgl; |
| 24 | Float_t fPsi; |
| 25 | Short_t fLength; |
| 26 | Short_t fClusterCharge; |
| 27 | Char_t fNClusters; |
| 28 | }; |
| 29 | typedef struct AliL3TrackModel AliL3TrackModel; |
| 30 | |
| 31 | #endif |