]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONRegionalTriggerBoard.h
Always export to FES the regional configuration file
[u/mrichter/AliRoot.git] / MUON / AliMUONRegionalTriggerBoard.h
index e6ad58e670bd3288df10f7d5b4665c0a55634670..30ca7f54f09a32c4492c108e6b671f7e4f79f088 100644 (file)
@@ -5,7 +5,7 @@
 
 /* $Id$ */
 
-/// \ingroup sim
+/// \ingroup trigger
 /// \class AliMUONRegionalTriggerBoard
 /// \brief Regional trigger - real HW algorithm is implemented
 ///
@@ -33,15 +33,17 @@ class AliMUONRegionalTriggerBoard : public AliMUONTriggerBoard
       /// Set Local trigger inputs
       virtual void SetLocalResponse(UShort_t val[16]) {for (Int_t i=0;i<16;i++) fLocalResponse[i] = val[i];}
 
-      virtual UShort_t Algo(UShort_t i, UShort_t j, char *thres, Int_t level);
+      /// response of the algorithm
+      virtual UShort_t Algo(UShort_t i, UShort_t j, const char *thres, Int_t level);
 
-      void Mask(Int_t index, UShort_t mask);
+      /// set local boards enable
+      void Mask(UShort_t mask);
       
    private:
       UShort_t fLocalResponse[16]; ///< Local trigger inputs
-      UShort_t fMask[16];          ///< Entry mask
+      UShort_t fMask;              ///< Entry mask
       
-      ClassDef(AliMUONRegionalTriggerBoard,1)
+      ClassDef(AliMUONRegionalTriggerBoard,1) // Regional trigger - real HW algorithm is implemented
 };
 #endif