]> git.uio.no Git - u/mrichter/AliRoot.git/blame - FASTSIM/AliFastMuonTriggerEff.cxx
Default constructor creates CDB storage with centrally set run number (Yu.Kharlov)
[u/mrichter/AliRoot.git] / FASTSIM / AliFastMuonTriggerEff.cxx
CommitLineData
6255180c 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
490243f3 16/*
17The trigger parametrization is computed for background levels 0., 0.5 and 1.
18In order to set a background level different from 0 it is necessary to
19explicitly force it with:
20ForceBkgLevel(BkgLevel).
6255180c 21
490243f3 22For intermediate background levels, the trigger response is linearly
23interpolated between these values.
24
25There is increased granularity in the pT region below 3 GeV. Although
26it does not seem to be necessary it is also possible to interpolate
27between pT bins using SetInt().
6255180c 28
490243f3 29$Log$
ecda8707 30Revision 1.8 2005/09/22 11:31:42 morsch
31Completely revised version. (P. Cortese)
32
490243f3 33*/
34
35#include "AliFastMuonTriggerEff.h"
36#define PLIN printf("%s: %d: ",__FILE__,__LINE__)
6255180c 37
ecda8707 38ClassImp(AliFastMuonTriggerEff)
6255180c 39
40AliFastMuonTriggerEff::AliFastMuonTriggerEff():
41 AliFastResponse("Efficiency", "Muon Trigger Efficiency")
42{
43//
44// Default constructor
45//
46 SetCut(kLow);
47 fZones=0;
490243f3 48 SetBkgLevel(0.);
49 UnsetInt();
6255180c 50}
51
490243f3 52void AliFastMuonTriggerEff::SetCut(Int_t cut)
53{
54 if(cut==kLow){
55 printf("Selecting Low Pt cut\n");
56 }else if(cut==kHigh){
57 printf("Selecting High Pt cut\n");
58 }else if(cut==kAny){
59 printf("Selecting Lowest Pt cut\n");
60 }else{
61 printf("Don't know cut %d! Selecting Low Pt cut\n",cut);
62 cut=kLow;
63 }
64 fCut = cut;
65
66}
6255180c 67
490243f3 68Int_t AliFastMuonTriggerEff::SetBkgLevel(Float_t Bkg)
6255180c 69{
490243f3 70 if((Bkg!=0.)) {
71 printf("%s: Warning: requested Bkg: %f\n",
72 __FILE__,Bkg);
73 fBkg=0.;
74 printf("A consistent treatement of the trigger probability\n");
75 printf("within the framework of the fast simulation requires\n");
76 printf("requires background 0\n");
77 printf("%s: fBkg: set to %f\n",
78 __FILE__,fBkg);
79 } else {
80 fBkg=Bkg;
81 }
82 if(fZones!=0.) {
83 Init();
84 }
85 return 0;
86}
6255180c 87
490243f3 88Int_t AliFastMuonTriggerEff::ForceBkgLevel(Float_t Bkg)
89{
90 if((Bkg!=0.)) {
91 printf("%s: Warning: requested Bkg: %f\n",
92 __FILE__,Bkg);
93 printf("A consistent treatement of the trigger probability\n");
94 printf("within the framework of the fast simulation\n");
95 printf("requires background 0");
96 printf("%s: Continue with fBkg: %f\n",
97 __FILE__,Bkg);
98 }
99 fBkg=Bkg;
100 if(fZones!=0.) {
101 Init();
102 }
103 return 0;
104}
6255180c 105
490243f3 106Int_t AliFastMuonTriggerEff::LoadTables(Char_t *namet=""){
107 Char_t hNameA[100],hNameL[100],hNameH[100];
108 sprintf(hNameA,"hEffAPt%s",namet);
109 sprintf(hNameL,"hEffLPt%s",namet);
110 sprintf(hNameH,"hEffHPt%s",namet);
111 fhEffAPt = (TH3F*)gDirectory->Get(hNameA);
112 fhEffLPt = (TH3F*)gDirectory->Get(hNameL);
113 fhEffHPt = (TH3F*)gDirectory->Get(hNameH);
114 if(!fhEffAPt){
115 PLIN; printf("%s: histogram %s not found\n",__FILE__,hNameA);
116 return -1;
117 }
118 if(!fhEffLPt){
119 PLIN; printf("%s: histogram %s not found\n",__FILE__,hNameL);
120 return -2;
121 }
122 if(!fhEffHPt){
123 PLIN; printf("%s: histogram %s not found\n",__FILE__,hNameH);
124 return -3;
125 }
126 return 0;
6255180c 127}
128
490243f3 129void AliFastMuonTriggerEff::Init()
6255180c 130{
131//
490243f3 132// Initialization
6255180c 133//
490243f3 134 fZones=0;
135 Char_t file[100]="$(ALICE_ROOT)/FASTSIM/data/MUONtriggerLUT_V2.4nvdn.root";
136 printf("Initializing %s / %s\n", fName.Data(), fTitle.Data());
137 printf("using data from file: %s\n",file);
138 printf("AliFastMuonTriggerEff: Initialization with background level: %f\n",fBkg);
6255180c 139 TFile *f = new TFile(file);
140 if(f->IsZombie()) {
490243f3 141 PLIN; printf("Cannot open file: %s\n",file);
6255180c 142 return;
143 }
144 f->ls();
490243f3 145 Int_t intb=0;
146 Char_t namet[10];
147 if(TMath::Abs(fBkg)<0.00001){
148 sprintf(namet,"00");
149 }else if(TMath::Abs(fBkg-0.5)<0.00001){
150 sprintf(namet,"05");
151 }else if(TMath::Abs(fBkg-1.0)<0.00001){
152 sprintf(namet,"10");
153 }else{
154 PLIN; printf("A table for Bkg level: %f does not exists\n",fBkg);
155 intb=1;
6255180c 156 }
490243f3 157 if(intb){ // Interpolation between background levels
158 PLIN; printf("Interpolating Bkg level: %f\n",fBkg);
159 TH3F* ha1,*hl1,*hh1,*ha2,*hl2,*hh2,*ha0,*hl0,*hh0;
160 Char_t name1[10],name2[10]; Float_t b1,b2;
161 if(fBkg>0&&fBkg<0.5){
162 sprintf(name1,"00");
163 sprintf(name2,"05");
164 b1=0.;
165 b2=0.5;
166 }else if(fBkg>0.5){
167 sprintf(name1,"05");
168 sprintf(name2,"10");
169 b1=0.5;
170 b2=1.0;
171 if(fBkg>1.0){
172 for(Int_t i=0; i<10;i++){
173 PLIN; printf("WARNING!!!! You are extrapolating above background 1.0\n");
174 }
6255180c 175 }
490243f3 176 }else{
177 PLIN; printf("Bkg level: %f is not supported\n",fBkg);
178 return;
179 }
180 if(LoadTables(name1)){
181 PLIN; printf("Error in loading trigger tables\n");
182 return;
183 }
184 PLIN; printf("We use tables for %f and %f to interpolate %f Bkg level\n",b1,b2,fBkg);
185 ha0=(TH3F*)fhEffAPt->Clone("hEffAPtXX"); ha0->Reset();
186 hl0=(TH3F*)fhEffLPt->Clone("hEffLPtXX"); hl0->Reset();
187 hh0=(TH3F*)fhEffHPt->Clone("hEffHPtXX"); hh0->Reset();
188 ha1=fhEffAPt;
189 hl1=fhEffLPt;
190 hh1=fhEffHPt;
191 if(LoadTables(name2)){
192 PLIN; printf("Error in loading trigger tables\n");
193 return;
194 }
195 ha2=fhEffAPt;
196 hl2=fhEffLPt;
197 hh2=fhEffHPt;
198 fhEffAPt=ha0;
199 fhEffLPt=hl0;
200 fhEffHPt=hh0;
201 Int_t nnx=ha0->GetNbinsX()+1;
202 Int_t nny=ha0->GetNbinsY()+1;
203 Int_t nnz=ha0->GetNbinsZ()+1;
204 for(Int_t ix=0; ix<=nnx; ix++){
205 for(Int_t iy=0; iy<=nny; iy++){
206 for(Int_t iz=0; iz<=nnz; iz++){
207 Double_t y1,y2; Float_t cont;
208 y1=ha1->GetBinContent(ix,iy,iz); y2=ha2->GetBinContent(ix,iy,iz);
209 cont=Float_t(y1+(y2-y1)/(b2-b1)*(fBkg-b1)); if(cont>1)cont=1; if(cont<0)cont=0;
210 fhEffAPt->SetBinContent(ix,iy,iz,cont);
211 y1=hl1->GetBinContent(ix,iy,iz); y2=hl2->GetBinContent(ix,iy,iz);
212 cont=Float_t(y1+(y2-y1)/(b2-b1)*(fBkg-b1)); if(cont>1)cont=1; if(cont<0)cont=0;
213 fhEffLPt->SetBinContent(ix,iy,iz,cont);
214 y1=hh1->GetBinContent(ix,iy,iz); y2=hh2->GetBinContent(ix,iy,iz);
215 cont=Float_t(y1+(y2-y1)/(b2-b1)*(fBkg-b1)); if(cont>1)cont=1; if(cont<0)cont=0;
216 fhEffHPt->SetBinContent(ix,iy,iz,cont);
217 }
6255180c 218 }
490243f3 219 }
220 }else{ // Use tables computed for selected backgound levels
221 printf("Loading tables for background level: %f\n",fBkg);
222 if(LoadTables(namet)){
223 PLIN; printf("Error in loading trigger tables\n");
224 return;
225 }
6255180c 226 }
490243f3 227 fhEffAPt->SetDirectory(0);
228 fhEffLPt->SetDirectory(0);
229 fhEffHPt->SetDirectory(0);
230 fhLX=fhEffLPt->GetXaxis();
231 fhLY=fhEffLPt->GetYaxis();
232 fhLZ=fhEffLPt->GetZaxis();
233//
234//
235 if(f->Get("Description"))
236 {
237 fDescription=((TObjString*)f->Get("Description"))->GetString();
238 printf("%s\n",fDescription.Data());
6255180c 239 }
490243f3 240
241 fThetaMin = fhEffLPt->GetXaxis()->GetXmin();
242 fThetaMax = fhEffLPt->GetXaxis()->GetXmax();
243 fnthetab=fhEffLPt->GetNbinsX();
244 fDtheta = (fThetaMax-fThetaMin)/fnthetab;
245
246 fPhiMin = fhEffLPt->GetYaxis()->GetXmin();
247 fPhiMax = fhEffLPt->GetYaxis()->GetXmax();
248 fnphib=fhEffLPt->GetNbinsY();
249 fDphi = (fPhiMax-fPhiMin)/fnphib;
250
251 fPtMin=fhEffLPt->GetZaxis()->GetXmin();
252 fPtMax=fhEffLPt->GetZaxis()->GetXmax();
253 fnptb=fhEffLPt->GetNbinsZ();
254 fDpt = (fPtMax-fPtMin)/fnptb;
255
256 printf("%4d bins in theta [%f:%f]\n",fnthetab,fThetaMin,fThetaMax);
257 printf("%4d bins in phi [%f:%f]\n",fnphib,fPhiMin,fPhiMax);
258 printf("%4d bins in pt [%f:%f]\n",fnptb,fPtMin,fPtMax);
259
260 fZones=fnthetab*fnphib;
261
6255180c 262 f->Close();
490243f3 263 if(fInt==0) {
264 printf("Interpolation of trigger efficiencies is off!\n");
265 } else {
266 printf("Interpolation of trigger efficiencies is on!\n");
267 }
6255180c 268}
269
490243f3 270void AliFastMuonTriggerEff::Evaluate(Float_t charge, Float_t pt,Float_t theta,
271 Float_t phi, Float_t& effLow, Float_t& effHigh, Float_t& effAny)
6255180c 272{
490243f3 273 //
274 // Trigger efficiency for pt, theta, phi (low, high and "any" cut)
275 //
276#ifdef MYTRIGDEBUG
277 printf("Evaluate(ch=%2.0f, pt=%10.6f, theta=%7.2f, phi=%8.2f ...)\n",charge,pt,theta,phi);
278#endif
6255180c 279 effLow=0.;
280 effHigh=0.;
490243f3 281 effAny=0;
6255180c 282 if(fZones==0) {
283 printf("Call to uninitialized object of class: AliFastMuonTriggerEff\n");
284 return;
285 }
286 if(pt<0) {
287 printf("Warning: pt: %f < 0. GeV/c\n",pt);
288 return;
289 }
490243f3 290
291 Int_t iPt = fhLZ->FindBin((Double_t)pt);
292 if(iPt>fnptb)iPt=fnptb;
6255180c 293 Int_t iPhi = Int_t((phi-fPhiMin)/fDphi);
294 if(phi<fPhiMin)iPhi=iPhi-1;
490243f3 295 Int_t iTheta = fhLX->FindBin((Double_t)theta);
6255180c 296#ifdef MYTRIGDEBUG
490243f3 297 printf("Evaluate(ch=%2.0f, pt=%10.6f, theta=%7.2f, phi=%8.2f ...)\n",charge,pt,theta,phi);
298 printf(" 0:%1d iPt iTheta iPhi: %d %d %d\n",fInt,iPt,iTheta,iPhi);
6255180c 299#endif
490243f3 300 iPhi=iPhi-2*fnphib*(iPhi/(2*fnphib));
6255180c 301#ifdef MYTRIGDEBUG
490243f3 302 printf(" 1:%1d iPhi converted to: %d for angle equivalence\n",fInt,iPhi);
6255180c 303#endif
304 if(iPhi<0)iPhi=-iPhi-1;
490243f3 305 if(iPhi>(fnphib-1))iPhi=2*fnphib-1-iPhi;
6255180c 306#ifdef MYTRIGDEBUG
490243f3 307 printf(" 2:%1d iPhi converted to: %d for the symmetry of the spectrometer\n",fInt,iPhi);
6255180c 308#endif
309 if(charge==1.){
310 } else if(charge==-1.) {
490243f3 311 iPhi=fnphib-1-iPhi;
6255180c 312#ifdef MYTRIGDEBUG
490243f3 313 printf(" 3:%1d iPhi converted to: %d for the charge symmetry\n",fInt,iPhi);
6255180c 314#endif
315 } else {
316 printf("Warning: not understand charge: %f\n",charge);
317 return;
318 }
490243f3 319 if(iTheta<=0||iTheta>fnthetab) {
6255180c 320 printf("Warning: theta: %f outside acceptance\n",theta);
321 return;
322 }
323 if(iPt<0) {
324 printf("Warning: what do you mean with pt: %f <0?\n",pt);
325 return;
326 }
490243f3 327 iPhi++;
6255180c 328#ifdef MYTRIGDEBUG
490243f3 329 printf(" 4:%1d Getting: iTheta, iPhi, iPt: %d %d %d\n",
330 fInt,iTheta,iPhi,iPt);
6255180c 331#endif
490243f3 332 effLow =fhEffLPt->GetBinContent(iTheta,iPhi,iPt);
333 effHigh=fhEffHPt->GetBinContent(iTheta,iPhi,iPt);
334 effAny =fhEffAPt->GetBinContent(iTheta,iPhi,iPt);
6255180c 335#ifdef MYTRIGDEBUG
490243f3 336 printf(" 4:%1d Result: charge, iTheta, iPhi, iPt: %f %d %d %d effLow: %f, effHigh: %f, effAny: %f\n",
337 fInt,charge,iTheta,iPhi,iPt,effLow,effHigh,effAny);
6255180c 338#endif
490243f3 339
340 if(fInt==1) {
341 Float_t angl,angh,anga;
342 Float_t effLowp,effHighp,effAnyp;
343 Float_t ptc=(iPt+0.5)*fDpt; // The center of current bin
344 #ifdef MYTRIGDEBUG
345 printf(" 5:1 The center of current bin iPt: %d is: %f\n",iPt,ptc);
346 #endif
347 if(iPt==fnptb) {
348 #ifdef MYTRIGDEBUG
349 printf(" 6:1 No more points above! No interpolation is needed!\n");
350 #endif
351 return;
352 }else if(ptc==pt){
353 #ifdef MYTRIGDEBUG
354 printf(" 6:1 No interpolation is needed!\n");
355 #endif
356 return;
357 }else if(ptc>pt){
358 // Looking for previous point
359 if(iPt>1) {
360 effLowp =fhEffLPt->GetBinContent(iTheta,iPhi,iPt-1);
361 effHighp=fhEffHPt->GetBinContent(iTheta,iPhi,iPt-1);
362 effAnyp =fhEffAPt->GetBinContent(iTheta,iPhi,iPt-1);
363 #ifdef MYTRIGDEBUG
364 printf(" 7:1 A simple look to previous point: %d: %f %f\n",iPt-1,effLowp,effHighp);
365 #endif
366 } else {
367 effLowp=0.;
368 effHighp=0.;
369 effAnyp=0;
370 #ifdef MYTRIGDEBUG
371 printf(" 8:1 result is: %f %f %f\n",effLowp,effHighp,effAnyp);
372 #endif
373 }
374 angl=(effLow-effLowp)/fDpt;
375 angh=(effHigh-effHighp)/fDpt;
376 anga=(effAny-effAnyp)/fDpt;
377 }else{
378 // Looking for next point
379 if(iPt<fnptb) {
380 effLowp =fhEffLPt->GetBinContent(iTheta,iPhi,iPt+1);
381 effHighp=fhEffHPt->GetBinContent(iTheta,iPhi,iPt+1);
382 effAnyp =fhEffAPt->GetBinContent(iTheta,iPhi,iPt+1);
383 #ifdef MYTRIGDEBUG
384 printf(" 7:1 A simple look to next point: %d: %f %f %f\n",iPt-1,effLowp,effHighp,effAnyp);
385 #endif
386 } else {
387 effLowp=effLow;
388 effHighp=effHigh;
389 effAnyp=effAny;
390 #ifdef MYTRIGDEBUG
391 printf(" 8:1 result is: pt: %f %f %f\n",effLowp,effHighp,effAnyp);
392 #endif
393 }
394 angl=(effLowp-effLow)/fDpt;
395 angh=(effHighp-effHigh)/fDpt;
396 anga=(effAnyp-effAny)/fDpt;
397 }
398 effLow=effLow+angl*(pt-ptc);
399 effHigh=effHigh+angh*(pt-ptc);
400 effAny=effAny+anga*(pt-ptc);
401 #ifdef MYTRIGDEBUG
402 printf(" 9:1 the interpolation coefficients are: %f %f %f\n",angl,angh,anga);
403 #endif
404 }
405 #ifdef MYTRIGDEBUG
406 printf("10:%1d effLow, effHigh=%f %f %f\n",fInt,effLow,effHigh,effAny);
407 #endif
408 return;
409}
410
411void AliFastMuonTriggerEff::Evaluate(Float_t charge, Float_t pt, Float_t theta,
412 Float_t phi, Float_t& effLow, Float_t& effHigh)
413{
414 //
415 // Trigger efficiency for pt, theta, phi (low and high cut)
416 //
417 Float_t effAny;
418 Evaluate(charge,pt,theta,phi,effLow,effHigh,effAny);
6255180c 419}
420
421Float_t AliFastMuonTriggerEff::Evaluate(Float_t charge, Float_t pt,
422 Float_t theta, Float_t phi)
423{
424 //
425 // Trigger efficiency for pt, theta, phi depending of fCut
426 //
427 if(fZones==0) {
428 printf("Call to uninitialized object of class: AliFastMuonTriggerEff\n");
429 return 0.;
430 }
431 Float_t eff;
490243f3 432 Float_t effLow, effHigh, effAny;
6255180c 433
490243f3 434 Evaluate(charge,pt,theta,phi,effLow,effHigh,effAny);
6255180c 435 if (fCut == kLow)
436 eff = effLow;
490243f3 437 else if (fCut == kHigh)
6255180c 438 eff = effHigh;
490243f3 439 else if (fCut == kAny)
440 eff = effAny;
441 else
442 eff = 0;
6255180c 443
444 return eff;
445}