]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerBoard.cxx
New RAW I/O. I rolled my own, because I wasn't happy with the old
[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)
19
20#include "AliMUONTriggerBoard.h"
21#include "AliLog.h"
22
23//___________________________________________
24AliMUONTriggerBoard::AliMUONTriggerBoard()
25{
26// Default Ctor
27 fSlot = fResponse = 0;
28}
29
30//___________________________________________
31AliMUONTriggerBoard::AliMUONTriggerBoard(const char *Name, Int_t islot) : TNamed(Name,"Trigger board")
32{
33 fSlot = islot;
34
35 fResponse = 0;
36}
37
38//___________________________________________
39AliMUONTriggerBoard::AliMUONTriggerBoard(const AliMUONTriggerBoard &board) : TNamed(board)
40{
41// Dummy Copy Ctor
42 board.Copy(*this);
43}
44
45//___________________________________________
46AliMUONTriggerBoard& AliMUONTriggerBoard::operator=(const AliMUONTriggerBoard&)
47{
48 AliFatal("Assignment operator not implemented");
49 return *this;
50}
51
52//___________________________________________
53void AliMUONTriggerBoard::Copy(TObject&) const
54{
55 Fatal("Copy","Not implemented!\n");
56}
57
58ClassImp(AliMUONTriggerBoard)
59
60