]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONTriggerLut.cxx
Field maps for B = 0.2 T solenoid (L3).
[u/mrichter/AliRoot.git] / MUON / AliMUONTriggerLut.cxx
CommitLineData
a9e2aefa 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/*
c1651df4 16$Log$
b6ae9e79 17Revision 1.5 2000/10/02 21:28:09 fca
18Removal of useless dependecies via forward declarations
19
94de3818 20Revision 1.4 2000/10/02 16:58:29 egangler
21Cleaning of the code :
22-> coding conventions
23-> void Streamers
24-> some useless includes removed or replaced by "class" statement
25
ecfa008b 26Revision 1.3 2000/06/25 16:47:43 pcrochet
27pow replaced by TMath::Power
28
a9e2aefa 29*/
c1651df4 30
ecfa008b 31#include "AliMUONTriggerCircuit.h"
a9e2aefa 32#include "AliMUONTriggerLut.h"
33#include "TTree.h"
34#include "AliRun.h"
35#include "AliMUON.h"
a9e2aefa 36#include "TMath.h"
37#include "TFile.h"
94de3818 38#include "TROOT.h"
a9e2aefa 39#include "TH3.h"
ecfa008b 40#include <iostream.h>
a9e2aefa 41
42ClassImp(AliMUONTriggerLut)
43
44//----------------------------------------------------------------------
45AliMUONTriggerLut::AliMUONTriggerLut() {
46// constructor
47 fLptPlus = fLptMinu = fLptUnde = 0;
48 fHptPlus = fHptMinu = fHptUnde = 0;
49 fAptPlus = fAptMinu = fAptUnde = 0;
50}
51//----------------------------------------------------------------------
52AliMUONTriggerLut::~AliMUONTriggerLut() {
53// destructor
54 delete fLptPlus;
55 delete fLptMinu;
56 delete fLptUnde;
57 delete fHptPlus;
58 delete fHptMinu;
59 delete fHptUnde;
60 delete fAptPlus;
61 delete fAptMinu;
62 delete fAptUnde;
63 fLptPlus = fLptMinu = fLptUnde = 0;
64 fHptPlus = fHptMinu = fHptUnde = 0;
65 fAptPlus = fAptMinu = fAptUnde = 0;
66}
67
68//----------------------------------------------------------------------
69AliMUONTriggerLut::AliMUONTriggerLut (const AliMUONTriggerLut& MUONTriggerLut)
70{
71// Dummy copy constructor
72}
73
74//----------------------------------------------------------------------
75AliMUONTriggerLut & AliMUONTriggerLut::operator=(const AliMUONTriggerLut& MUONTriggerLut)
76{
77// Dummy assignment operator
78 return *this;
79}
80
81//----------------------------------------------------------------------
82void AliMUONTriggerLut::GetLutOutput(Int_t circuit, Int_t xstrip, Int_t idev,
83 Int_t ystrip, Int_t lutLpt[2],
84 Int_t lutHpt[2], Int_t lutApt[2]){
85// return output of LuT for corresponding TH3S
86
87 static TFile *fileLut;
88 static Bool_t first=kTRUE;
89 if(first) {
90 cout << " opening MUONTriggerLut.root " << "\n";
91 fileLut = new TFile("$(ALICE_ROOT)/MUON/MUONTriggerLut.root","READ");
92 first=kFALSE;
93 }
94 fileLut->cd();
95
96// get the pointers to the TH3S objects of the file
97 TH3S *lptPlus = (TH3S*)gROOT->FindObject("LptPlus");
98 TH3S *lptMinu = (TH3S*)gROOT->FindObject("LptMinu");
99 TH3S *lptUnde = (TH3S*)gROOT->FindObject("LptUnde");
100 TH3S *hptPlus = (TH3S*)gROOT->FindObject("HptPlus");
101 TH3S *hptMinu = (TH3S*)gROOT->FindObject("HptMinu");
102 TH3S *hptUnde = (TH3S*)gROOT->FindObject("HptUnde");
103 TH3S *aptPlus = (TH3S*)gROOT->FindObject("AptPlus");
104 TH3S *aptMinu = (TH3S*)gROOT->FindObject("AptMinu");
105 TH3S *aptUnde = (TH3S*)gROOT->FindObject("AptUnde");
106
107 Int_t bin;
108 Short_t binc;
109 Int_t mask = GetMask(ystrip); // get ystrip mask
110
111 // Low pt..............................................
112 bin = lptPlus->GetBin(circuit,xstrip,idev);
113 binc = (Short_t)lptPlus->GetBinContent(bin);
114 if ((binc & mask)!=0) lutLpt[1]=1;
115
116 bin = lptMinu->GetBin(circuit,xstrip,idev);
117 binc = (Short_t)lptMinu->GetBinContent(bin);
118 if ((binc & mask)!=0) lutLpt[0]=1;
119
120 bin = lptUnde->GetBin(circuit,xstrip,idev);
121 binc = (Short_t)lptUnde->GetBinContent(bin);
122 if ((binc & mask)!=0) lutLpt[0]=lutLpt[1]=1;
123
124 // High pt.............................................
125 bin = hptPlus->GetBin(circuit,xstrip,idev);
126 binc = (Short_t)hptPlus->GetBinContent(bin);
127 if ((binc & mask)!=0) lutHpt[1]=1;
128
129 bin = hptMinu->GetBin(circuit,xstrip,idev);
130 binc = (Short_t)hptMinu->GetBinContent(bin);
131 if ((binc & mask)!=0) lutHpt[0]=1;
132
133 bin = hptUnde->GetBin(circuit,xstrip,idev);
134 binc = (Short_t)hptUnde->GetBinContent(bin);
135 if ((binc & mask)!=0) lutHpt[0]=lutHpt[1]=1;
136
137 // All pts.............................................
138 bin = aptPlus->GetBin(circuit,xstrip,idev);
139 binc = (Short_t)aptPlus->GetBinContent(bin);
140 if ((binc & mask)!=0) lutApt[1]=1;
141
142 bin = aptMinu->GetBin(circuit,xstrip,idev);
143 binc = (Short_t)aptMinu->GetBinContent(bin);
144 if ((binc & mask)!=0) lutApt[0]=1;
145
146 bin = aptUnde->GetBin(circuit,xstrip,idev);
147 binc = (Short_t)aptUnde->GetBinContent(bin);
148 if ((binc & mask)!=0) lutApt[0]=lutApt[1]=1;
149
150// get back to the first file
151 TTree *tK = gAlice->TreeK();
152 TFile *file1 = 0;
153 if (tK) file1 = tK->GetCurrentFile();
154 file1->cd();
155}
156
157//----------------------------------------------------------------------
158Int_t AliMUONTriggerLut::GetMask(Int_t ystrip){
159// returns the mask corresponding to ystrip
160 Int_t tabMask[16]={0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0};
161 Int_t mask=0;
162 tabMask[ystrip]=1;
163 for (Int_t i=0; i<16; i++) {
c1651df4 164 mask=mask+Int_t(tabMask[i]*TMath::Power(2,i));
a9e2aefa 165 }
166 return mask;
167}
168
169//----------------------------------------------------------------------
170void AliMUONTriggerLut::LoadLut(){
171// !!!!!!! This is dummy version of the LoadLut method !!!!!!!
172// !!!!!!! calibration to be done !!!!!!!
173// 1) Loop on circuit/Xstrip1/deviation/Ystrip
174// 2) get corresponding ptCal from AliMUONTriggerCircuit
175// 3) fill histos with cuts on deviation, ptLow and ptHigh
176// 4) store histos in a file
177
178 char fileName[60];
179 sprintf(fileName,"$(ALICE_ROOT)/MUON/MUONTriggerLut.root");
180 cout << " file name is " << fileName << "\n";
181
182// open output file containing histos
183 TFile *hfile = new TFile(fileName,"RECREATE","Trigger Look Up Table");
184
185 //..........................................circuit/stripX/deviation
186 TH3S *fLptPlus=new TH3S("LptPlus","LptPlus",234,0,234,31,0,31,31,0,31);
187 TH3S *fLptMinu=new TH3S("LptMinu","LptMinu",234,0,234,31,0,31,31,0,31);
188 TH3S *fLptUnde=new TH3S("LptUnde","LptUnde",234,0,234,31,0,31,31,0,31);
189
190 TH3S *fHptPlus=new TH3S("HptPlus","HptPlus",234,0,234,31,0,31,31,0,31);
191 TH3S *fHptMinu=new TH3S("HptMinu","HptMinu",234,0,234,31,0,31,31,0,31);
192 TH3S *fHptUnde=new TH3S("HptUnde","HptUnde",234,0,234,31,0,31,31,0,31);
193
194 TH3S *fAptPlus=new TH3S("AptPlus","AptPlus",234,0,234,31,0,31,31,0,31);
195 TH3S *fAptMinu=new TH3S("AptMinu","AptMinu",234,0,234,31,0,31,31,0,31);
196 TH3S *fAptUnde=new TH3S("AptUnde","AptUnde",234,0,234,31,0,31,31,0,31);
197
198 Float_t lptTreshold=0.75;
199 Float_t hptTreshold=1.75;
200
201 AliMUON *pMUON = (AliMUON*)gAlice->GetModule("MUON");
202 AliMUONTriggerCircuit* triggerCircuit;
203
204 for (Int_t icirc=0; icirc<234; icirc++) {
205 cout << " Loading LuT for circuit " << icirc << " of 234 " << "\n";
206 triggerCircuit = &(pMUON->TriggerCircuit(icirc));
207
208 for (Int_t istripX=0; istripX<31; istripX++) {
209 for (Int_t idev=0; idev<31; idev++) {
210
211 Short_t iLptPlus, iLptMinu, iLptUnde;
212 Short_t iHptPlus, iHptMinu, iHptUnde;
213 Short_t iAptPlus, iAptMinu, iAptUnde;
214 iLptPlus = iLptMinu = iLptUnde = 0;
215 iHptPlus = iHptMinu = iHptUnde = 0;
216 iAptPlus = iAptMinu = iAptUnde = 0;
217
218 for (Int_t istripY=0; istripY<16; istripY++) {
219 Float_t pt=triggerCircuit->PtCal(istripX,idev,istripY);
220
221 if (pt>lptTreshold) {
c1651df4 222 if (idev<15) iLptMinu=iLptMinu+Int_t(TMath::Power(2,istripY));
223 else if (idev==15) iLptUnde=iLptUnde+Int_t(TMath::Power(2,istripY));
224 else if (idev>15) iLptPlus=iLptPlus+Int_t(TMath::Power(2,istripY));
a9e2aefa 225 }
226 if (pt>hptTreshold) {
c1651df4 227 if (idev<15) iHptMinu=iHptMinu+Int_t(TMath::Power(2,istripY));
228 else if (idev==15) iHptUnde=iHptUnde+Int_t(TMath::Power(2,istripY));
229 else if (idev>15) iHptPlus=iHptPlus+Int_t(TMath::Power(2,istripY));
a9e2aefa 230 }
c1651df4 231 if (idev<15) iAptMinu=iAptMinu+Int_t(TMath::Power(2,istripY));
232 else if (idev==15) iAptUnde=iAptUnde+Int_t(TMath::Power(2,istripY));
233 else if (idev>15) iAptPlus=iAptPlus+Int_t(TMath::Power(2,istripY));
a9e2aefa 234
235 } // loop on istripY
236
237 Int_t bin;
238
239 bin = fLptMinu->GetBin(icirc,istripX,idev);
240 fLptMinu->SetBinContent(bin,iLptMinu);
241 bin = fLptUnde->GetBin(icirc,istripX,idev);
242 fLptUnde->SetBinContent(bin,iLptUnde);
243 bin = fLptPlus->GetBin(icirc,istripX,idev);
244 fLptPlus->SetBinContent(bin,iLptPlus);
245
246 bin = fHptMinu->GetBin(icirc,istripX,idev);
247 fHptMinu->SetBinContent(bin,iHptMinu);
248 bin = fHptUnde->GetBin(icirc,istripX,idev);
249 fHptUnde->SetBinContent(bin,iHptUnde);
250 bin = fHptPlus->GetBin(icirc,istripX,idev);
251 fHptPlus->SetBinContent(bin,iHptPlus);
252
253 bin = fAptMinu->GetBin(icirc,istripX,idev);
254 fAptMinu->SetBinContent(bin,iAptMinu);
255 bin = fAptUnde->GetBin(icirc,istripX,idev);
256 fAptUnde->SetBinContent(bin,iAptUnde);
257 bin = fAptPlus->GetBin(icirc,istripX,idev);
258 fAptPlus->SetBinContent(bin,iAptPlus);
259
260 } // loop on idev
261 } // loop on istripX
262 } // loop on circuit
263
264 hfile->Write();
265 hfile->Close();
266}
267
268
269
270
271
272
273