]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONDataInterface.cxx
Added protected copy constructors and assignment operators. (I. Hrivnacova)
[u/mrichter/AliRoot.git] / MUON / AliMUONDataInterface.cxx
index 1224affc9b4f60b740cf2f4d63c59ea3e4117148..7acd680dd49a482cf20cc5282f9caa96b5047618 100644 (file)
@@ -22,6 +22,13 @@ AliMUONDataInterface::AliMUONDataInterface()
        Reset();
 };
 
+AliMUONDataInterface::AliMUONDataInterface(const AliMUONDataInterface& rhs)
+  : TObject(rhs)
+{
+// Protected copy constructor
+
+  Fatal("AliMUONDataInterface", "Not implemented.");
+}
 
 AliMUONDataInterface::~AliMUONDataInterface()
 {
@@ -33,6 +40,18 @@ AliMUONDataInterface::~AliMUONDataInterface()
                delete fRunloader;
 };
 
+AliMUONDataInterface&  
+AliMUONDataInterface::operator=(const AliMUONDataInterface& rhs)
+{
+// Protected assignement operator
+
+  if (this == &rhs) return *this;
+
+  Fatal("operator=", "Not implemented.");
+    
+  return *this;  
+}    
+          
 
 void AliMUONDataInterface::Reset()
 {