]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONTriggerBoard.h
In Trigger QA:
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerBoard.h
index d874e30c9b1436bb9717aa8b0e5473806acd5295..230005a7ab8e9fca59ed71aa77f5332598e024e7 100644 (file)
@@ -5,9 +5,9 @@
 
 /* $Id$ */
 
-/// \ingroup sim
+/// \ingroup trigger
 /// \class AliMUONTriggerBoard
-/// \brief TRIGGER BOARD BASE CLASS
+/// \brief Trigger board base class
 ///
 //  Author Rachid Guernane (LPCCFd)
 
@@ -20,36 +20,30 @@ class AliMUONTriggerBoard : public TNamed
       AliMUONTriggerBoard(const char *name, Int_t islot);
       virtual ~AliMUONTriggerBoard();
 
-      /// \todo add comment 
+      /// virtual method for derivated classes
       virtual void Response() = 0;
 
-      /// \todo add comment 
+      /// virtual method for derivated classes
       virtual void Reset() = 0;
 
-      /// \todo add comment 
+      /// virtual method for derivated classes
       virtual void Scan(Option_t *option) const = 0;
 
-      /// \todo add comment 
+      /// virtual method for derivated classes
       virtual void Resp(Option_t *option) const = 0;
 
       /// Return response
       virtual UShort_t GetResponse() const {return fResponse;}
 
-      /// \todo add comment 
-      virtual void Mask(Int_t index, UShort_t mask) = 0;
-      
+      AliMUONTriggerBoard(const AliMUONTriggerBoard &rhs);
+      AliMUONTriggerBoard& operator=(const AliMUONTriggerBoard &rhs);
+
    protected:
       Int_t fSlot;                ///< SLOT NUMBER IN CRATE
 
       UShort_t fResponse;         ///< RESPONSE
 
-   private:
-      /// Not implemented
-      AliMUONTriggerBoard(const AliMUONTriggerBoard &entry);
-      /// Not implemented
-      AliMUONTriggerBoard& operator=(const AliMUONTriggerBoard &rhs);
-
-   ClassDef(AliMUONTriggerBoard,1)
+   ClassDef(AliMUONTriggerBoard,1) //Trigger board base class
 };
 #endif