]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerEfficiencyCells.cxx
Better selection between menus
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerEfficiencyCells.cxx
CommitLineData
70b4a8d6 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#include <fstream>
17#include <TRandom.h>
18#include "Riostream.h"
081d3361 19#include "TSystem.h"
70b4a8d6 20
21#include "AliMUONTriggerEfficiencyCells.h"
be0c6f1f 22#include "AliMpConstants.h"
70b4a8d6 23#include "AliLog.h"
24
5398f946 25/// \class AliMUONTriggerEfficiencyCells
26/// A class to store and give access to the trigger chamber efficiency.
27///
081d3361 28/// Efficiency is stored per cathode on local boards, or, alternatively,
29/// on "cells" of a given size.
5398f946 30///
31/// The main method of this class is IsTriggered().
32///
33/// $ALICE_ROOT/MUON/data/TriggerChamberefficiencyCells.dat contains efficiency
34/// for each chamber (i.e. DetElement).
081d3361 35///
36/// In the case of local boards, efficiency is stored from left to right
37/// per increasing board number (from 1 to 234)
38///
39/// Otherwise, he efficiency cells goes from right to left and
5398f946 40/// from bottom to top of the chamber, namely, the efficiencies tabulated in the
41/// file refers to the following reference frame:
42///
43/// <pre>
44/// x
45/// <----------------------------------|
46/// |
47/// --------------------------- |
48/// | 0.97 | 0.97 | 0.97 | 0.97 | |
49/// --------------------------- |
50/// | 0.97 | 0.97 | 0.97 | 0.97 | |
51/// --------------------------- |
52/// | 0.97 | 0.97 | 0.97 | 0.97 | |
53/// --------------------------- |
54/// |
55/// \/ y
56/// </pre>
081d3361 57///
58/// In both cases, the file can be edited in order to change efficiency
59/// in a chosen local board/region of the chamber.
60///
5398f946 61///
62/// But please note that this object is also available from the CDB
63/// (generated using the MUONCDB.C macro)
64///
65/// \author Diego Stocco; INFN Torino
70b4a8d6 66
5398f946 67/// \cond CLASSIMP
70b4a8d6 68ClassImp(AliMUONTriggerEfficiencyCells)
5398f946 69/// \endcond
70b4a8d6 70
71//__________________________________________________________________________
72AliMUONTriggerEfficiencyCells::AliMUONTriggerEfficiencyCells()
73:
74TObject()
75{
5398f946 76/// Default constructor.
70b4a8d6 77 Reset();
78}
79
80//__________________________________________________________________________
81AliMUONTriggerEfficiencyCells::AliMUONTriggerEfficiencyCells(const char* filename)
82:
83TObject()
84{
5398f946 85/// Constructor using an ASCII file.
70b4a8d6 86 Reset();
87 ReadFile(filename);
88}
89
90
91//__________________________________________________________________________
92AliMUONTriggerEfficiencyCells::~AliMUONTriggerEfficiencyCells()
93{
5398f946 94/// Destructor. Does nothing ;-)
70b4a8d6 95}
70b4a8d6 96
97
98//__________________________________________________________________________
99void AliMUONTriggerEfficiencyCells::GetCellEfficiency(Int_t detElemId, Float_t x, Float_t y, Float_t &eff1, Float_t &eff2)
100{
081d3361 101/// Get the efficiencies of the 2 cathodes at a given location (x,y)
5398f946 102
70b4a8d6 103 Int_t chamber = FindChamberIndex(detElemId);
104 Int_t slat = FindSlatIndex(detElemId);
105 TArrayI cell = CellByCoord(detElemId,x,y);
106 eff1 = 0.0;
107 eff2 = 0.0;
108 if(cell.At(0)>=0 && cell.At(1)>=0)
109 {
110 eff1 = fCellContent[chamber][slat][0][cell.At(0)][cell.At(1)];
111 eff2 = fCellContent[chamber][slat][1][cell.At(0)][cell.At(1)];
112 }
113}
114
115
116//__________________________________________________________________________
081d3361 117void AliMUONTriggerEfficiencyCells::GetCellEfficiency(Int_t detElemId, Int_t localBoard, Float_t &eff1, Float_t &eff2)
70b4a8d6 118{
081d3361 119/// Get the efficiencies of the 2 cathodes at a given local board
5398f946 120
081d3361 121 Int_t chamber = FindChamberIndex(detElemId);
122 eff1 = fBoardContent[chamber][0][localBoard];
123 eff2 = fBoardContent[chamber][1][localBoard];
70b4a8d6 124}
125
126
127//__________________________________________________________________________
128void
129AliMUONTriggerEfficiencyCells::IsTriggered(Int_t detElemId, Float_t x, Float_t y, Bool_t &trig1, Bool_t &trig2)
130{
5398f946 131/// Whether or not a given location (x,y) has a chance to trig, on each cathode.
132
70b4a8d6 133 Float_t eff1 = 0.0;
134 Float_t eff2 = 0.0;
135 GetCellEfficiency(detElemId, x, y, eff1, eff2);
136 trig1 = kTRUE;
137 trig2 = kTRUE;
138 if(gRandom->Rndm()>eff1)trig1 = kFALSE;
139 if(gRandom->Rndm()>eff2)trig2 = kFALSE;
140}
141
142
081d3361 143//__________________________________________________________________________
144void
145AliMUONTriggerEfficiencyCells::IsTriggered(Int_t detElemId, Int_t localBoard, Bool_t &trig1, Bool_t &trig2)
146{
147/// Whether or not a given local board has a chance to trig, on each cathode.
148
149 Float_t eff1 = 0.0;
150 Float_t eff2 = 0.0;
151 GetCellEfficiency(detElemId, localBoard, eff1, eff2);
152 trig1 = kTRUE;
153 trig2 = kTRUE;
154 if(gRandom->Rndm()>eff1)trig1 = kFALSE;
155 if(gRandom->Rndm()>eff2)trig2 = kFALSE;
156}
157
70b4a8d6 158//__________________________________________________________________________
159TArrayI AliMUONTriggerEfficiencyCells::CellByCoord(Int_t detElemId, Float_t x, Float_t y)
160{
5398f946 161/// Get the efficiencies at a given location.
162
70b4a8d6 163 Int_t chamber = FindChamberIndex(detElemId);
164 Int_t slat = FindSlatIndex(detElemId);
165 Int_t cell[2]={-1,-1};
166 Float_t maxX = fCellSize[chamber][slat][0]*((Float_t)fCellNumber[chamber][slat][0]);
167 Float_t maxY = fCellSize[chamber][slat][1]*((Float_t)fCellNumber[chamber][slat][1]);
168 if(x>=0 & x<maxX & y>=0 & y<maxY)
169 {
170 cell[0] = (Int_t)(x/fCellSize[chamber][slat][0]);
171 cell[1] = (Int_t)(y/fCellSize[chamber][slat][1]);
172 }
173 return TArrayI(2,cell);
174}
175
176//__________________________________________________________________________
177void AliMUONTriggerEfficiencyCells::ReadFile(const char* filename)
178{
5398f946 179/// Reads a file containing the efficiency map.
180
70b4a8d6 181 TString fileName = gSystem->ExpandPathName(filename);
182 ifstream file(fileName.Data());
70b4a8d6 183 char dat[50];
184 if (file.good()){
081d3361 185 file >> dat;
186 if(!strcmp(dat,"localBoards"))ReadFileBoards(file);
187 else ReadFileXY(file);
188 file.close();
189 } else {
190 AliWarning(Form("Can't read file %s",fileName.Data()));
191 }
192}
193
194
195//__________________________________________________________________________
196void AliMUONTriggerEfficiencyCells::ReadFileXY(ifstream &file)
197{
198/// Structure of file containing geometrical efficency
199 Int_t datInt=0, detEl=0, chamber=0, rpc=0;
200 Float_t datFloat=0.0;
201 char dat[50];
202
70b4a8d6 203 while (file >> dat) {
204 file >> detEl;
205 chamber = FindChamberIndex(detEl);
206 rpc = FindSlatIndex(detEl);
207 file >> dat;
208 for(Int_t i=0; i<2; i++){
209 file >> datInt;
210 fCellNumber[chamber][rpc][i] = datInt;
211 file >> dat;
212 }
213 for(Int_t i=0; i<2; i++){
214 file >> datFloat;
215 fCellSize[chamber][rpc][i] = datFloat;
216 if(i==0)file >> dat;
217 }
218 for(Int_t cath=0; cath<2; cath++){
219 file >> dat;
220 file >> datInt;
221 for(Int_t iy=0; iy<fCellNumber[chamber][rpc][1]; iy++){
222 for(Int_t ix=0; ix<fCellNumber[chamber][rpc][0]; ix++){
223 file >> datFloat;
224 fCellContent[chamber][rpc][cath][ix][iy] = datFloat;
225 }
226 }
227 }
228 }
70b4a8d6 229}
230
081d3361 231//__________________________________________________________________________
232void AliMUONTriggerEfficiencyCells::ReadFileBoards(ifstream &file)
233{
234/// Structure of file containing local board efficency
235 Int_t datInt=0, detEl=0, chamber=0;
236 Float_t datFloat=0.0;
237 char dat[50];
238
239 while (file >> dat) {
240 file >> detEl;
241 chamber = FindChamberIndex(detEl);
242 //rpc = FindSlatIndex(detEl);
243 for(Int_t cath=0; cath<2; cath++){
244 file >> dat;
245 file >> datInt;
246 for(Int_t board=0; board<fgkNofBoards; board++){
247 file >> datFloat;
248 fBoardContent[chamber][cath][board] = datFloat;
249 }
250 }
251 }
252}
70b4a8d6 253
254//__________________________________________________________________________
255Int_t AliMUONTriggerEfficiencyCells::FindChamberIndex(Int_t detElemId)
256{
5398f946 257/// From detElemId to chamber number
258
be0c6f1f 259 Int_t offset = 100*(AliMpConstants::NofTrackingChambers()+1);
70b4a8d6 260 Int_t chamber = (detElemId-offset)/100;
261 return chamber;
262}
263
264
265//__________________________________________________________________________
266Int_t AliMUONTriggerEfficiencyCells::FindSlatIndex(Int_t detElemId)
267{
5398f946 268/// From detElemId to slat index.
269
be0c6f1f 270 Int_t offset = 100*(AliMpConstants::NofTrackingChambers()+1);
70b4a8d6 271 Int_t chamber = FindChamberIndex(detElemId);
272 Int_t slat = detElemId-offset-(chamber*100);
273 return slat;
274}
275
276
277//__________________________________________________________________________
278TVector2 AliMUONTriggerEfficiencyCells::ChangeReferenceFrame(Float_t x, Float_t y, Float_t x0, Float_t y0)
279{
5398f946 280/// (x0,y0) position of the local reference frame (center of the chamber)
281
70b4a8d6 282 Float_t x1 = x0-x;//reflection of axis
283 Float_t y1 = y+y0;
284 return TVector2(x1,y1);
285}
286
287//__________________________________________________________________________
288void
289AliMUONTriggerEfficiencyCells::Reset()
290{
5398f946 291/// Sets our internal array contents to zero.
292
70b4a8d6 293 for(Int_t chamber=0; chamber<4; chamber++)
294 {
295 for(Int_t slat=0; slat<18; slat++)
296 {
297 for(Int_t cath=0; cath<2; cath++)
298 {
299 fCellSize[chamber][slat][cath]=0.0;
300 fCellNumber[chamber][slat][cath]=0;
301 for(Int_t ix=0; ix<fgkNofCells; ix++)
302 {
303 for(Int_t iy=0; iy<fgkNofCells; iy++)
304 {
305 fCellContent[chamber][slat][cath][ix][iy]=0.0;
306 }
307 }
5398f946 308 }
70b4a8d6 309 }
081d3361 310 for(Int_t cath=0; cath<2; cath++)
311 {
312 for(Int_t board=0; board<fgkNofBoards; board++)
313 {
314 fBoardContent[chamber][cath][board]=0.0;
315 }
316 }
70b4a8d6 317 }
318}
319