]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONSt1SpecialMotif.cxx
New CE DA ... (Jens)
[u/mrichter/AliRoot.git] / MUON / AliMUONSt1SpecialMotif.cxx
index c4e78346b8d34ce19d1ef9630b9e9fbc47506dd8..66b7ba276b7275ff8c4ae3f03ac50401e55c0fab 100644 (file)
 
 /* $Id$ */
 
-// Authors: David Guez, Ivana Hrivnacova, Marion MacCormick; IPN Orsay
-//
+//-----------------------------------------------------------------------------
 // Class AliMUONSt1SpecialMotif
 // ----------------------------
 // Encapsulate the distance between the center of a given daughter card
 // and the pad/kapton connector.
 // Included in AliRoot 2003/01/28
+// Authors: David Guez, Ivana Hrivnacova, Marion MacCormick; IPN Orsay
+//-----------------------------------------------------------------------------
 
 #include "AliMUONSt1SpecialMotif.h"
 
@@ -58,3 +59,16 @@ AliMUONSt1SpecialMotif::~AliMUONSt1SpecialMotif()
 /// Destructor
 }
 
+//__________________________________________________________________________
+AliMUONSt1SpecialMotif& AliMUONSt1SpecialMotif::operator=(const AliMUONSt1SpecialMotif& src)
+{
+/// Assignment operator
+
+  // check assignment to self
+  if (this == &src) return *this;
+
+  fDelta = src.fDelta;
+  fRotAngle = src.fRotAngle;
+
+  return *this;
+}