]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTriggerCrate.cxx
From Cvetan: new macro to load ITS clusters.
[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 //*-- Author: Rachid Guernane (LPCCFd)
19 //    COLLECTION OF TRIGGER BOARDS
20 //    ONE REGIONAL
21 //    SIXTEEN LOCAL
22 //    SLOT 0 HOLDS THE REGIONAL BOARD
23
24 #include <TObjArray.h>
25
26 #include "AliMUONTriggerBoard.h"
27 #include "AliMUONTriggerCrate.h"
28
29 ClassImp(AliMUONTriggerCrate)
30
31 //___________________________________________
32 AliMUONTriggerCrate::AliMUONTriggerCrate()
33     : fNslots(0),
34       fNboards(0),
35       fBoards(0x0),
36       fSourceFileName(0)    
37 {
38     // Def Ctor
39 }
40
41 //___________________________________________
42 AliMUONTriggerCrate::~AliMUONTriggerCrate()
43 {
44   delete fBoards;
45 }
46
47 //___________________________________________
48 AliMUONTriggerCrate::AliMUONTriggerCrate(const char *name, Int_t n) : 
49     TNamed(name,"Regional trigger crate"),
50     fNslots(n),
51     fNboards(0),
52     fBoards(new TObjArray(fNslots)),
53     fSourceFileName(0)
54 {
55 }
56
57 //___________________________________________
58 void AliMUONTriggerCrate::AddBoard(AliMUONTriggerBoard *board, Int_t i)
59 {
60   // ADD BOARD IN CRATE CONTAINER
61    fBoards->AddAt(board,i);
62    fNboards++;
63 }
64
65 //___________________________________________
66 AliMUONTriggerCrate::AliMUONTriggerCrate(const AliMUONTriggerCrate &crate) 
67     : TNamed(crate),
68       fNslots(crate.fNslots),
69       fNboards(crate.fNboards),
70       fBoards(crate.fBoards),
71       fSourceFileName(crate.fSourceFileName)
72 {
73     
74 // Dummy Copy Ctor
75 //   crate.Copy(*this);
76 }
77
78 //___________________________________________
79 AliMUONTriggerCrate& AliMUONTriggerCrate::operator=(const AliMUONTriggerCrate &rhs)
80 {
81 // Assignment optor
82    rhs.Copy(*this);
83    return (*this);
84 }
85
86 //___________________________________________
87 void AliMUONTriggerCrate::Copy(TObject&) const
88 {
89    Fatal("Copy","Not implemented!\n");
90 }