From 9f123c04a738a2c7e784a7bba99eb2573c1b85c5 Mon Sep 17 00:00:00 2001 From: vestbo Date: Fri, 1 Feb 2002 15:52:07 +0000 Subject: [PATCH] Data structures for track and clusters --- HLT/comp/AliL3Models.h | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 HLT/comp/AliL3Models.h diff --git a/HLT/comp/AliL3Models.h b/HLT/comp/AliL3Models.h new file mode 100644 index 00000000000..fcfeb54a22e --- /dev/null +++ b/HLT/comp/AliL3Models.h @@ -0,0 +1,31 @@ +#ifndef AliL3Models_H +#define AliL3Models_H + +#include "AliL3RootTypes.h" + +const Int_t MaxNClusters = 32; + +struct AliL3ClusterModel { + Bool_t fPresent; + Float_t fDTime; + Float_t fDPad; + Float_t fDCharge; + Float_t fDSigmaY2; + Float_t fDSigmaZ2; +}; +typedef struct AliL3ClusterModel AliL3ClusterModel; + +struct AliL3TrackModel { + Float_t fKappa; + Float_t fFirstPointX; + Float_t fFirstPointY; + Float_t fFirstPointZ; + Float_t fTgl; + Float_t fPsi; + Short_t fLength; + Short_t fClusterCharge; + Char_t fNClusters; +}; +typedef struct AliL3TrackModel AliL3TrackModel; + +#endif -- 2.43.0