]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTriggerBoard.cxx
Adding MuonSim.SetMakeTrigger(MUON); now required by the new CTP framework (Christian)
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerBoard.cxx
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 //    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
24 #include "AliMUONTriggerBoard.h"
25 #include "AliLog.h"
26
27 //___________________________________________
28 AliMUONTriggerBoard::AliMUONTriggerBoard()
29 {
30 // Default Ctor
31    fSlot  = fResponse = 0;
32 }
33
34 //___________________________________________
35 AliMUONTriggerBoard::AliMUONTriggerBoard(const char *Name, Int_t islot) : TNamed(Name,"Trigger board")
36 {
37 // Standard Ctor
38    fSlot = islot;
39
40    fResponse = 0;
41 }
42
43 //___________________________________________
44 AliMUONTriggerBoard::AliMUONTriggerBoard(const AliMUONTriggerBoard &board) : TNamed(board)
45 {
46 // Dummy Copy Ctor
47    board.Copy(*this);
48 }
49
50 //___________________________________________
51 AliMUONTriggerBoard& AliMUONTriggerBoard::operator=(const AliMUONTriggerBoard&)
52 {
53    AliFatal("Assignment operator not implemented");
54    return *this;
55 }
56
57 //___________________________________________
58 void AliMUONTriggerBoard::Copy(TObject&) const
59 {
60    Fatal("Copy","Not implemented!\n");
61 }
62
63 ClassImp(AliMUONTriggerBoard)
64
65