]>
Commit | Line | Data |
---|---|---|
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 | ||
16 | /* | |
17 | $Log$ | |
43da34c0 | 18 | Revision 1.21 2000/06/09 11:10:07 cblume |
19 | Compiler warnings and coding conventions, next round | |
20 | ||
dd9a6ee3 | 21 | Revision 1.20 2000/06/08 18:32:58 cblume |
22 | Make code compliant to coding conventions | |
23 | ||
8230f242 | 24 | Revision 1.19 2000/06/07 16:27:32 cblume |
25 | Try to remove compiler warnings on Sun and HP | |
26 | ||
9d0b222b | 27 | Revision 1.18 2000/05/08 16:17:27 cblume |
28 | Merge TRD-develop | |
29 | ||
6f1e466d | 30 | Revision 1.17.2.1 2000/05/08 14:59:16 cblume |
31 | Made inline function non-virtual. Bug fix in setting sensitive chamber | |
32 | ||
33 | Revision 1.17 2000/02/28 19:10:26 cblume | |
34 | Include the new TRD classes | |
35 | ||
851d3db9 | 36 | Revision 1.16.4.1 2000/02/28 18:04:35 cblume |
37 | Change to new hit version, introduce geometry class, and move digitization and clustering to AliTRDdigitizer/AliTRDclusterizerV1 | |
38 | ||
39 | Revision 1.16 1999/11/05 22:50:28 fca | |
40 | Do not use Atan, removed from ROOT too | |
41 | ||
90f8d287 | 42 | Revision 1.15 1999/11/02 17:20:19 fca |
43 | initialise nbytes before using it | |
44 | ||
036da493 | 45 | Revision 1.14 1999/11/02 17:15:54 fca |
46 | Correct ansi scoping not accepted by HP compilers | |
47 | ||
0549c011 | 48 | Revision 1.13 1999/11/02 17:14:51 fca |
49 | Correct ansi scoping not accepted by HP compilers | |
50 | ||
9c767df4 | 51 | Revision 1.12 1999/11/02 16:35:56 fca |
52 | New version of TRD introduced | |
53 | ||
5c7f4665 | 54 | Revision 1.11 1999/11/01 20:41:51 fca |
55 | Added protections against using the wrong version of FRAME | |
56 | ||
ab76897d | 57 | Revision 1.10 1999/09/29 09:24:35 fca |
58 | Introduction of the Copyright and cvs Log | |
59 | ||
4c039060 | 60 | */ |
61 | ||
fe4da5cc | 62 | /////////////////////////////////////////////////////////////////////////////// |
63 | // // | |
5c7f4665 | 64 | // Transition Radiation Detector version 2 -- slow simulator // |
fe4da5cc | 65 | // // |
66 | //Begin_Html | |
67 | /* | |
5c7f4665 | 68 | <img src="picts/AliTRDfullClass.gif"> |
fe4da5cc | 69 | */ |
70 | //End_Html | |
71 | // // | |
72 | // // | |
73 | /////////////////////////////////////////////////////////////////////////////// | |
74 | ||
75 | #include <TMath.h> | |
fe4da5cc | 76 | #include <TVector.h> |
5c7f4665 | 77 | #include <TRandom.h> |
fe4da5cc | 78 | |
fe4da5cc | 79 | #include "AliRun.h" |
fe4da5cc | 80 | #include "AliMC.h" |
d3f347ff | 81 | #include "AliConst.h" |
5c7f4665 | 82 | |
851d3db9 | 83 | #include "AliTRDv1.h" |
84 | #include "AliTRDmatrix.h" | |
85 | #include "AliTRDgeometry.h" | |
86 | ||
fe4da5cc | 87 | ClassImp(AliTRDv1) |
88 | ||
8230f242 | 89 | |
90 | //_____________________________________________________________________________ | |
91 | AliTRDv1::AliTRDv1():AliTRD() | |
92 | { | |
93 | // | |
94 | // Default constructor | |
95 | // | |
96 | ||
97 | fIdSens = 0; | |
98 | ||
99 | fIdChamber1 = 0; | |
100 | fIdChamber2 = 0; | |
101 | fIdChamber3 = 0; | |
102 | ||
103 | fSensSelect = 0; | |
104 | fSensPlane = -1; | |
105 | fSensChamber = -1; | |
106 | fSensSector = -1; | |
107 | fSensSectorRange = 0; | |
108 | ||
109 | fDeltaE = NULL; | |
110 | ||
111 | } | |
112 | ||
fe4da5cc | 113 | //_____________________________________________________________________________ |
114 | AliTRDv1::AliTRDv1(const char *name, const char *title) | |
115 | :AliTRD(name, title) | |
116 | { | |
117 | // | |
851d3db9 | 118 | // Standard constructor for Transition Radiation Detector version 1 |
fe4da5cc | 119 | // |
82bbf98a | 120 | |
9d0b222b | 121 | fIdSens = 0; |
82bbf98a | 122 | |
9d0b222b | 123 | fIdChamber1 = 0; |
124 | fIdChamber2 = 0; | |
125 | fIdChamber3 = 0; | |
5c7f4665 | 126 | |
9d0b222b | 127 | fSensSelect = 0; |
128 | fSensPlane = -1; | |
129 | fSensChamber = -1; | |
130 | fSensSector = -1; | |
8230f242 | 131 | fSensSectorRange = 0; |
5c7f4665 | 132 | |
9d0b222b | 133 | fDeltaE = NULL; |
5c7f4665 | 134 | |
135 | SetBufferSize(128000); | |
136 | ||
137 | } | |
138 | ||
8230f242 | 139 | //_____________________________________________________________________________ |
dd9a6ee3 | 140 | AliTRDv1::AliTRDv1(const AliTRDv1 &trd) |
8230f242 | 141 | { |
142 | // | |
143 | // Copy constructor | |
144 | // | |
145 | ||
dd9a6ee3 | 146 | ((AliTRDv1 &) trd).Copy(*this); |
8230f242 | 147 | |
148 | } | |
149 | ||
5c7f4665 | 150 | //_____________________________________________________________________________ |
151 | AliTRDv1::~AliTRDv1() | |
152 | { | |
dd9a6ee3 | 153 | // |
154 | // AliTRDv1 destructor | |
155 | // | |
82bbf98a | 156 | |
5c7f4665 | 157 | if (fDeltaE) delete fDeltaE; |
82bbf98a | 158 | |
fe4da5cc | 159 | } |
160 | ||
dd9a6ee3 | 161 | //_____________________________________________________________________________ |
162 | AliTRDv1 &AliTRDv1::operator=(const AliTRDv1 &trd) | |
163 | { | |
164 | // | |
165 | // Assignment operator | |
166 | // | |
167 | ||
168 | if (this != &trd) ((AliTRDv1 &) trd).Copy(*this); | |
169 | return *this; | |
170 | ||
171 | } | |
8230f242 | 172 | |
173 | //_____________________________________________________________________________ | |
43da34c0 | 174 | void AliTRDv1::Copy(TObject &trd) |
8230f242 | 175 | { |
176 | // | |
177 | // Copy function | |
178 | // | |
179 | ||
43da34c0 | 180 | ((AliTRDv1 &) trd).fIdSens = fIdSens; |
8230f242 | 181 | |
43da34c0 | 182 | ((AliTRDv1 &) trd).fIdChamber1 = fIdChamber1; |
183 | ((AliTRDv1 &) trd).fIdChamber2 = fIdChamber2; | |
184 | ((AliTRDv1 &) trd).fIdChamber3 = fIdChamber3; | |
8230f242 | 185 | |
43da34c0 | 186 | ((AliTRDv1 &) trd).fSensSelect = fSensSelect; |
187 | ((AliTRDv1 &) trd).fSensPlane = fSensPlane; | |
188 | ((AliTRDv1 &) trd).fSensChamber = fSensChamber; | |
189 | ((AliTRDv1 &) trd).fSensSector = fSensSector; | |
190 | ((AliTRDv1 &) trd).fSensSectorRange = fSensSectorRange; | |
8230f242 | 191 | |
43da34c0 | 192 | ((AliTRDv1 &) trd).fDeltaE = NULL; |
8230f242 | 193 | |
194 | } | |
195 | ||
fe4da5cc | 196 | //_____________________________________________________________________________ |
197 | void AliTRDv1::CreateGeometry() | |
198 | { | |
199 | // | |
851d3db9 | 200 | // Create the GEANT geometry for the Transition Radiation Detector - Version 1 |
5c7f4665 | 201 | // This version covers the full azimuth. |
d3f347ff | 202 | // |
203 | ||
82bbf98a | 204 | // Check that FRAME is there otherwise we have no place where to put the TRD |
8230f242 | 205 | AliModule* frame = gAlice->GetModule("FRAME"); |
206 | if (!frame) return; | |
d3f347ff | 207 | |
82bbf98a | 208 | // Define the chambers |
209 | AliTRD::CreateGeometry(); | |
d3f347ff | 210 | |
fe4da5cc | 211 | } |
212 | ||
213 | //_____________________________________________________________________________ | |
214 | void AliTRDv1::CreateMaterials() | |
215 | { | |
216 | // | |
851d3db9 | 217 | // Create materials for the Transition Radiation Detector version 1 |
fe4da5cc | 218 | // |
82bbf98a | 219 | |
d3f347ff | 220 | AliTRD::CreateMaterials(); |
82bbf98a | 221 | |
fe4da5cc | 222 | } |
223 | ||
5c7f4665 | 224 | //_____________________________________________________________________________ |
225 | void AliTRDv1::Init() | |
226 | { | |
227 | // | |
228 | // Initialise Transition Radiation Detector after geometry has been built. | |
5c7f4665 | 229 | // |
230 | ||
231 | AliTRD::Init(); | |
232 | ||
851d3db9 | 233 | printf(" Slow simulator\n\n"); |
234 | if (fSensSelect) { | |
235 | if (fSensPlane >= 0) | |
236 | printf(" Only plane %d is sensitive\n",fSensPlane); | |
237 | if (fSensChamber >= 0) | |
238 | printf(" Only chamber %d is sensitive\n",fSensChamber); | |
9d0b222b | 239 | if (fSensSector >= 0) { |
240 | Int_t sens1 = fSensSector; | |
241 | Int_t sens2 = fSensSector + fSensSectorRange; | |
242 | sens2 -= ((Int_t) (sens2 / kNsect)) * kNsect; | |
243 | printf(" Only sectors %d - %d are sensitive\n",sens1,sens2-1); | |
244 | } | |
851d3db9 | 245 | } |
246 | printf("\n"); | |
5c7f4665 | 247 | |
248 | // First ionization potential (eV) for the gas mixture (90% Xe + 10% CO2) | |
249 | const Float_t kPoti = 12.1; | |
250 | // Maximum energy (50 keV); | |
251 | const Float_t kEend = 50000.0; | |
252 | // Ermilova distribution for the delta-ray spectrum | |
8230f242 | 253 | Float_t poti = TMath::Log(kPoti); |
254 | Float_t eEnd = TMath::Log(kEend); | |
255 | fDeltaE = new TF1("deltae",Ermilova,poti,eEnd,0); | |
5c7f4665 | 256 | |
257 | // Identifier of the sensitive volume (drift region) | |
258 | fIdSens = gMC->VolId("UL05"); | |
82bbf98a | 259 | |
260 | // Identifier of the TRD-driftchambers | |
261 | fIdChamber1 = gMC->VolId("UCIO"); | |
262 | fIdChamber2 = gMC->VolId("UCIM"); | |
263 | fIdChamber3 = gMC->VolId("UCII"); | |
264 | ||
5c7f4665 | 265 | for (Int_t i = 0; i < 80; i++) printf("*"); |
266 | printf("\n"); | |
267 | ||
fe4da5cc | 268 | } |
269 | ||
5c7f4665 | 270 | //_____________________________________________________________________________ |
271 | void AliTRDv1::SetSensPlane(Int_t iplane) | |
272 | { | |
273 | // | |
851d3db9 | 274 | // Defines the hit-sensitive plane (0-5) |
5c7f4665 | 275 | // |
82bbf98a | 276 | |
851d3db9 | 277 | if ((iplane < 0) || (iplane > 5)) { |
5c7f4665 | 278 | printf("Wrong input value: %d\n",iplane); |
279 | printf("Use standard setting\n"); | |
851d3db9 | 280 | fSensPlane = -1; |
281 | fSensSelect = 0; | |
5c7f4665 | 282 | return; |
283 | } | |
82bbf98a | 284 | |
5c7f4665 | 285 | fSensSelect = 1; |
286 | fSensPlane = iplane; | |
82bbf98a | 287 | |
5c7f4665 | 288 | } |
289 | ||
290 | //_____________________________________________________________________________ | |
291 | void AliTRDv1::SetSensChamber(Int_t ichamber) | |
292 | { | |
293 | // | |
851d3db9 | 294 | // Defines the hit-sensitive chamber (0-4) |
5c7f4665 | 295 | // |
296 | ||
851d3db9 | 297 | if ((ichamber < 0) || (ichamber > 4)) { |
5c7f4665 | 298 | printf("Wrong input value: %d\n",ichamber); |
299 | printf("Use standard setting\n"); | |
851d3db9 | 300 | fSensChamber = -1; |
301 | fSensSelect = 0; | |
5c7f4665 | 302 | return; |
303 | } | |
304 | ||
305 | fSensSelect = 1; | |
306 | fSensChamber = ichamber; | |
307 | ||
308 | } | |
309 | ||
310 | //_____________________________________________________________________________ | |
311 | void AliTRDv1::SetSensSector(Int_t isector) | |
312 | { | |
313 | // | |
851d3db9 | 314 | // Defines the hit-sensitive sector (0-17) |
5c7f4665 | 315 | // |
316 | ||
9d0b222b | 317 | SetSensSector(isector,1); |
318 | ||
319 | } | |
320 | ||
321 | //_____________________________________________________________________________ | |
322 | void AliTRDv1::SetSensSector(Int_t isector, Int_t nsector) | |
323 | { | |
324 | // | |
325 | // Defines a range of hit-sensitive sectors. The range is defined by | |
326 | // <isector> (0-17) as the starting point and <nsector> as the number | |
327 | // of sectors to be included. | |
328 | // | |
329 | ||
851d3db9 | 330 | if ((isector < 0) || (isector > 17)) { |
9d0b222b | 331 | printf("Wrong input value <isector>: %d\n",isector); |
5c7f4665 | 332 | printf("Use standard setting\n"); |
9d0b222b | 333 | fSensSector = -1; |
334 | fSensSectorRange = 0; | |
335 | fSensSelect = 0; | |
5c7f4665 | 336 | return; |
337 | } | |
338 | ||
9d0b222b | 339 | if ((nsector < 1) || (nsector > 18)) { |
340 | printf("Wrong input value <nsector>: %d\n",nsector); | |
341 | printf("Use standard setting\n"); | |
342 | fSensSector = -1; | |
343 | fSensSectorRange = 0; | |
344 | fSensSelect = 0; | |
345 | return; | |
346 | } | |
347 | ||
348 | fSensSelect = 1; | |
349 | fSensSector = isector; | |
350 | fSensSectorRange = nsector; | |
5c7f4665 | 351 | |
352 | } | |
353 | ||
354 | //_____________________________________________________________________________ | |
355 | void AliTRDv1::StepManager() | |
356 | { | |
357 | // | |
5c7f4665 | 358 | // Slow simulator. Every charged track produces electron cluster as hits |
359 | // along its path across the drift volume. The step size is set acording | |
360 | // to Bethe-Bloch. The energy distribution of the delta electrons follows | |
361 | // a spectrum taken from Ermilova et al. | |
362 | // | |
363 | ||
364 | Int_t iIdSens, icSens; | |
365 | Int_t iIdSpace, icSpace; | |
366 | Int_t iIdChamber, icChamber; | |
851d3db9 | 367 | Int_t pla = 0; |
368 | Int_t cha = 0; | |
369 | Int_t sec = 0; | |
370 | Int_t iPdg; | |
5c7f4665 | 371 | |
9d0b222b | 372 | Int_t det[1]; |
373 | ||
5c7f4665 | 374 | Float_t hits[4]; |
375 | Float_t random[1]; | |
376 | Float_t charge; | |
377 | Float_t aMass; | |
378 | ||
379 | Double_t pTot; | |
380 | Double_t qTot; | |
381 | Double_t eDelta; | |
382 | Double_t betaGamma, pp; | |
383 | ||
384 | TLorentzVector pos, mom; | |
82bbf98a | 385 | TClonesArray &lhits = *fHits; |
386 | ||
851d3db9 | 387 | const Double_t kBig = 1.0E+12; |
5c7f4665 | 388 | |
389 | // Ionization energy | |
851d3db9 | 390 | const Float_t kWion = 22.04; |
5c7f4665 | 391 | // Maximum energy for e+ e- g for the step-size calculation |
851d3db9 | 392 | const Float_t kPTotMax = 0.002; |
5c7f4665 | 393 | // Plateau value of the energy-loss for electron in xenon |
394 | // taken from: Allison + Comb, Ann. Rev. Nucl. Sci. (1980), 30, 253 | |
395 | //const Double_t kPlateau = 1.70; | |
396 | // the averaged value (26/3/99) | |
851d3db9 | 397 | const Float_t kPlateau = 1.55; |
5c7f4665 | 398 | // dN1/dx|min for the gas mixture (90% Xe + 10% CO2) |
851d3db9 | 399 | const Float_t kPrim = 48.0; |
5c7f4665 | 400 | // First ionization potential (eV) for the gas mixture (90% Xe + 10% CO2) |
851d3db9 | 401 | const Float_t kPoti = 12.1; |
402 | ||
403 | // PDG code electron | |
8230f242 | 404 | const Int_t kPdgElectron = 11; |
5c7f4665 | 405 | |
406 | // Set the maximum step size to a very large number for all | |
407 | // neutral particles and those outside the driftvolume | |
408 | gMC->SetMaxStep(kBig); | |
409 | ||
410 | // Use only charged tracks | |
411 | if (( gMC->TrackCharge() ) && | |
412 | (!gMC->IsTrackStop() ) && | |
413 | (!gMC->IsTrackDisappeared())) { | |
fe4da5cc | 414 | |
5c7f4665 | 415 | // Inside a sensitive volume? |
82bbf98a | 416 | iIdSens = gMC->CurrentVolID(icSens); |
417 | if (iIdSens == fIdSens) { | |
418 | ||
82bbf98a | 419 | iIdSpace = gMC->CurrentVolOffID(4,icSpace ); |
420 | iIdChamber = gMC->CurrentVolOffID(1,icChamber); | |
fe4da5cc | 421 | |
5c7f4665 | 422 | // Calculate the energy of the delta-electrons |
423 | eDelta = TMath::Exp(fDeltaE->GetRandom()) - kPoti; | |
424 | eDelta = TMath::Max(eDelta,0.0); | |
425 | ||
426 | // The number of secondary electrons created | |
427 | qTot = (Double_t) ((Int_t) (eDelta / kWion) + 1); | |
428 | ||
429 | // The hit coordinates and charge | |
430 | gMC->TrackPosition(pos); | |
431 | hits[0] = pos[0]; | |
432 | hits[1] = pos[1]; | |
433 | hits[2] = pos[2]; | |
434 | hits[3] = qTot; | |
435 | ||
851d3db9 | 436 | // The sector number (0 - 17) |
437 | // The numbering goes clockwise and starts at y = 0 | |
438 | Float_t phi = kRaddeg*TMath::ATan2(pos[0],pos[1]); | |
439 | if (phi < 90.) | |
440 | phi = phi + 270.; | |
441 | else | |
442 | phi = phi - 90.; | |
443 | sec = ((Int_t) (phi / 20)); | |
82bbf98a | 444 | |
d3f347ff | 445 | // The chamber number |
851d3db9 | 446 | // 0: outer left |
447 | // 1: middle left | |
448 | // 2: inner | |
449 | // 3: middle right | |
450 | // 4: outer right | |
82bbf98a | 451 | if (iIdChamber == fIdChamber1) |
851d3db9 | 452 | cha = (hits[2] < 0 ? 0 : 4); |
82bbf98a | 453 | else if (iIdChamber == fIdChamber2) |
851d3db9 | 454 | cha = (hits[2] < 0 ? 1 : 3); |
82bbf98a | 455 | else if (iIdChamber == fIdChamber3) |
851d3db9 | 456 | cha = 2; |
82bbf98a | 457 | |
fe4da5cc | 458 | // The plane number |
851d3db9 | 459 | // The numbering starts at the innermost plane |
460 | pla = icChamber - TMath::Nint((Float_t) (icChamber / 7)) * 6 - 1; | |
82bbf98a | 461 | |
5c7f4665 | 462 | // Check on selected volumes |
463 | Int_t addthishit = 1; | |
464 | if (fSensSelect) { | |
6f1e466d | 465 | if ((fSensPlane >= 0) && (pla != fSensPlane )) addthishit = 0; |
466 | if ((fSensChamber >= 0) && (cha != fSensChamber)) addthishit = 0; | |
9d0b222b | 467 | if (fSensSector >= 0) { |
468 | Int_t sens1 = fSensSector; | |
469 | Int_t sens2 = fSensSector + fSensSectorRange; | |
470 | sens2 -= ((Int_t) (sens2 / kNsect)) * kNsect; | |
471 | if (sens1 < sens2) { | |
472 | if ((sec < sens1) || (sec >= sens2)) addthishit = 0; | |
473 | } | |
474 | else { | |
475 | if ((sec < sens1) && (sec >= sens2)) addthishit = 0; | |
476 | } | |
477 | } | |
5c7f4665 | 478 | } |
479 | ||
480 | // Add this hit | |
481 | if (addthishit) { | |
482 | ||
9d0b222b | 483 | det[0] = fGeometry->GetDetector(pla,cha,sec); |
851d3db9 | 484 | new(lhits[fNhits++]) AliTRDhit(fIshunt |
485 | ,gAlice->CurrentTrack() | |
9d0b222b | 486 | ,det |
851d3db9 | 487 | ,hits); |
5c7f4665 | 488 | |
489 | // The energy loss according to Bethe Bloch | |
490 | gMC->TrackMomentum(mom); | |
491 | pTot = mom.Rho(); | |
851d3db9 | 492 | iPdg = TMath::Abs(gMC->TrackPid()); |
8230f242 | 493 | if ( (iPdg != kPdgElectron) || |
494 | ((iPdg == kPdgElectron) && (pTot < kPTotMax))) { | |
5c7f4665 | 495 | aMass = gMC->TrackMass(); |
496 | betaGamma = pTot / aMass; | |
497 | pp = kPrim * BetheBloch(betaGamma); | |
498 | // Take charge > 1 into account | |
499 | charge = gMC->TrackCharge(); | |
500 | if (TMath::Abs(charge) > 1) pp = pp * charge*charge; | |
501 | } | |
502 | // Electrons above 20 Mev/c are at the plateau | |
503 | else { | |
504 | pp = kPrim * kPlateau; | |
505 | } | |
506 | ||
507 | // Calculate the maximum step size for the next tracking step | |
508 | if (pp > 0) { | |
509 | do | |
510 | gMC->Rndm(random,1); | |
511 | while ((random[0] == 1.) || (random[0] == 0.)); | |
512 | gMC->SetMaxStep( - TMath::Log(random[0]) / pp); | |
513 | } | |
514 | ||
515 | } | |
516 | else { | |
517 | // set step size to maximal value | |
518 | gMC->SetMaxStep(kBig); | |
519 | } | |
d3f347ff | 520 | |
521 | } | |
522 | ||
5c7f4665 | 523 | } |
524 | ||
525 | } | |
526 | ||
527 | //_____________________________________________________________________________ | |
528 | Double_t AliTRDv1::BetheBloch(Double_t bg) | |
529 | { | |
530 | // | |
531 | // Parametrization of the Bethe-Bloch-curve | |
532 | // The parametrization is the same as for the TPC and is taken from Lehrhaus. | |
533 | // | |
534 | ||
535 | // This parameters have been adjusted to averaged values from GEANT | |
536 | const Double_t kP1 = 7.17960e-02; | |
537 | const Double_t kP2 = 8.54196; | |
538 | const Double_t kP3 = 1.38065e-06; | |
539 | const Double_t kP4 = 5.30972; | |
540 | const Double_t kP5 = 2.83798; | |
541 | ||
542 | // This parameters have been adjusted to Xe-data found in: | |
543 | // Allison & Cobb, Ann. Rev. Nucl. Sci. (1980), 30, 253 | |
544 | //const Double_t kP1 = 0.76176E-1; | |
545 | //const Double_t kP2 = 10.632; | |
546 | //const Double_t kP3 = 3.17983E-6; | |
547 | //const Double_t kP4 = 1.8631; | |
548 | //const Double_t kP5 = 1.9479; | |
549 | ||
550 | if (bg > 0) { | |
551 | Double_t yy = bg / TMath::Sqrt(1. + bg*bg); | |
552 | Double_t aa = TMath::Power(yy,kP4); | |
553 | Double_t bb = TMath::Power((1./bg),kP5); | |
554 | bb = TMath::Log(kP3 + bb); | |
555 | return ((kP2 - aa - bb)*kP1 / aa); | |
556 | } | |
557 | else | |
558 | return 0; | |
d3f347ff | 559 | |
fe4da5cc | 560 | } |
5c7f4665 | 561 | |
562 | //_____________________________________________________________________________ | |
563 | Double_t Ermilova(Double_t *x, Double_t *) | |
564 | { | |
565 | // | |
566 | // Calculates the delta-ray energy distribution according to Ermilova. | |
567 | // Logarithmic scale ! | |
568 | // | |
569 | ||
570 | Double_t energy; | |
571 | Double_t dpos; | |
572 | Double_t dnde; | |
573 | ||
574 | Int_t pos1, pos2; | |
575 | ||
8230f242 | 576 | const Int_t kNv = 31; |
5c7f4665 | 577 | |
8230f242 | 578 | Float_t vxe[kNv] = { 2.3026, 2.9957, 3.4012, 3.6889, 3.9120 |
579 | , 4.0943, 4.2485, 4.3820, 4.4998, 4.6052 | |
580 | , 4.7005, 5.0752, 5.2983, 5.7038, 5.9915 | |
581 | , 6.2146, 6.5221, 6.9078, 7.3132, 7.6009 | |
582 | , 8.0064, 8.5172, 8.6995, 8.9872, 9.2103 | |
583 | , 9.4727, 9.9035,10.3735,10.5966,10.8198 | |
584 | ,11.5129 }; | |
5c7f4665 | 585 | |
8230f242 | 586 | Float_t vye[kNv] = { 80.0 , 31.0 , 23.3 , 21.1 , 21.0 |
587 | , 20.9 , 20.8 , 20.0 , 16.0 , 11.0 | |
588 | , 8.0 , 6.0 , 5.2 , 4.6 , 4.0 | |
589 | , 3.5 , 3.0 , 1.4 , 0.67 , 0.44 | |
590 | , 0.3 , 0.18 , 0.12 , 0.08 , 0.056 | |
591 | , 0.04 , 0.023, 0.015, 0.011, 0.01 | |
592 | , 0.004 }; | |
5c7f4665 | 593 | |
594 | energy = x[0]; | |
595 | ||
596 | // Find the position | |
597 | pos1 = pos2 = 0; | |
598 | dpos = 0; | |
599 | do { | |
600 | dpos = energy - vxe[pos2++]; | |
601 | } | |
602 | while (dpos > 0); | |
603 | pos2--; | |
8230f242 | 604 | if (pos2 > kNv) pos2 = kNv; |
5c7f4665 | 605 | pos1 = pos2 - 1; |
606 | ||
607 | // Differentiate between the sampling points | |
608 | dnde = (vye[pos1] - vye[pos2]) / (vxe[pos2] - vxe[pos1]); | |
609 | ||
610 | return dnde; | |
611 | ||
612 | } |