]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/comp/AliL3Models.h
Added Gautes changes from Bergen.
[u/mrichter/AliRoot.git] / HLT / comp / AliL3Models.h
index ff77cfaf1ea6f3f6e4844c60e32313702012566f..cf1d0d140a07161b55838e1d5481439513853786 100644 (file)
@@ -23,18 +23,22 @@ struct AliL3ClusterModel {
 typedef struct AliL3ClusterModel AliL3ClusterModel;
 
 struct AliL3RemainingCluster {
-  UShort_t fPad;    //2 bytes
-  UShort_t fTime;   //2 bytes
-  Byte_t fSigmaY2;  //1 byte
-  Byte_t fSigmaZ2;  //1 byte
-  UShort_t fCharge; //2 bytes
+  Float_t fPad;   
+  Float_t fTime;  
+  Float_t fSigmaY2;  
+  Float_t fSigmaZ2;  
+  UShort_t fCharge;
 };
 typedef struct AliL3RemainingCluster AliL3RemainingCluster;
 
 struct AliL3RemainingRow {
   Byte_t fPadRow;       //1 byte
   UShort_t fNClusters;  //2 bytes
+#if defined(__HP_aCC) || defined(__DECCXX) || defined(__SUNPRO_CC)
+  AliL3RemainingCluster fClusters[1];
+#else
   AliL3RemainingCluster fClusters[0];
+#endif
 };
 typedef struct AliL3RemainingRow AliL3RemainingRow;