]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/CALO/AliHLTCaloConstantsHandler.h
removing unnecessary include files, updating description
[u/mrichter/AliRoot.git] / HLT / CALO / AliHLTCaloConstantsHandler.h
index 8dd6bca075b0007f857684a11a2f2304163019ed..f2f5106e114a26fa2eb2ccf325f9519130c91813 100644 (file)
@@ -17,8 +17,9 @@
 #ifndef ALIHLTCALOCONSTANTSHANDLER_H
 #define ALIHLTCALOCONSTANTSHANDLER_H
 
-class AliHLTCaloConstants;
-class TString;
+#include "AliHLTCaloConstants.h"
+#include "TString.h"
+
 
 class AliHLTCaloConstantsHandler
 {
@@ -26,21 +27,24 @@ public:
   AliHLTCaloConstantsHandler(TString det);
   virtual ~AliHLTCaloConstantsHandler();
 
+
 protected:
   AliHLTCaloConstants* fCaloConstants;
   
 private:
+  
+
+
   /** Keep the standard constructor private, since we must alway initialize by specific calorimeter**/
   AliHLTCaloConstantsHandler();
-
+  
   /** Keep the copy constructor private since it should not be used */
-  //  AliHLTCaloConstantsHandler(const AliHLTCaloConstantsHandler & );
-
+  AliHLTCaloConstantsHandler(const AliHLTCaloConstantsHandler & );
+  
   /** Keep the assignement operator private since it should not be used */
-    AliHLTCaloConstantsHandler & operator = (const AliHLTCaloConstantsHandler &);
-
-
-  void Initialize(TString det);
+  AliHLTCaloConstantsHandler & operator = (const AliHLTCaloConstantsHandler &);
+  
+  ClassDef(AliHLTCaloConstantsHandler, 1);
 
 };