]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/mapping/AliMpTriggerCrate.cxx
Fix for the problem during PbPb run of Nov 2010 (Indra)
[u/mrichter/AliRoot.git] / MUON / mapping / AliMpTriggerCrate.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 // $MpId: AliMpTrigger.cxx,v 1.4 2006/05/24 13:58:52 ivana Exp $
18
19 //-----------------------------------------------------------------------------
20 // Class AliMpTriggerCrate
21 // --------------------
22 // The class defines the properties of trigger crate
23 // Author: Ch. Finck, Subatech Nantes
24 //-----------------------------------------------------------------------------
25
26 #include "AliMpTriggerCrate.h"
27
28 #include "AliLog.h"
29
30 #include <Riostream.h>
31
32 /// \cond CLASSIMP
33 ClassImp(AliMpTriggerCrate)
34 /// \endcond
35
36
37 //______________________________________________________________________________
38 TString AliMpTriggerCrate::GenerateName(Int_t crateId, Int_t ddlId, Int_t nofDDLs)
39 {
40 /// Generate name
41
42   TString name;
43
44   if (crateId < 2)
45     name = Form("%d", crateId+1);
46   
47   if (crateId == 2)
48       name = "2-3";
49   
50   if (crateId > 2)
51       name = Form("%d", crateId);
52   
53   if (crateId > 7)
54     printf("crateId index too large\n");
55  
56   if (ddlId == nofDDLs)
57       name.Append("R");
58   else 
59       name.Append("L"); 
60
61   return name;
62 }  
63  
64 //______________________________________________________________________________
65 AliMpTriggerCrate::AliMpTriggerCrate(const Char_t* name, UShort_t id)
66   : TNamed(name, "mapping trigger crate"),
67     fId(id),
68     fDdlId(-1),
69     fLocalBoard(false)
70  
71 {
72 /// Standard constructor 
73 }
74
75 //______________________________________________________________________________
76 AliMpTriggerCrate::AliMpTriggerCrate(TRootIOCtor* /*ioCtor*/)
77   : TNamed(),
78     fId(),
79     fDdlId(),
80     fLocalBoard()
81 {
82 /// Root IO constructor
83 }
84
85 //______________________________________________________________________________
86 AliMpTriggerCrate::~AliMpTriggerCrate()
87 {
88 /// Destructor
89 }
90
91 //
92 // public methods
93 //
94
95 //______________________________________________________________________________
96 Bool_t AliMpTriggerCrate::AddLocalBoard(Int_t localBoardId)
97 {
98 /// Add local boards with given detElemId.
99 /// Return true if the local board was added
100
101   if ( HasLocalBoard(localBoardId) ) {
102     AliWarningStream() 
103       << "Local board with Id=" << localBoardId << " already present."
104       << endl;
105     return false;
106   }    
107
108   fLocalBoard.Add(localBoardId);
109   return true;
110 }   
111
112
113 //______________________________________________________________________________
114 Int_t AliMpTriggerCrate::GetNofLocalBoards() const
115 {  
116 /// Return the number of local board in this crate
117
118   return fLocalBoard.GetSize(); 
119 }
120
121 //______________________________________________________________________________
122 Int_t  AliMpTriggerCrate::GetLocalBoardId(Int_t index) const
123 {  
124 /// Return the local board by index (in loop)
125
126   if (index >= 0 && index < fLocalBoard.GetSize())
127       return fLocalBoard.GetValue(index); 
128   else 
129       return 0; // begin at 1
130 }
131
132 //______________________________________________________________________________
133 Bool_t  AliMpTriggerCrate::HasLocalBoard(Int_t localBoardId) const
134 {  
135 /// Return true if crate has local boardwith given localBoardId
136
137   return fLocalBoard.HasValue(localBoardId); 
138 }
139