]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTriggerCrate.cxx
Error messages stored in the global raw-reader error log (Cvetan, Chiara)
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerCrate.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 /// \class AliMUONTriggerCrate
19 ///  Collection of trigger boards
20 ///  - one regional
21 ///  - sixteen local
22 ///  slot 0 holds the regional board
23 /// \author Rachid Guernane (LPCCFd)
24
25 #include <TObjArray.h>
26
27 #include "AliMUONTriggerBoard.h"
28 #include "AliMUONTriggerCrate.h"
29
30 ClassImp(AliMUONTriggerCrate)
31
32 //___________________________________________
33 AliMUONTriggerCrate::AliMUONTriggerCrate()
34     : fNslots(0),
35       fNboards(0),
36       fBoards(0x0),
37       fSourceFileName(0)    
38 {
39 /// Default constructor
40 }
41
42 //___________________________________________
43 AliMUONTriggerCrate::~AliMUONTriggerCrate()
44 {
45 /// Destructor
46
47   delete fBoards;
48 }
49
50 //___________________________________________
51 AliMUONTriggerCrate::AliMUONTriggerCrate(const char *name, Int_t n) : 
52     TNamed(name,"Regional trigger crate"),
53     fNslots(n),
54     fNboards(0),
55     fBoards(new TObjArray(fNslots)),
56     fSourceFileName(0)
57 {
58 /// Standard constructor
59 }
60
61 //___________________________________________
62 void AliMUONTriggerCrate::AddBoard(AliMUONTriggerBoard *board, Int_t i)
63 {
64 /// Add board in crate container
65    fBoards->AddAt(board,i);
66    fNboards++;
67 }
68