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