]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerBoard.cxx
Updated list of MUON libraries
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerBoard.cxx
CommitLineData
a5418161 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
16/* $Id$ */
17
71a2d3aa 18/// \class AliMUONTriggerBoard
19/// TRIGGER BOARD SUPER CLASS IMPLEMENTATION
20/// CAN BE A LOCAL, REGIONAL, OR GLOBAL BOARD
21/// REGIONAL BOARD IS PER CONVENTION
22/// ALWAYS IN THE SLOT 0
23/// \todo Change comments in capital letters to normal text
24///
25/// \author Rachid Guernane (LPCCFd)
a5418161 26
27#include "AliMUONTriggerBoard.h"
28#include "AliLog.h"
29
71a2d3aa 30/// \cond CLASSIMP
31ClassImp(AliMUONTriggerBoard)
32/// \endcond
33
a5418161 34//___________________________________________
35AliMUONTriggerBoard::AliMUONTriggerBoard()
1657f946 36 : TNamed(),
37 fSlot(0),
38 fResponse(0)
a5418161 39{
71a2d3aa 40/// Default Ctor
1657f946 41
a5418161 42}
43
44//___________________________________________
1657f946 45AliMUONTriggerBoard::AliMUONTriggerBoard(const char *Name, Int_t islot)
46 : TNamed(Name,"Trigger board"),
47 fSlot(islot),
48 fResponse(0)
a5418161 49{
71a2d3aa 50/// Standard Ctor
a5418161 51
a5418161 52}
53
54//___________________________________________
71a2d3aa 55AliMUONTriggerBoard::~AliMUONTriggerBoard()
a5418161 56{
71a2d3aa 57/// Destructor
58}
a5418161 59
a5418161 60
a5418161 61
62