]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONSt1SpecialMotif.cxx
Added AddTask and minor code update
[u/mrichter/AliRoot.git] / MUON / AliMUONSt1SpecialMotif.cxx
index 3ffbdc71c084e5c97d1a72ea3b9e918c78b12f0a..66b7ba276b7275ff8c4ae3f03ac50401e55c0fab 100644 (file)
@@ -59,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;
+}