]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerBoard.cxx
Adding new classes (Laurent)
[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
18//*-- Author: Rachid Guernane (LPCCFd)
edd00c2d 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
a5418161 23
24#include "AliMUONTriggerBoard.h"
25#include "AliLog.h"
26
27//___________________________________________
28AliMUONTriggerBoard::AliMUONTriggerBoard()
1657f946 29 : TNamed(),
30 fSlot(0),
31 fResponse(0)
a5418161 32{
33// Default Ctor
1657f946 34
a5418161 35}
36
37//___________________________________________
1657f946 38AliMUONTriggerBoard::AliMUONTriggerBoard(const char *Name, Int_t islot)
39 : TNamed(Name,"Trigger board"),
40 fSlot(islot),
41 fResponse(0)
a5418161 42{
edd00c2d 43// Standard Ctor
a5418161 44
a5418161 45}
46
47//___________________________________________
da3d7180 48AliMUONTriggerBoard::AliMUONTriggerBoard(const AliMUONTriggerBoard &board)
49 : TNamed(board),
50 fSlot(board.fSlot),
51 fResponse(board.fResponse)
a5418161 52{
53// Dummy Copy Ctor
da3d7180 54// board.Copy(*this);
a5418161 55}
56
57//___________________________________________
58AliMUONTriggerBoard& AliMUONTriggerBoard::operator=(const AliMUONTriggerBoard&)
59{
60 AliFatal("Assignment operator not implemented");
61 return *this;
62}
63
64//___________________________________________
65void AliMUONTriggerBoard::Copy(TObject&) const
66{
67 Fatal("Copy","Not implemented!\n");
68}
69
70ClassImp(AliMUONTriggerBoard)
71
72