]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Added new datatypes
authorphille <phille@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 25 Feb 2007 22:30:43 +0000 (22:30 +0000)
committerphille <phille@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sun, 25 Feb 2007 22:30:43 +0000 (22:30 +0000)
HLT/PHOS/AliHLTPHOSDefinitions.cxx
HLT/PHOS/AliHLTPHOSDefinitions.h

index 08ec233d8fbb854e2c4b780ee76ec2a261f2c3c8..bcd68249a324c6af921066c974f81fbc63608121 100644 (file)
 #include "AliHLTPHOSDefinitions.h"
 
 
-const AliHLTComponentDataType AliHLTPHOSDefinitions::gkDDLPackedRawDataType = { sizeof(AliHLTComponentDataType), {'D','D','L','_','R','W','P','K'},{'P','H','O','S'}};;
-const AliHLTComponentDataType AliHLTPHOSDefinitions::gkCellEnergyDataType = { sizeof(AliHLTComponentDataType),   {'C','E','L','L','E','N','E','R'},{'P','H','O','S'}};;
-
-
-    
+const AliHLTComponentDataType AliHLTPHOSDefinitions::gkDDLPackedRawDataType          = { sizeof(AliHLTComponentDataType),       {'D','D','L','_','R','W','P','K'},{'P','H','O','S'}};;
+const AliHLTComponentDataType AliHLTPHOSDefinitions::gkCellEnergyDataType            = { sizeof(AliHLTComponentDataType),       {'C','E','L','L','E','N','E','R'},{'P','H','O','S'}};;
+const AliHLTComponentDataType AliHLTPHOSDefinitions::gkCellEnergyHistogramDataType   = { sizeof(AliHLTComponentDataType),       {'E','N','E','R','H','I','S','T'},{'P','H','O','S'}};;
+const AliHLTComponentDataType AliHLTPHOSDefinitions::gkCellAverageEnergyDataType     = { sizeof(AliHLTComponentDataType),       {'E','N','E','R','A','V','E','R'},{'P','H','O','S'}};;
+const AliHLTComponentDataType AliHLTPHOSDefinitions::gkCellAccumulatedEnergyDataType = { sizeof(AliHLTComponentDataType),       {'E','N','E','R','A','C','C','U'},{'P','H','O','S'}};;
+const AliHLTComponentDataType AliHLTPHOSDefinitions::gkCellTimingHistogramDataType   = { sizeof(AliHLTComponentDataType),       {'T','I','M','E','H','I','S','T'},{'P','H','O','S'}};;    
+const AliHLTComponentDataType AliHLTPHOSDefinitions::gkCellTimingAverageDataType     = { sizeof(AliHLTComponentDataType),       {'T','I','M','E','A','V','E','R'},{'P','H','O','S'}};;
index bf0a41486447fbe010fb04ead85b338a7d67c094..d9ad690f69ab4c8fdca34175995348fa85a3f623 100644 (file)
@@ -17,6 +17,11 @@ class AliHLTPHOSDefinitions
     public:
       static const AliHLTComponentDataType gkCellEnergyDataType;    /**<Reconstructed cell/crystal energies*/
       static const AliHLTComponentDataType gkDDLPackedRawDataType;  /**<DDL raw data on the RCU data format*/
+      static const AliHLTComponentDataType gkCellEnergyHistogramDataType;  /**<Histogram for per cell/gain energy distribution*/
+      static const AliHLTComponentDataType gkCellAverageEnergyDataType;  /**<Histogram for per cell/gain energy distribution*/
+      static const AliHLTComponentDataType gkCellAccumulatedEnergyDataType;  /**<Histogram for per cell/gain energy distribution*/
+      static const AliHLTComponentDataType gkCellTimingHistogramDataType;  /**<Histogram for per cell/gain time distribution*/      
+      static const AliHLTComponentDataType gkCellTimingAverageDataType;  /**<Histogram for per cell/gain time distribution*/  
     };
 
 #endif