]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HLT/global/AliHLTGlobalHistoComponent.h
prohibiting copy constructor and assignment operator of helper class
[u/mrichter/AliRoot.git] / HLT / global / AliHLTGlobalHistoComponent.h
index 264e442838cca915e2054b0059c353fdaa9ea942..60e4a5aed6dfa711d13eadd7eae6247677bf4776 100644 (file)
@@ -83,7 +83,6 @@ class AliHLTGlobalHistoComponent : public AliHLTTTreeProcessor
   class AliHLTGlobalHistoVariables {
   public:
     AliHLTGlobalHistoVariables()  : fCapacity(0), fArrays(), fCount(), fKeys() {}
-    AliHLTGlobalHistoVariables(const AliHLTGlobalHistoVariables& src)  : fCapacity(0), fArrays(), fCount(), fKeys() {}
     ~AliHLTGlobalHistoVariables() {Reset();}
 
     /// init the arrays
@@ -171,6 +170,9 @@ class AliHLTGlobalHistoComponent : public AliHLTTTreeProcessor
     char GetType() const {AliHLTGlobalHistoVariablesType type(T&); return type.GetType();}
 
   private:
+    AliHLTGlobalHistoVariables(const AliHLTGlobalHistoVariables& src);
+    AliHLTGlobalHistoVariables& operator=(const AliHLTGlobalHistoVariables& src);
+
     int FindKey(const char* key) const
     {
       map<string, int>::const_iterator element=fKeys.find(key);