]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONGlobalTriggerBoard.h
Adaptation to new ROOT
[u/mrichter/AliRoot.git] / MUON / AliMUONGlobalTriggerBoard.h
CommitLineData
d15ca731 1#ifndef ALIMUONGLOBALTRIGGERBOARD_H
2#define ALIMUONGLOBALTRIGGERBOARD_H
3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
edd00c2d 8/// \ingroup sim
9/// \class AliMUONGlobalTriggerBoard
10/// \brief GLOBAL TRIGGER
11///
12/// \author Rachid Guernane (LPCCFd)
d15ca731 13
14#include "AliMUONTriggerBoard.h"
15
16class AliMUONGlobalTriggerBoard : public AliMUONTriggerBoard
17{
18 public:
19
20 AliMUONGlobalTriggerBoard();
21 AliMUONGlobalTriggerBoard(const char *name, Int_t a);
22 virtual ~AliMUONGlobalTriggerBoard() {;}
23
24 virtual void SetRegionalResponse(UShort_t resp[16]) {for (Int_t i=0; i<16; i++) fRegionalResponse[i] = resp[i];}
25
26 virtual void Response();
27
28 virtual UShort_t Algo(UShort_t i, UShort_t j, char *thres);
29
30 virtual void Reset() {for (Int_t i=0; i<16; i++) fRegionalResponse[i] = 0;}
31
edd00c2d 32 virtual void Scan(Option_t *option) const;
d15ca731 33
edd00c2d 34 virtual void Resp(Option_t*) const {}
d15ca731 35
41922e78 36 void Mask(Int_t index, UShort_t mask);
37
d15ca731 38 private:
39
829425a5 40 UShort_t fRegionalResponse[16]; ///< REGIONAL BOARD RESPONSES
41 UShort_t fMask[16]; ///< MASK
d15ca731 42
43 ClassDef(AliMUONGlobalTriggerBoard,1)
44};
45#endif