]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONRecoCheck.cxx
Correcting coding convention violations
[u/mrichter/AliRoot.git] / MUON / AliMUONRecoCheck.cxx
index c480550fe8745401f1d74dbfe8dcdd55c338d5e0..b1b800d6a9355b5bf51bbe5c7f7e87a988f957e6 100644 (file)
@@ -70,6 +70,15 @@ AliMUONRecoCheck::AliMUONRecoCheck(Char_t *chLoader)
   fRecoTracks = 0;
 }
 
+//____________________________________________________________________
+AliMUONRecoCheck::AliMUONRecoCheck(const AliMUONRecoCheck& rhs)
+ : TObject(rhs)
+{
+// Protected copy constructor
+
+  AliFatal("Not implemented.");
+}
+
 //_____________________________________________________________________________
 AliMUONRecoCheck::~AliMUONRecoCheck()
 {
@@ -81,6 +90,18 @@ AliMUONRecoCheck::~AliMUONRecoCheck()
   delete fMUONData;
 }
 
+//________________________________________________________________________
+AliMUONRecoCheck& AliMUONRecoCheck::operator = (const AliMUONRecoCheck& rhs)
+{
+// Protected assignement operator
+
+  if (this == &rhs) return *this;
+
+  AliFatal("Not implemented.");
+    
+  return *this;  
+}
+
 //_____________________________________________________________________________
 void AliMUONRecoCheck::MakeTrackRef()
 {