]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDv1.cxx
cluster information
[u/mrichter/AliRoot.git] / TRD / AliTRDv1.cxx
CommitLineData
4c039060 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
88cb7938 16/* $Id$ */
4c039060 17
fe4da5cc 18///////////////////////////////////////////////////////////////////////////////
19// //
769257f4 20// Transition Radiation Detector version 1 -- slow simulator //
fe4da5cc 21// //
22//Begin_Html
23/*
5c7f4665 24<img src="picts/AliTRDfullClass.gif">
fe4da5cc 25*/
26//End_Html
27// //
28// //
29///////////////////////////////////////////////////////////////////////////////
30
769257f4 31#include <stdlib.h>
32
793ff80c 33#include <TF1.h>
1819f4bb 34#include <TLorentzVector.h>
88cb7938 35#include <TMath.h>
36#include <TRandom.h>
37#include <TVector.h>
38#include <TVirtualMC.h>
fe4da5cc 39
d3f347ff 40#include "AliConst.h"
88cb7938 41#include "AliRun.h"
42#include "AliTRDgeometry.h"
793ff80c 43#include "AliTRDhit.h"
851d3db9 44#include "AliTRDmatrix.h"
793ff80c 45#include "AliTRDsim.h"
88cb7938 46#include "AliTRDv1.h"
851d3db9 47
fe4da5cc 48ClassImp(AliTRDv1)
8230f242 49
50//_____________________________________________________________________________
51AliTRDv1::AliTRDv1():AliTRD()
52{
53 //
54 // Default constructor
55 //
56
8230f242 57 fSensSelect = 0;
58 fSensPlane = -1;
59 fSensChamber = -1;
60 fSensSector = -1;
61 fSensSectorRange = 0;
62
63 fDeltaE = NULL;
793ff80c 64 fTR = NULL;
8230f242 65
66}
67
fe4da5cc 68//_____________________________________________________________________________
69AliTRDv1::AliTRDv1(const char *name, const char *title)
70 :AliTRD(name, title)
71{
72 //
851d3db9 73 // Standard constructor for Transition Radiation Detector version 1
fe4da5cc 74 //
82bbf98a 75
9d0b222b 76 fSensSelect = 0;
77 fSensPlane = -1;
78 fSensChamber = -1;
79 fSensSector = -1;
8230f242 80 fSensSectorRange = 0;
5c7f4665 81
9d0b222b 82 fDeltaE = NULL;
793ff80c 83 fTR = NULL;
5c7f4665 84
85 SetBufferSize(128000);
86
87}
88
8230f242 89//_____________________________________________________________________________
dd9a6ee3 90AliTRDv1::AliTRDv1(const AliTRDv1 &trd)
8230f242 91{
92 //
93 // Copy constructor
94 //
95
dd9a6ee3 96 ((AliTRDv1 &) trd).Copy(*this);
8230f242 97
98}
99
5c7f4665 100//_____________________________________________________________________________
101AliTRDv1::~AliTRDv1()
102{
dd9a6ee3 103 //
104 // AliTRDv1 destructor
105 //
82bbf98a 106
5c7f4665 107 if (fDeltaE) delete fDeltaE;
793ff80c 108 if (fTR) delete fTR;
82bbf98a 109
fe4da5cc 110}
111
dd9a6ee3 112//_____________________________________________________________________________
113AliTRDv1 &AliTRDv1::operator=(const AliTRDv1 &trd)
114{
115 //
116 // Assignment operator
117 //
118
119 if (this != &trd) ((AliTRDv1 &) trd).Copy(*this);
120 return *this;
121
122}
8230f242 123
124//_____________________________________________________________________________
43da34c0 125void AliTRDv1::Copy(TObject &trd)
8230f242 126{
127 //
128 // Copy function
129 //
130
43da34c0 131 ((AliTRDv1 &) trd).fSensSelect = fSensSelect;
132 ((AliTRDv1 &) trd).fSensPlane = fSensPlane;
133 ((AliTRDv1 &) trd).fSensChamber = fSensChamber;
134 ((AliTRDv1 &) trd).fSensSector = fSensSector;
135 ((AliTRDv1 &) trd).fSensSectorRange = fSensSectorRange;
8230f242 136
793ff80c 137 fDeltaE->Copy(*((AliTRDv1 &) trd).fDeltaE);
138 fTR->Copy(*((AliTRDv1 &) trd).fTR);
8230f242 139
140}
141
fe4da5cc 142//_____________________________________________________________________________
143void AliTRDv1::CreateGeometry()
144{
145 //
851d3db9 146 // Create the GEANT geometry for the Transition Radiation Detector - Version 1
5c7f4665 147 // This version covers the full azimuth.
d3f347ff 148 //
149
82bbf98a 150 // Check that FRAME is there otherwise we have no place where to put the TRD
8230f242 151 AliModule* frame = gAlice->GetModule("FRAME");
152 if (!frame) return;
d3f347ff 153
82bbf98a 154 // Define the chambers
155 AliTRD::CreateGeometry();
d3f347ff 156
fe4da5cc 157}
158
159//_____________________________________________________________________________
160void AliTRDv1::CreateMaterials()
161{
162 //
851d3db9 163 // Create materials for the Transition Radiation Detector version 1
fe4da5cc 164 //
82bbf98a 165
d3f347ff 166 AliTRD::CreateMaterials();
82bbf98a 167
fe4da5cc 168}
169
793ff80c 170//_____________________________________________________________________________
171void AliTRDv1::CreateTRhit(Int_t det)
172{
173 //
174 // Creates an electron cluster from a TR photon.
175 // The photon is assumed to be created a the end of the radiator. The
176 // distance after which it deposits its energy takes into account the
177 // absorbtion of the entrance window and of the gas mixture in drift
178 // volume.
179 //
180
181 // PDG code electron
182 const Int_t kPdgElectron = 11;
183
184 // Ionization energy
185 const Float_t kWion = 22.04;
186
187 // Maximum number of TR photons per track
188 const Int_t kNTR = 50;
189
190 TLorentzVector mom, pos;
793ff80c 191
793ff80c 192 // Create TR at the entrance of the chamber
193 if (gMC->IsTrackEntering()) {
194
f73816f5 195 // Create TR only for electrons
196 Int_t iPdg = gMC->TrackPid();
197 if (TMath::Abs(iPdg) != kPdgElectron) return;
198
793ff80c 199 Float_t eTR[kNTR];
200 Int_t nTR;
201
202 // Create TR photons
203 gMC->TrackMomentum(mom);
204 Float_t pTot = mom.Rho();
205 fTR->CreatePhotons(iPdg,pTot,nTR,eTR);
206 if (nTR > kNTR) {
207 printf("AliTRDv1::CreateTRhit -- ");
208 printf("Boundary error: nTR = %d, kNTR = %d\n",nTR,kNTR);
209 exit(1);
210 }
211
212 // Loop through the TR photons
213 for (Int_t iTR = 0; iTR < nTR; iTR++) {
214
215 Float_t energyMeV = eTR[iTR] * 0.001;
216 Float_t energyeV = eTR[iTR] * 1000.0;
217 Float_t absLength = 0;
218 Float_t sigma = 0;
219
220 // Take the absorbtion in the entrance window into account
221 Double_t muMy = fTR->GetMuMy(energyMeV);
222 sigma = muMy * fFoilDensity;
842287f2 223 if (sigma > 0.0) {
224 absLength = gRandom->Exp(1.0/sigma);
225 if (absLength < AliTRDgeometry::MyThick()) continue;
226 }
227 else {
228 continue;
229 }
793ff80c 230
231 // The absorbtion cross sections in the drift gas
232 if (fGasMix == 1) {
233 // Gas-mixture (Xe/CO2)
234 Double_t muXe = fTR->GetMuXe(energyMeV);
235 Double_t muCO = fTR->GetMuCO(energyMeV);
842287f2 236 sigma = (0.85 * muXe + 0.15 * muCO) * fGasDensity * fTR->GetTemp();
793ff80c 237 }
238 else {
239 // Gas-mixture (Xe/Isobutane)
240 Double_t muXe = fTR->GetMuXe(energyMeV);
241 Double_t muBu = fTR->GetMuBu(energyMeV);
842287f2 242 sigma = (0.97 * muXe + 0.03 * muBu) * fGasDensity * fTR->GetTemp();
793ff80c 243 }
244
245 // The distance after which the energy of the TR photon
246 // is deposited.
842287f2 247 if (sigma > 0.0) {
248 absLength = gRandom->Exp(1.0/sigma);
249 if (absLength > AliTRDgeometry::DrThick()) continue;
250 }
251 else {
252 continue;
253 }
793ff80c 254
255 // The position of the absorbtion
256 Float_t posHit[3];
257 gMC->TrackPosition(pos);
258 posHit[0] = pos[0] + mom[0] / pTot * absLength;
259 posHit[1] = pos[1] + mom[1] / pTot * absLength;
260 posHit[2] = pos[2] + mom[2] / pTot * absLength;
261
262 // Create the charge
263 Int_t q = ((Int_t) (energyeV / kWion));
264
265 // Add the hit to the array. TR photon hits are marked
266 // by negative charge
642f15cf 267 AddHit(gAlice->GetCurrentTrackNumber(),det,posHit,-q,kTRUE);
793ff80c 268
269 }
270
271 }
272
273}
274
5c7f4665 275//_____________________________________________________________________________
276void AliTRDv1::Init()
277{
278 //
279 // Initialise Transition Radiation Detector after geometry has been built.
5c7f4665 280 //
281
282 AliTRD::Init();
283
9e1a0ddb 284 if(fDebug) printf("%s: Slow simulator\n",ClassName());
851d3db9 285 if (fSensSelect) {
286 if (fSensPlane >= 0)
287 printf(" Only plane %d is sensitive\n",fSensPlane);
288 if (fSensChamber >= 0)
289 printf(" Only chamber %d is sensitive\n",fSensChamber);
9d0b222b 290 if (fSensSector >= 0) {
291 Int_t sens1 = fSensSector;
292 Int_t sens2 = fSensSector + fSensSectorRange;
793ff80c 293 sens2 -= ((Int_t) (sens2 / AliTRDgeometry::Nsect()))
294 * AliTRDgeometry::Nsect();
9d0b222b 295 printf(" Only sectors %d - %d are sensitive\n",sens1,sens2-1);
296 }
851d3db9 297 }
793ff80c 298 if (fTR)
9e1a0ddb 299 printf("%s: TR simulation on\n",ClassName());
793ff80c 300 else
9e1a0ddb 301 printf("%s: TR simulation off\n",ClassName());
851d3db9 302 printf("\n");
5c7f4665 303
304 // First ionization potential (eV) for the gas mixture (90% Xe + 10% CO2)
305 const Float_t kPoti = 12.1;
306 // Maximum energy (50 keV);
307 const Float_t kEend = 50000.0;
308 // Ermilova distribution for the delta-ray spectrum
8230f242 309 Float_t poti = TMath::Log(kPoti);
310 Float_t eEnd = TMath::Log(kEend);
793ff80c 311 fDeltaE = new TF1("deltae",Ermilova,poti,eEnd,0);
5c7f4665 312
9e1a0ddb 313 if(fDebug) {
314 printf("%s: ",ClassName());
315 for (Int_t i = 0; i < 80; i++) printf("*");
316 printf("\n");
317 }
5c7f4665 318
fe4da5cc 319}
320
793ff80c 321//_____________________________________________________________________________
322AliTRDsim *AliTRDv1::CreateTR()
323{
324 //
325 // Enables the simulation of TR
326 //
327
328 fTR = new AliTRDsim();
329 return fTR;
330
331}
332
5c7f4665 333//_____________________________________________________________________________
334void AliTRDv1::SetSensPlane(Int_t iplane)
335{
336 //
851d3db9 337 // Defines the hit-sensitive plane (0-5)
5c7f4665 338 //
82bbf98a 339
851d3db9 340 if ((iplane < 0) || (iplane > 5)) {
5c7f4665 341 printf("Wrong input value: %d\n",iplane);
342 printf("Use standard setting\n");
851d3db9 343 fSensPlane = -1;
344 fSensSelect = 0;
5c7f4665 345 return;
346 }
82bbf98a 347
5c7f4665 348 fSensSelect = 1;
349 fSensPlane = iplane;
82bbf98a 350
5c7f4665 351}
352
353//_____________________________________________________________________________
354void AliTRDv1::SetSensChamber(Int_t ichamber)
355{
356 //
851d3db9 357 // Defines the hit-sensitive chamber (0-4)
5c7f4665 358 //
359
851d3db9 360 if ((ichamber < 0) || (ichamber > 4)) {
5c7f4665 361 printf("Wrong input value: %d\n",ichamber);
362 printf("Use standard setting\n");
851d3db9 363 fSensChamber = -1;
364 fSensSelect = 0;
5c7f4665 365 return;
366 }
367
368 fSensSelect = 1;
369 fSensChamber = ichamber;
370
371}
372
373//_____________________________________________________________________________
374void AliTRDv1::SetSensSector(Int_t isector)
375{
376 //
851d3db9 377 // Defines the hit-sensitive sector (0-17)
5c7f4665 378 //
379
9d0b222b 380 SetSensSector(isector,1);
381
382}
383
384//_____________________________________________________________________________
385void AliTRDv1::SetSensSector(Int_t isector, Int_t nsector)
386{
387 //
388 // Defines a range of hit-sensitive sectors. The range is defined by
389 // <isector> (0-17) as the starting point and <nsector> as the number
390 // of sectors to be included.
391 //
392
851d3db9 393 if ((isector < 0) || (isector > 17)) {
9d0b222b 394 printf("Wrong input value <isector>: %d\n",isector);
5c7f4665 395 printf("Use standard setting\n");
9d0b222b 396 fSensSector = -1;
397 fSensSectorRange = 0;
398 fSensSelect = 0;
5c7f4665 399 return;
400 }
401
9d0b222b 402 if ((nsector < 1) || (nsector > 18)) {
403 printf("Wrong input value <nsector>: %d\n",nsector);
404 printf("Use standard setting\n");
405 fSensSector = -1;
406 fSensSectorRange = 0;
407 fSensSelect = 0;
408 return;
409 }
410
411 fSensSelect = 1;
412 fSensSector = isector;
413 fSensSectorRange = nsector;
5c7f4665 414
415}
416
417//_____________________________________________________________________________
418void AliTRDv1::StepManager()
419{
420 //
5c7f4665 421 // Slow simulator. Every charged track produces electron cluster as hits
422 // along its path across the drift volume. The step size is set acording
423 // to Bethe-Bloch. The energy distribution of the delta electrons follows
424 // a spectrum taken from Ermilova et al.
425 //
426
851d3db9 427 Int_t pla = 0;
428 Int_t cha = 0;
429 Int_t sec = 0;
793ff80c 430 Int_t det = 0;
851d3db9 431 Int_t iPdg;
793ff80c 432 Int_t qTot;
5c7f4665 433
793ff80c 434 Float_t hits[3];
b9d0a01d 435 Double_t random[1];
5c7f4665 436 Float_t charge;
437 Float_t aMass;
438
f73816f5 439 Double_t pTot = 0;
5c7f4665 440 Double_t eDelta;
441 Double_t betaGamma, pp;
f73816f5 442 Double_t stepSize;
5c7f4665 443
332e9569 444 Bool_t drRegion = kFALSE;
445 Bool_t amRegion = kFALSE;
446
447 TString cIdCurrent;
448 TString cIdSensDr = "J";
449 TString cIdSensAm = "K";
593a9fc3 450 Char_t cIdChamber[3];
451 cIdChamber[2] = 0;
332e9569 452
5c7f4665 453 TLorentzVector pos, mom;
82bbf98a 454
332e9569 455 const Int_t kNplan = AliTRDgeometry::Nplan();
e644678a 456 const Int_t kNcham = AliTRDgeometry::Ncham();
457 const Int_t kNdetsec = kNplan * kNcham;
458
332e9569 459 const Double_t kBig = 1.0E+12;
5c7f4665 460
461 // Ionization energy
a3c76cdc 462 const Float_t kWion = 22.04;
463 // Maximum momentum for e+ e- g
464 const Float_t kPTotMaxEl = 0.002;
f73816f5 465 // Minimum energy for the step size adjustment
466 const Float_t kEkinMinStep = 1.0e-5;
5c7f4665 467 // Plateau value of the energy-loss for electron in xenon
468 // taken from: Allison + Comb, Ann. Rev. Nucl. Sci. (1980), 30, 253
469 //const Double_t kPlateau = 1.70;
470 // the averaged value (26/3/99)
a3c76cdc 471 const Float_t kPlateau = 1.55;
5c7f4665 472 // dN1/dx|min for the gas mixture (90% Xe + 10% CO2)
a3c76cdc 473 const Float_t kPrim = 48.0;
5c7f4665 474 // First ionization potential (eV) for the gas mixture (90% Xe + 10% CO2)
a3c76cdc 475 const Float_t kPoti = 12.1;
851d3db9 476
477 // PDG code electron
8230f242 478 const Int_t kPdgElectron = 11;
5c7f4665 479
480 // Set the maximum step size to a very large number for all
481 // neutral particles and those outside the driftvolume
482 gMC->SetMaxStep(kBig);
483
484 // Use only charged tracks
485 if (( gMC->TrackCharge() ) &&
486 (!gMC->IsTrackStop() ) &&
487 (!gMC->IsTrackDisappeared())) {
fe4da5cc 488
5c7f4665 489 // Inside a sensitive volume?
332e9569 490 drRegion = kFALSE;
491 amRegion = kFALSE;
492 cIdCurrent = gMC->CurrentVolName();
e6674585 493 if (cIdSensDr == cIdCurrent[1]) {
332e9569 494 drRegion = kTRUE;
495 }
e6674585 496 if (cIdSensAm == cIdCurrent[1]) {
332e9569 497 amRegion = kTRUE;
498 }
499 if (drRegion || amRegion) {
fe4da5cc 500
5c7f4665 501 // The hit coordinates and charge
502 gMC->TrackPosition(pos);
503 hits[0] = pos[0];
504 hits[1] = pos[1];
505 hits[2] = pos[2];
5c7f4665 506
851d3db9 507 // The sector number (0 - 17)
508 // The numbering goes clockwise and starts at y = 0
509 Float_t phi = kRaddeg*TMath::ATan2(pos[0],pos[1]);
510 if (phi < 90.)
511 phi = phi + 270.;
512 else
513 phi = phi - 90.;
514 sec = ((Int_t) (phi / 20));
82bbf98a 515
332e9569 516 // The plane and chamber number
517 cIdChamber[0] = cIdCurrent[2];
518 cIdChamber[1] = cIdCurrent[3];
e644678a 519 Int_t idChamber = (atoi(cIdChamber) % kNdetsec);
332e9569 520 cha = ((Int_t) idChamber / kNplan);
521 pla = ((Int_t) idChamber % kNplan);
82bbf98a 522
5c7f4665 523 // Check on selected volumes
524 Int_t addthishit = 1;
525 if (fSensSelect) {
6f1e466d 526 if ((fSensPlane >= 0) && (pla != fSensPlane )) addthishit = 0;
527 if ((fSensChamber >= 0) && (cha != fSensChamber)) addthishit = 0;
9d0b222b 528 if (fSensSector >= 0) {
529 Int_t sens1 = fSensSector;
530 Int_t sens2 = fSensSector + fSensSectorRange;
793ff80c 531 sens2 -= ((Int_t) (sens2 / AliTRDgeometry::Nsect()))
532 * AliTRDgeometry::Nsect();
9d0b222b 533 if (sens1 < sens2) {
534 if ((sec < sens1) || (sec >= sens2)) addthishit = 0;
535 }
536 else {
537 if ((sec < sens1) && (sec >= sens2)) addthishit = 0;
538 }
539 }
5c7f4665 540 }
541
542 // Add this hit
543 if (addthishit) {
544
f73816f5 545 // The detector number
793ff80c 546 det = fGeometry->GetDetector(pla,cha,sec);
547
f73816f5 548 // Special hits and TR photons only in the drift region
332e9569 549 if (drRegion) {
f73816f5 550
c61f1a66 551 // Create a track reference at the entrance and
552 // exit of each chamber that contain the
553 // momentum components of the particle
f73816f5 554 if (gMC->IsTrackEntering() || gMC->IsTrackExiting()) {
555 gMC->TrackMomentum(mom);
642f15cf 556 AddTrackReference(gAlice->GetCurrentTrackNumber());
f73816f5 557 }
558
559 // Create the hits from TR photons
560 if (fTR) CreateTRhit(det);
561
562 }
563
564 // Calculate the energy of the delta-electrons
565 eDelta = TMath::Exp(fDeltaE->GetRandom()) - kPoti;
566 eDelta = TMath::Max(eDelta,0.0);
567
568 // The number of secondary electrons created
569 qTot = ((Int_t) (eDelta / kWion) + 1);
570
571 // Create a new dEdx hit
332e9569 572 if (drRegion) {
642f15cf 573 AddHit(gAlice->GetCurrentTrackNumber(),det,hits,qTot,kTRUE);
f73816f5 574 }
5c7f4665 575 else {
642f15cf 576 AddHit(gAlice->GetCurrentTrackNumber(),det,hits,qTot,kFALSE);
f73816f5 577 }
578
5c7f4665 579 // Calculate the maximum step size for the next tracking step
f73816f5 580 // Produce only one hit if Ekin is below cutoff
581 aMass = gMC->TrackMass();
582 if ((gMC->Etot() - aMass) > kEkinMinStep) {
583
584 // The energy loss according to Bethe Bloch
585 iPdg = TMath::Abs(gMC->TrackPid());
586 if ( (iPdg != kPdgElectron) ||
587 ((iPdg == kPdgElectron) && (pTot < kPTotMaxEl))) {
588 gMC->TrackMomentum(mom);
589 pTot = mom.Rho();
590 betaGamma = pTot / aMass;
591 pp = kPrim * BetheBloch(betaGamma);
592 // Take charge > 1 into account
593 charge = gMC->TrackCharge();
594 if (TMath::Abs(charge) > 1) pp = pp * charge*charge;
595 }
596 // Electrons above 20 Mev/c are at the plateau
597 else {
598 pp = kPrim * kPlateau;
599 }
600
601 if (pp > 0) {
602 do
b9d0a01d 603 gMC->GetRandom()->RndmArray(1, random);
f73816f5 604 while ((random[0] == 1.) || (random[0] == 0.));
605 stepSize = - TMath::Log(random[0]) / pp;
606 gMC->SetMaxStep(stepSize);
607 }
608
5c7f4665 609 }
610
611 }
d3f347ff 612
613 }
614
5c7f4665 615 }
616
617}
618
619//_____________________________________________________________________________
620Double_t AliTRDv1::BetheBloch(Double_t bg)
621{
622 //
623 // Parametrization of the Bethe-Bloch-curve
624 // The parametrization is the same as for the TPC and is taken from Lehrhaus.
625 //
626
627 // This parameters have been adjusted to averaged values from GEANT
628 const Double_t kP1 = 7.17960e-02;
629 const Double_t kP2 = 8.54196;
630 const Double_t kP3 = 1.38065e-06;
631 const Double_t kP4 = 5.30972;
632 const Double_t kP5 = 2.83798;
633
634 // This parameters have been adjusted to Xe-data found in:
635 // Allison & Cobb, Ann. Rev. Nucl. Sci. (1980), 30, 253
636 //const Double_t kP1 = 0.76176E-1;
637 //const Double_t kP2 = 10.632;
638 //const Double_t kP3 = 3.17983E-6;
639 //const Double_t kP4 = 1.8631;
640 //const Double_t kP5 = 1.9479;
641
f73816f5 642 // Lower cutoff of the Bethe-Bloch-curve to limit step sizes
643 const Double_t kBgMin = 0.8;
644 const Double_t kBBMax = 6.83298;
645 //const Double_t kBgMin = 0.6;
646 //const Double_t kBBMax = 17.2809;
647 //const Double_t kBgMin = 0.4;
648 //const Double_t kBBMax = 82.0;
649
650 if (bg > kBgMin) {
5c7f4665 651 Double_t yy = bg / TMath::Sqrt(1. + bg*bg);
652 Double_t aa = TMath::Power(yy,kP4);
653 Double_t bb = TMath::Power((1./bg),kP5);
654 bb = TMath::Log(kP3 + bb);
655 return ((kP2 - aa - bb)*kP1 / aa);
656 }
f73816f5 657 else {
658 return kBBMax;
659 }
d3f347ff 660
fe4da5cc 661}
5c7f4665 662
663//_____________________________________________________________________________
664Double_t Ermilova(Double_t *x, Double_t *)
665{
666 //
667 // Calculates the delta-ray energy distribution according to Ermilova.
668 // Logarithmic scale !
669 //
670
671 Double_t energy;
672 Double_t dpos;
673 Double_t dnde;
674
675 Int_t pos1, pos2;
676
8230f242 677 const Int_t kNv = 31;
5c7f4665 678
8230f242 679 Float_t vxe[kNv] = { 2.3026, 2.9957, 3.4012, 3.6889, 3.9120
680 , 4.0943, 4.2485, 4.3820, 4.4998, 4.6052
681 , 4.7005, 5.0752, 5.2983, 5.7038, 5.9915
682 , 6.2146, 6.5221, 6.9078, 7.3132, 7.6009
683 , 8.0064, 8.5172, 8.6995, 8.9872, 9.2103
684 , 9.4727, 9.9035,10.3735,10.5966,10.8198
685 ,11.5129 };
5c7f4665 686
8230f242 687 Float_t vye[kNv] = { 80.0 , 31.0 , 23.3 , 21.1 , 21.0
688 , 20.9 , 20.8 , 20.0 , 16.0 , 11.0
689 , 8.0 , 6.0 , 5.2 , 4.6 , 4.0
690 , 3.5 , 3.0 , 1.4 , 0.67 , 0.44
691 , 0.3 , 0.18 , 0.12 , 0.08 , 0.056
692 , 0.04 , 0.023, 0.015, 0.011, 0.01
693 , 0.004 };
5c7f4665 694
695 energy = x[0];
696
697 // Find the position
698 pos1 = pos2 = 0;
699 dpos = 0;
700 do {
701 dpos = energy - vxe[pos2++];
702 }
703 while (dpos > 0);
704 pos2--;
f73816f5 705 if (pos2 > kNv) pos2 = kNv - 1;
5c7f4665 706 pos1 = pos2 - 1;
707
708 // Differentiate between the sampling points
709 dnde = (vye[pos1] - vye[pos2]) / (vxe[pos2] - vxe[pos1]);
710
711 return dnde;
712
713}