]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONTriggerBoard.cxx
Merge branch 'master' of https://git.cern.ch/reps/AliRoot
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerBoard.cxx
index 526583d03a611d9a6413679991a3f29772d9c827..798a9175bdc004deac4cb4e712666dcbc6734c8c 100644 (file)
 
 /* $Id$ */
 
+//-----------------------------------------------------------------------------
 ///  \class AliMUONTriggerBoard
-///  TRIGGER BOARD SUPER CLASS IMPLEMENTATION
-///  CAN BE A LOCAL, REGIONAL, OR GLOBAL BOARD
-///  REGIONAL BOARD IS PER CONVENTION
-///  ALWAYS IN THE SLOT 0
-/// \todo Change comments in capital letters to normal text
+///
+///  Trigger board super class implementation.
+///  Can be a local, regional, or global board
+///  Regional board is per convention always in the slot 0
 ///
 ///  \author Rachid Guernane (LPCCFd)
+//-----------------------------------------------------------------------------
 
 #include "AliMUONTriggerBoard.h"
 #include "AliLog.h"
@@ -51,6 +52,37 @@ AliMUONTriggerBoard::AliMUONTriggerBoard(const char *Name, Int_t islot)
 
 }
 
+
+//___________________________________________
+AliMUONTriggerBoard::AliMUONTriggerBoard(const AliMUONTriggerBoard &rhs) 
+    : TNamed(rhs),
+      fSlot(rhs.fSlot),
+      fResponse(rhs.fResponse)
+{
+  //
+  /// Copy constructor
+  //
+}
+
+
+//___________________________________________
+AliMUONTriggerBoard& AliMUONTriggerBoard::operator=(const AliMUONTriggerBoard &rhs)
+{
+/// Assigment operator;
+
+  if (this == &rhs)
+    return *this;
+
+  // base class assignement
+  TNamed::operator=(rhs);
+
+  fSlot = rhs.fSlot;
+  fResponse = rhs.fResponse;
+
+  return *this;
+}
+
+
 //___________________________________________
 AliMUONTriggerBoard::~AliMUONTriggerBoard()
 {