]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONv1.cxx
Code revision:
[u/mrichter/AliRoot.git] / MUON / AliMUONv1.cxx
CommitLineData
a9e2aefa 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
d7c4fbc4 3 * SigmaEffect_thetadegrees *
a9e2aefa 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 *
2c799aa2 12 * about the suitability of this software for any purpeateose. It is *
a9e2aefa 13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
15
88cb7938 16/* $Id$ */
a9e2aefa 17
18/////////////////////////////////////////////////////////
acc838fd 19// Manager and hits classes for set:MUON version 1 //
a9e2aefa 20/////////////////////////////////////////////////////////
acc838fd 21
abaf7c9d 22#include <TRandom.h>
23#include <TF1.h>
116cbefd 24#include <TClonesArray.h>
acc838fd 25#include <TRandom.h>
acc838fd 26#include <TGeoMatrix.h>
88cb7938 27#include <TVirtualMC.h>
a9e2aefa 28
30178c30 29#include "AliMUONv1.h"
a9e2aefa 30#include "AliConst.h"
31#include "AliMUONChamber.h"
88cb7938 32#include "AliMUONConstants.h"
33#include "AliMUONFactory.h"
a9e2aefa 34#include "AliMUONHit.h"
8c449e83 35#include "AliMUONTriggerCircuit.h"
acc838fd 36#include "AliMUONVGeometryBuilder.h"
37#include "AliMUONChamberGeometry.h"
38#include "AliMUONGeometryEnvelope.h"
39#include "AliMUONGeometryConstituent.h"
88cb7938 40#include "AliMagF.h"
41#include "AliRun.h"
5d12ce38 42#include "AliMC.h"
a9e2aefa 43
44ClassImp(AliMUONv1)
45
46//___________________________________________
30178c30 47AliMUONv1::AliMUONv1()
48 : AliMUON(),
49 fTrackMomentum(), fTrackPosition(),fGlobalTransformation(0)
a9e2aefa 50{
51// Constructor
1391e633 52 fChambers = 0;
1391e633 53 fStepManagerVersionOld = kFALSE;
374ebd7d 54 fAngleEffect = kTRUE;
1391e633 55 fStepMaxInActiveGas = 0.6;
56 fStepSum = 0x0;
57 fDestepSum = 0x0;
58 fElossRatio = 0x0;
59 fAngleEffect10 = 0x0;
60 fAngleEffectNorma= 0x0;
61}
a9e2aefa 62//___________________________________________
63AliMUONv1::AliMUONv1(const char *name, const char *title)
1391e633 64 : AliMUON(name,title), fTrackMomentum(), fTrackPosition()
a9e2aefa 65{
66// Constructor
ba030c0e 67 // By default include all stations
ba030c0e 68 AliMUONFactory factory;
69 factory.Build(this, title);
c33d9661 70
71 fStepManagerVersionOld = kFALSE;
374ebd7d 72 fAngleEffect = kTRUE;
1391e633 73 fStepMaxInActiveGas = 0.6;
74
75 fStepSum = new Float_t [AliMUONConstants::NCh()];
76 fDestepSum = new Float_t [AliMUONConstants::NCh()];
77 for (Int_t i=0; i<AliMUONConstants::NCh(); i++) {
78 fStepSum[i] =0.0;
79 fDestepSum[i]=0.0;
80 }
81 // Ratio of particle mean eloss with respect MIP's Khalil Boudjemline, sep 2003, PhD.Thesis and Particle Data Book
82 fElossRatio = new TF1("ElossRatio","[0]+[1]*x+[2]*x*x+[3]*x*x*x+[4]*x*x*x*x",0.5,5.);
83 fElossRatio->SetParameter(0,1.02138);
84 fElossRatio->SetParameter(1,-9.54149e-02);
85 fElossRatio->SetParameter(2,+7.83433e-02);
86 fElossRatio->SetParameter(3,-9.98208e-03);
87 fElossRatio->SetParameter(4,+3.83279e-04);
88
89 // Angle effect in tracking chambers at theta =10 degres as a function of ElossRatio (Khalil BOUDJEMLINE sep 2003 Ph.D Thesis) (in micrometers)
90 fAngleEffect10 = new TF1("AngleEffect10","[0]+[1]*x+[2]*x*x",0.5,3.0);
91 fAngleEffect10->SetParameter(0, 1.90691e+02);
92 fAngleEffect10->SetParameter(1,-6.62258e+01);
93 fAngleEffect10->SetParameter(2,+1.28247e+01);
94 // Angle effect: Normalisation form theta=10 degres to theta between 0 and 10 (Khalil BOUDJEMLINE sep 2003 Ph.D Thesis)
95 // Angle with respect to the wires assuming that chambers are perpendicular to the z axis.
96 fAngleEffectNorma = new TF1("AngleEffectNorma","[0]+[1]*x+[2]*x*x+[3]*x*x*x",0.0,10.0);
97 fAngleEffectNorma->SetParameter(0,4.148);
98 fAngleEffectNorma->SetParameter(1,-6.809e-01);
99 fAngleEffectNorma->SetParameter(2,5.151e-02);
100 fAngleEffectNorma->SetParameter(3,-1.490e-03);
acc838fd 101
102 // Define the global transformation:
103 // Transformation from the old ALICE coordinate system to a new one:
104 // x->-x, z->-z
105 TGeoRotation* rotGlobal
106 = new TGeoRotation("rotGlobal", 90., 180., 90., 90., 180., 0.);
107 fGlobalTransformation = new TGeoCombiTrans(0., 0., 0., rotGlobal);
a9e2aefa 108}
109
fb1bf5c0 110//_____________________________________________________________________________
111AliMUONv1::AliMUONv1(const AliMUONv1& right)
112 : AliMUON(right)
113{
114 // copy constructor (not implemented)
115
116 Fatal("AliMUONv1", "Copy constructor not provided.");
117}
118
a9e2aefa 119//___________________________________________
acc838fd 120AliMUONv1::~AliMUONv1()
a9e2aefa 121{
acc838fd 122// Destructor
a9e2aefa 123
acc838fd 124 delete fGlobalTransformation;
125}
b17c0c87 126
fb1bf5c0 127//_____________________________________________________________________________
128AliMUONv1& AliMUONv1::operator=(const AliMUONv1& right)
129{
130 // assignement operator (not implemented)
131
132 // check assignement to self
133 if (this == &right) return *this;
134
135 Fatal("operator =", "Assignement operator not provided.");
136
137 return *this;
138}
139
acc838fd 140//__________________________________________________
141void AliMUONv1::CreateGeometry()
142{
b17c0c87 143//
acc838fd 144// Construct geometry using geometry builders.
a9e2aefa 145//
a9e2aefa 146
acc838fd 147 for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
3c084d9f 148
acc838fd 149 // Get the builder
150 AliMUONVGeometryBuilder* builder
151 = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
1e8fff9c 152
acc838fd 153 // Create geometry with each builder
154 if (builder) {
155 builder->CreateGeometry();
156 builder->SetTransformations();
157 }
158 }
3c084d9f 159
acc838fd 160 for (Int_t j=0; j<AliMUONConstants::NCh(); j++) {
3c084d9f 161
acc838fd 162 AliMUONChamberGeometry* geometry = Chamber(j).GetGeometry();
3c084d9f 163
acc838fd 164 if (!geometry) continue;
165 // Skip chambers with not defined geometry
166
167 // Loop over envelopes
168 const TObjArray* kEnvelopes = geometry->GetEnvelopes();
169 for (Int_t k=0; k<kEnvelopes->GetEntriesFast(); k++) {
170
171 // Get envelope
172 AliMUONGeometryEnvelope* env = (AliMUONGeometryEnvelope*)kEnvelopes->At(k);
173 const TGeoCombiTrans* kEnvTrans = env->GetTransformation();
6b82c1f0 174 const char* only = "ONLY";
175 if (env->IsMANY()) only = "MANY";
acc838fd 176
177 if (env->IsVirtual() && env->GetConstituents()->GetEntriesFast() == 0 ) {
178 // virtual envelope + nof constituents = 0
179 // => not allowed;
180 // empty virtual envelope has no sense
181 Fatal("CreateGeometry", "Virtual envelope must have constituents.");
182 return;
183 }
3c084d9f 184
acc838fd 185 if (!env->IsVirtual() && env->GetConstituents()->GetEntriesFast() > 0 ) {
186 // non virtual envelope + nof constituents > 0
187 // => not allowed;
188 // use VMC to place constituents
189 Fatal("CreateGeometry", "Non virtual envelope cannot have constituents.");
190 return;
191 }
3c084d9f 192
acc838fd 193 if (!env->IsVirtual() && env->GetConstituents()->GetEntriesFast() == 0 ) {
194 // non virtual envelope + nof constituents = 0
195 // => place envelope in ALICE by composed transformation:
196 // Tglobal * Tch * Tenv
197
198 // Compound chamber transformation with the envelope one
199 TGeoHMatrix total
200 = (*fGlobalTransformation) *
201 (*geometry->GetTransformation()) *
202 (*kEnvTrans);
203 PlaceVolume(env->GetName(), geometry->GetMotherVolume(),
6b82c1f0 204 env->GetCopyNo(), total, 0, 0, only);
acc838fd 205 }
3c084d9f 206
acc838fd 207 if (env->IsVirtual() && env->GetConstituents()->GetEntriesFast() > 0 ) {
208 // virtual envelope + nof constituents > 0
209 // => do not place envelope and place constituents
210 // in ALICE by composed transformation:
211 // Tglobal * Tch * Tenv * Tconst
212
213 for (Int_t l=0; l<env->GetConstituents()->GetEntriesFast(); l++) {
214 AliMUONGeometryConstituent* constituent
215 = (AliMUONGeometryConstituent*)env->GetConstituents()->At(l);
216
217 // Compound chamber transformation with the envelope one + the constituent one
218 TGeoHMatrix total
219 = (*fGlobalTransformation) *
220 (*geometry->GetTransformation()) *
221 (*kEnvTrans) *
222 (*constituent->GetTransformation());
223
224 PlaceVolume(constituent->GetName(), geometry->GetMotherVolume(),
225 constituent->GetCopyNo(), total,
6b82c1f0 226 constituent->GetNpar(), constituent->GetParam(), only);
acc838fd 227 }
228 }
229 }
230 }
231}
232//__________________________________________________________________
233Int_t AliMUONv1::GetChamberId(Int_t volId) const
234{
235// Check if the volume with specified volId is a sensitive volume (gas)
236// of some chamber and returns the chamber number;
237// if not sensitive volume - return 0.
238// ---
a9e2aefa 239
acc838fd 240/*
241 for (Int_t i = 1; i <= AliMUONConstants::NCh(); i++)
242 if (volId==((AliMUONChamber*)(*fChambers)[i-1])->GetGid()) return i;
243*/
244 for (Int_t i = 1; i <= AliMUONConstants::NCh(); i++)
245 if ( ((AliMUONChamber*)(*fChambers)[i-1])->IsSensId(volId) ) return i;
a9e2aefa 246
acc838fd 247 return 0;
a9e2aefa 248}
acc838fd 249//________________________________________________________________
a9e2aefa 250void AliMUONv1::CreateMaterials()
251{
acc838fd 252
a9e2aefa 253 // *** DEFINITION OF AVAILABLE MUON MATERIALS ***
254 //
b64652f5 255 // Ar-CO2 gas (80%+20%)
a9e2aefa 256 Float_t ag1[3] = { 39.95,12.01,16. };
257 Float_t zg1[3] = { 18.,6.,8. };
258 Float_t wg1[3] = { .8,.0667,.13333 };
259 Float_t dg1 = .001821;
260 //
261 // Ar-buthane-freon gas -- trigger chambers
262 Float_t atr1[4] = { 39.95,12.01,1.01,19. };
263 Float_t ztr1[4] = { 18.,6.,1.,9. };
264 Float_t wtr1[4] = { .56,.1262857,.2857143,.028 };
265 Float_t dtr1 = .002599;
266 //
267 // Ar-CO2 gas
268 Float_t agas[3] = { 39.95,12.01,16. };
269 Float_t zgas[3] = { 18.,6.,8. };
270 Float_t wgas[3] = { .74,.086684,.173316 };
271 Float_t dgas = .0018327;
272 //
273 // Ar-Isobutane gas (80%+20%) -- tracking
274 Float_t ag[3] = { 39.95,12.01,1.01 };
275 Float_t zg[3] = { 18.,6.,1. };
276 Float_t wg[3] = { .8,.057,.143 };
277 Float_t dg = .0019596;
278 //
279 // Ar-Isobutane-Forane-SF6 gas (49%+7%+40%+4%) -- trigger
280 Float_t atrig[5] = { 39.95,12.01,1.01,19.,32.066 };
281 Float_t ztrig[5] = { 18.,6.,1.,9.,16. };
282 Float_t wtrig[5] = { .49,1.08,1.5,1.84,0.04 };
283 Float_t dtrig = .0031463;
284 //
285 // bakelite
286
287 Float_t abak[3] = {12.01 , 1.01 , 16.};
288 Float_t zbak[3] = {6. , 1. , 8.};
289 Float_t wbak[3] = {6. , 6. , 1.};
290 Float_t dbak = 1.4;
291
292 Float_t epsil, stmin, deemax, tmaxfd, stemax;
293
294 Int_t iSXFLD = gAlice->Field()->Integ();
295 Float_t sXMGMX = gAlice->Field()->Max();
296 //
297 // --- Define the various materials for GEANT ---
298 AliMaterial(9, "ALUMINIUM$", 26.98, 13., 2.7, 8.9, 37.2);
299 AliMaterial(10, "ALUMINIUM$", 26.98, 13., 2.7, 8.9, 37.2);
300 AliMaterial(15, "AIR$ ", 14.61, 7.3, .001205, 30423.24, 67500);
301 AliMixture(19, "Bakelite$", abak, zbak, dbak, -3, wbak);
302 AliMixture(20, "ArC4H10 GAS$", ag, zg, dg, 3, wg);
303 AliMixture(21, "TRIG GAS$", atrig, ztrig, dtrig, -5, wtrig);
304 AliMixture(22, "ArCO2 80%$", ag1, zg1, dg1, 3, wg1);
305 AliMixture(23, "Ar-freon $", atr1, ztr1, dtr1, 4, wtr1);
306 AliMixture(24, "ArCO2 GAS$", agas, zgas, dgas, 3, wgas);
1e8fff9c 307 // materials for slat:
308 // Sensitive area: gas (already defined)
309 // PCB: copper
310 // insulating material and frame: vetronite
311 // walls: carbon, rohacell, carbon
312 Float_t aglass[5]={12.01, 28.09, 16., 10.8, 23.};
313 Float_t zglass[5]={ 6., 14., 8., 5., 11.};
314 Float_t wglass[5]={ 0.5, 0.105, 0.355, 0.03, 0.01};
315 Float_t dglass=1.74;
316
317 // rohacell: C9 H13 N1 O2
318 Float_t arohac[4] = {12.01, 1.01, 14.010, 16.};
319 Float_t zrohac[4] = { 6., 1., 7., 8.};
320 Float_t wrohac[4] = { 9., 13., 1., 2.};
321 Float_t drohac = 0.03;
322
323 AliMaterial(31, "COPPER$", 63.54, 29., 8.96, 1.4, 0.);
324 AliMixture(32, "Vetronite$",aglass, zglass, dglass, 5, wglass);
325 AliMaterial(33, "Carbon$", 12.01, 6., 2.265, 18.8, 49.9);
326 AliMixture(34, "Rohacell$", arohac, zrohac, drohac, -4, wrohac);
327
a9e2aefa 328
329 epsil = .001; // Tracking precision,
330 stemax = -1.; // Maximum displacement for multiple scat
331 tmaxfd = -20.; // Maximum angle due to field deflection
332 deemax = -.3; // Maximum fractional energy loss, DLS
333 stmin = -.8;
334 //
335 // Air
336 AliMedium(1, "AIR_CH_US ", 15, 1, iSXFLD, sXMGMX, tmaxfd, stemax, deemax, epsil, stmin);
337 //
338 // Aluminum
339
340 AliMedium(4, "ALU_CH_US ", 9, 0, iSXFLD, sXMGMX, tmaxfd, fMaxStepAlu,
341 fMaxDestepAlu, epsil, stmin);
342 AliMedium(5, "ALU_CH_US ", 10, 0, iSXFLD, sXMGMX, tmaxfd, fMaxStepAlu,
343 fMaxDestepAlu, epsil, stmin);
344 //
345 // Ar-isoC4H10 gas
346
347 AliMedium(6, "AR_CH_US ", 20, 1, iSXFLD, sXMGMX, tmaxfd, fMaxStepGas,
348 fMaxDestepGas, epsil, stmin);
349//
350 // Ar-Isobuthane-Forane-SF6 gas
351
352 AliMedium(7, "GAS_CH_TRIGGER ", 21, 1, iSXFLD, sXMGMX, tmaxfd, stemax, deemax, epsil, stmin);
353
354 AliMedium(8, "BAKE_CH_TRIGGER ", 19, 0, iSXFLD, sXMGMX, tmaxfd, fMaxStepAlu,
355 fMaxDestepAlu, epsil, stmin);
356
357 AliMedium(9, "ARG_CO2 ", 22, 1, iSXFLD, sXMGMX, tmaxfd, fMaxStepGas,
358 fMaxDestepAlu, epsil, stmin);
1e8fff9c 359 // tracking media for slats: check the parameters!!
360 AliMedium(11, "PCB_COPPER ", 31, 0, iSXFLD, sXMGMX, tmaxfd,
361 fMaxStepAlu, fMaxDestepAlu, epsil, stmin);
362 AliMedium(12, "VETRONITE ", 32, 0, iSXFLD, sXMGMX, tmaxfd,
363 fMaxStepAlu, fMaxDestepAlu, epsil, stmin);
364 AliMedium(13, "CARBON ", 33, 0, iSXFLD, sXMGMX, tmaxfd,
365 fMaxStepAlu, fMaxDestepAlu, epsil, stmin);
366 AliMedium(14, "Rohacell ", 34, 0, iSXFLD, sXMGMX, tmaxfd,
367 fMaxStepAlu, fMaxDestepAlu, epsil, stmin);
acc838fd 368
369
370
371 //.Materials specific to stations
372 // created via builders
373
374 for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
375
376 // Get the builder
377 AliMUONVGeometryBuilder* builder
378 = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
379
380 // Create materials with each builder
381 if (builder) builder->CreateMaterials();
382 }
a9e2aefa 383}
384
acc838fd 385//______________________________________________________________________________
386void AliMUONv1::PlaceVolume(const TString& name, const TString& mName,
387 Int_t copyNo, const TGeoHMatrix& matrix,
6b82c1f0 388 Int_t npar, Double_t* param, const char* only) const
acc838fd 389{
390// Place the volume specified by name with the given transformation matrix
391// ---
392
393 // Do not apply global transformation
394 // if mother volume == DDIP
395 // (as it is applied on this volume)
396 TGeoHMatrix transform(matrix);
397 if (mName == TString("DDIP")) {
398 transform = (*fGlobalTransformation) * transform;
399 // To be changed to (*fGlobalTransformation).inverse()
400 // when available in TGeo
401 // To make this correct also for a general case when
402 // (*fGlobalTransformation) * *fGlobalTransformation) != 1
403 }
404
405 // Decompose transformation
406 const Double_t* xyz = transform.GetTranslation();
407 const Double_t* rm = transform.GetRotationMatrix();
408
409 //cout << "Got translation: "
410 // << xyz[0] << " " << xyz[1] << " " << xyz[2] << endl;
411
412 //cout << "Got rotation: "
413 // << rm[0] << " " << rm[1] << " " << rm[2] << endl
414 // << rm[3] << " " << rm[4] << " " << rm[5] << endl
415 // << rm[6] << " " << rm[7] << " " << rm[8] << endl;
416
417 // Check for presence of rotation
418 // (will be nice to be available in TGeo)
419 const Double_t kTolerance = 1e-04;
420 Bool_t isRotation = true;
421 if (TMath::Abs(rm[0] - 1.) < kTolerance &&
422 TMath::Abs(rm[1] - 0.) < kTolerance &&
423 TMath::Abs(rm[2] - 0.) < kTolerance &&
424 TMath::Abs(rm[3] - 0.) < kTolerance &&
425 TMath::Abs(rm[4] - 1.) < kTolerance &&
426 TMath::Abs(rm[5] - 0.) < kTolerance &&
427 TMath::Abs(rm[6] - 0.) < kTolerance &&
428 TMath::Abs(rm[7] - 0.) < kTolerance &&
429 TMath::Abs(rm[8] - 1.) < kTolerance) isRotation = false;
430
431 Int_t krot = 0;
432 if (isRotation) {
433 TGeoRotation rot;
434 rot.SetMatrix(const_cast<Double_t*>(transform.GetRotationMatrix()));
435 Double_t theta1, phi1, theta2, phi2, theta3, phi3;
436 rot.GetAngles(theta1, phi1, theta2, phi2, theta3, phi3);
437
438 //cout << "angles: "
439 // << theta1 << " " << phi1 << " "
440 // << theta2 << " " << phi2 << " "
441 // << theta3 << " " << phi3 << endl;
442
443 AliMatrix(krot, theta1, phi1, theta2, phi2, theta3, phi3);
444 }
445
446 // Place the volume in ALIC
6b82c1f0 447 if (npar == 0)
448 gMC->Gspos(name, copyNo, mName, xyz[0], xyz[1], xyz[2] , krot, only);
acc838fd 449 else
6b82c1f0 450 gMC->Gsposp(name, copyNo, mName, xyz[0], xyz[1], xyz[2] , krot, only,
acc838fd 451 param, npar);
452
453}
a9e2aefa 454
acc838fd 455//___________________________________________
a9e2aefa 456void AliMUONv1::Init()
457{
458 //
459 // Initialize Tracking Chambers
460 //
461
9e1a0ddb 462 if(fDebug) printf("\n%s: Start Init for version 1 - CPC chamber type\n\n",ClassName());
e17592e9 463 Int_t i;
f665c1ea 464 for (i=0; i<AliMUONConstants::NCh(); i++) {
a9e2aefa 465 ( (AliMUONChamber*) (*fChambers)[i])->Init();
466 }
467
acc838fd 468 //
469 // Set the chamber (sensitive region) GEANT identifier
470 //
471 for (Int_t i=0; i<fGeometryBuilders->GetEntriesFast(); i++) {
472
473 // Get the builder
474 AliMUONVGeometryBuilder* builder
475 = (AliMUONVGeometryBuilder*)fGeometryBuilders->At(i);
476
477 // Set sesitive volumes with each builder
478 if (builder) builder->SetSensitiveVolumes();
479 }
480
481/*
a9e2aefa 482 //
483 // Set the chamber (sensitive region) GEANT identifier
b74f1c6a 484 ((AliMUONChamber*)(*fChambers)[0])->SetGid(gMC->VolId("S01G"));
485 ((AliMUONChamber*)(*fChambers)[1])->SetGid(gMC->VolId("S02G"));
b17c0c87 486
b74f1c6a 487 ((AliMUONChamber*)(*fChambers)[2])->SetGid(gMC->VolId("S03G"));
488 ((AliMUONChamber*)(*fChambers)[3])->SetGid(gMC->VolId("S04G"));
b17c0c87 489
1e8fff9c 490 ((AliMUONChamber*)(*fChambers)[4])->SetGid(gMC->VolId("S05G"));
491 ((AliMUONChamber*)(*fChambers)[5])->SetGid(gMC->VolId("S06G"));
b17c0c87 492
1e8fff9c 493 ((AliMUONChamber*)(*fChambers)[6])->SetGid(gMC->VolId("S07G"));
494 ((AliMUONChamber*)(*fChambers)[7])->SetGid(gMC->VolId("S08G"));
b17c0c87 495
1e8fff9c 496 ((AliMUONChamber*)(*fChambers)[8])->SetGid(gMC->VolId("S09G"));
497 ((AliMUONChamber*)(*fChambers)[9])->SetGid(gMC->VolId("S10G"));
b17c0c87 498
b74f1c6a 499 ((AliMUONChamber*)(*fChambers)[10])->SetGid(gMC->VolId("SG1A"));
500 ((AliMUONChamber*)(*fChambers)[11])->SetGid(gMC->VolId("SG2A"));
501 ((AliMUONChamber*)(*fChambers)[12])->SetGid(gMC->VolId("SG3A"));
502 ((AliMUONChamber*)(*fChambers)[13])->SetGid(gMC->VolId("SG4A"));
acc838fd 503*/
9e1a0ddb 504 if(fDebug) printf("\n%s: Finished Init for version 1 - CPC chamber type\n",ClassName());
a9e2aefa 505
506 //cp
9e1a0ddb 507 if(fDebug) printf("\n%s: Start Init for Trigger Circuits\n",ClassName());
f665c1ea 508 for (i=0; i<AliMUONConstants::NTriggerCircuit(); i++) {
a9e2aefa 509 ( (AliMUONTriggerCircuit*) (*fTriggerCircuits)[i])->Init(i);
510 }
9e1a0ddb 511 if(fDebug) printf("%s: Finished Init for Trigger Circuits\n",ClassName());
a9e2aefa 512 //cp
a9e2aefa 513}
1391e633 514
1391e633 515//_______________________________________________________________________________
c33d9661 516void AliMUONv1::StepManager()
517{
d7c4fbc4 518 // Stepmanager for the chambers
519
1391e633 520 if (fStepManagerVersionOld) {
c33d9661 521 StepManagerOld();
522 return;
523 }
c33d9661 524
525 // Only charged tracks
526 if( !(gMC->TrackCharge()) ) return;
1391e633 527 // Only charged tracks
528
c33d9661 529 // Only gas gap inside chamber
530 // Tag chambers and record hits when track enters
acc838fd 531 static Int_t idvol=-1;
1391e633 532 Int_t iChamber=0;
533 Int_t id=0;
534 Int_t copy;
535 const Float_t kBig = 1.e10;
536
acc838fd 537
538 //
539 // Only gas gap inside chamber
540 // Tag chambers and record hits when track enters
c33d9661 541 id=gMC->CurrentVolID(copy);
acc838fd 542 iChamber = GetChamberId(id);
543 idvol = iChamber -1;
544
545 if (idvol == -1) return;
abaf7c9d 546
967a2a25 547 // Filling TrackRefs file for MUON. Our Track references are the active volume of the chambers
548 if ( (gMC->IsTrackEntering() || gMC->IsTrackExiting() ) )
549 AddTrackReference(gAlice->GetMCApp()->GetCurrentTrackNumber());
550
1391e633 551 if( gMC->IsTrackEntering() ) {
552 Float_t theta = fTrackMomentum.Theta();
4ac9d21e 553 if ((TMath::Pi()-theta)*kRaddeg>=15.) gMC->SetMaxStep(fStepMaxInActiveGas); // We use Pi-theta because z is negative
554 }
abaf7c9d 555
1391e633 556// if (GetDebug()) {
557// Float_t z = ( (AliMUONChamber*)(*fChambers)[idvol])->Z() ;
558// Info("StepManager Step","Active volume found %d chamber %d Z chamber is %f ",idvol,iChamber, z);
559// }
560 // Particule id and mass,
561 Int_t ipart = gMC->TrackPid();
562 Float_t mass = gMC->TrackMass();
563
564 fDestepSum[idvol]+=gMC->Edep();
565 // Get current particle id (ipart), track position (pos) and momentum (mom)
566 if ( fStepSum[idvol]==0.0 ) gMC->TrackMomentum(fTrackMomentum);
567 fStepSum[idvol]+=gMC->TrackStep();
abaf7c9d 568
1391e633 569// if (GetDebug()) {
570// Info("StepManager Step","iChamber %d, Particle %d, theta %f phi %f mass %f StepSum %f eloss %g",
acc838fd 571// iChamber,ipart, fTrackMomentum.Theta()*kRaddeg, fTrackMomentum.Phi()*kRaddeg, mass, fStepSum[idvol], gMC->Edep());
1391e633 572// Info("StepManager Step","Track Momentum %f %f %f", fTrackMomentum.X(), fTrackMomentum.Y(), fTrackMomentum.Z()) ;
573// gMC->TrackPosition(fTrackPosition);
574// Info("StepManager Step","Track Position %f %f %f",fTrackPosition.X(),fTrackPosition.Y(),fTrackPosition.Z()) ;
d08aff2d 575// }
1391e633 576
577 // Track left chamber or StepSum larger than fStepMaxInActiveGas
578 if ( gMC->IsTrackExiting() ||
579 gMC->IsTrackStop() ||
580 gMC->IsTrackDisappeared()||
581 (fStepSum[idvol]>fStepMaxInActiveGas) ) {
582
583 if ( gMC->IsTrackExiting() ||
acc838fd 584 gMC->IsTrackStop() ||
585 gMC->IsTrackDisappeared() ) gMC->SetMaxStep(kBig);
1391e633 586
587 gMC->TrackPosition(fTrackPosition);
588 Float_t theta = fTrackMomentum.Theta();
589 Float_t phi = fTrackMomentum.Phi();
590
d7c4fbc4 591 TLorentzVector backToWire( fStepSum[idvol]/2.*sin(theta)*cos(phi),
acc838fd 592 fStepSum[idvol]/2.*sin(theta)*sin(phi),
593 fStepSum[idvol]/2.*cos(theta),0.0 );
1391e633 594 // if (GetDebug())
595 // Info("StepManager Exit","Track Position %f %f %f",fTrackPosition.X(),fTrackPosition.Y(),fTrackPosition.Z()) ;
596 // if (GetDebug())
d7c4fbc4 597 // Info("StepManager Exit ","Track backToWire %f %f %f",backToWire.X(),backToWire.Y(),backToWire.Z()) ;
598 fTrackPosition-=backToWire;
1391e633 599
600 //-------------- Angle effect
601 // Ratio between energy loss of particle and Mip as a function of BetaGamma of particle (Energy/Mass)
602
30178c30 603 Float_t betaxGamma = fTrackMomentum.P()/mass;// pc/mc2
d7c4fbc4 604 Float_t sigmaEffect10degrees;
605 Float_t sigmaEffectThetadegrees;
606 Float_t eLossParticleELossMip;
607 Float_t yAngleEffect=0.;
608 Float_t thetawires = TMath::Abs( TMath::ASin( TMath::Sin(TMath::Pi()-theta) * TMath::Sin(phi) ) );// We use Pi-theta because z is negative
609
374ebd7d 610
611 if (fAngleEffect){
30178c30 612 if ( (betaxGamma >3.2) && (thetawires*kRaddeg<=15.) ) {
613 betaxGamma=TMath::Log(betaxGamma);
614 eLossParticleELossMip = fElossRatio->Eval(betaxGamma);
1391e633 615 // 10 degrees is a reference for a model (arbitrary)
d7c4fbc4 616 sigmaEffect10degrees=fAngleEffect10->Eval(eLossParticleELossMip);// in micrometers
1391e633 617 // Angle with respect to the wires assuming that chambers are perpendicular to the z axis.
d7c4fbc4 618 sigmaEffectThetadegrees = sigmaEffect10degrees/fAngleEffectNorma->Eval(thetawires*kRaddeg); // For 5mm gap
1391e633 619 if ( (iChamber==1) || (iChamber==2) )
acc838fd 620 sigmaEffectThetadegrees/=(1.09833e+00+1.70000e-02*(thetawires*kRaddeg)); // The gap is different (4mm)
d7c4fbc4 621 yAngleEffect=1.e-04*gRandom->Gaus(0,sigmaEffectThetadegrees); // Error due to the angle effect in cm
1391e633 622 }
374ebd7d 623 }
1391e633 624
625 // One hit per chamber
5d12ce38 626 GetMUONData()->AddHit(fIshunt, gAlice->GetMCApp()->GetCurrentTrackNumber(), iChamber, ipart,
acc838fd 627 fTrackPosition.X(), fTrackPosition.Y()+yAngleEffect, fTrackPosition.Z(), 0.0,
628 fTrackMomentum.P(),theta, phi, fStepSum[idvol], fDestepSum[idvol],
629 fTrackPosition.X(),fTrackPosition.Y(),fTrackPosition.Z());
1391e633 630// if (GetDebug()){
631// Info("StepManager Exit","Particle exiting from chamber %d",iChamber);
632// Info("StepManager Exit","StepSum %f eloss geant %g ",fStepSum[idvol],fDestepSum[idvol]);
633// Info("StepManager Exit","Track Position %f %f %f",fTrackPosition.X(),fTrackPosition.Y(),fTrackPosition.Z()) ;
634// }
635 fStepSum[idvol] =0; // Reset for the next event
636 fDestepSum[idvol]=0; // Reset for the next event
637 }
abaf7c9d 638}
5f91c9e8 639
4ac9d21e 640//__________________________________________
c33d9661 641void AliMUONv1::StepManagerOld()
a9e2aefa 642{
d7c4fbc4 643 // Old Stepmanager for the chambers
a9e2aefa 644 Int_t copy, id;
acc838fd 645 static Int_t idvol =-1;
a9e2aefa 646 static Int_t vol[2];
647 Int_t ipart;
648 TLorentzVector pos;
649 TLorentzVector mom;
650 Float_t theta,phi;
651 Float_t destep, step;
abaf7c9d 652
d7c4fbc4 653 static Float_t sstep;
1e8fff9c 654 static Float_t eloss, eloss2, xhit, yhit, zhit, tof, tlength;
2eb55fab 655 const Float_t kBig = 1.e10;
a9e2aefa 656 static Float_t hits[15];
657
658 TClonesArray &lhits = *fHits;
659
660 //
a9e2aefa 661 //
662 // Only charged tracks
663 if( !(gMC->TrackCharge()) ) return;
664 //
665 // Only gas gap inside chamber
666 // Tag chambers and record hits when track enters
a9e2aefa 667 id=gMC->CurrentVolID(copy);
5f91c9e8 668 vol[0] = GetChamberId(id);
669 idvol = vol[0] -1;
670
671 if (idvol == -1) return;
672
a9e2aefa 673 //
674 // Get current particle id (ipart), track position (pos) and momentum (mom)
675 gMC->TrackPosition(pos);
676 gMC->TrackMomentum(mom);
677
678 ipart = gMC->TrackPid();
a9e2aefa 679
680 //
681 // momentum loss and steplength in last step
682 destep = gMC->Edep();
683 step = gMC->TrackStep();
abaf7c9d 684 // cout<<"------------"<<step<<endl;
a9e2aefa 685 //
686 // record hits when track enters ...
687 if( gMC->IsTrackEntering()) {
abaf7c9d 688
a9e2aefa 689 gMC->SetMaxStep(fMaxStepGas);
690 Double_t tc = mom[0]*mom[0]+mom[1]*mom[1];
691 Double_t rt = TMath::Sqrt(tc);
692 Double_t pmom = TMath::Sqrt(tc+mom[2]*mom[2]);
2eb55fab 693 Double_t tx = mom[0]/pmom;
694 Double_t ty = mom[1]/pmom;
695 Double_t tz = mom[2]/pmom;
696 Double_t s = ((AliMUONChamber*)(*fChambers)[idvol])
acc838fd 697 ->ResponseModel()
698 ->Pitch()/tz;
a9e2aefa 699 theta = Float_t(TMath::ATan2(rt,Double_t(mom[2])))*kRaddeg;
700 phi = Float_t(TMath::ATan2(Double_t(mom[1]),Double_t(mom[0])))*kRaddeg;
701 hits[0] = Float_t(ipart); // Geant3 particle type
2eb55fab 702 hits[1] = pos[0]+s*tx; // X-position for hit
703 hits[2] = pos[1]+s*ty; // Y-position for hit
704 hits[3] = pos[2]+s*tz; // Z-position for hit
a9e2aefa 705 hits[4] = theta; // theta angle of incidence
706 hits[5] = phi; // phi angle of incidence
ce3f5e87 707 hits[8] = 0;//PadHits does not exist anymore (Float_t) fNPadHits; // first padhit
a9e2aefa 708 hits[9] = -1; // last pad hit
2eb55fab 709 hits[10] = mom[3]; // hit momentum P
710 hits[11] = mom[0]; // Px
711 hits[12] = mom[1]; // Py
712 hits[13] = mom[2]; // Pz
a9e2aefa 713 tof=gMC->TrackTime();
2eb55fab 714 hits[14] = tof; // Time of flight
715 tlength = 0;
716 eloss = 0;
717 eloss2 = 0;
d7c4fbc4 718 sstep=0;
2eb55fab 719 xhit = pos[0];
720 yhit = pos[1];
721 zhit = pos[2];
681d067b 722 Chamber(idvol).ChargeCorrelationInit();
a9e2aefa 723 // Only if not trigger chamber
1e8fff9c 724
abaf7c9d 725// printf("---------------------------\n");
726// printf(">>>> Y = %f \n",hits[2]);
727// printf("---------------------------\n");
728
1e8fff9c 729
730
abaf7c9d 731 // if(idvol < AliMUONConstants::NTrackingCh()) {
acc838fd 732// //
733// // Initialize hit position (cursor) in the segmentation model
734// ((AliMUONChamber*) (*fChambers)[idvol])
735// ->SigGenInit(pos[0], pos[1], pos[2]);
abaf7c9d 736// } else {
acc838fd 737// //geant3->Gpcxyz();
738// //printf("In the Trigger Chamber #%d\n",idvol-9);
abaf7c9d 739// }
a9e2aefa 740 }
741 eloss2+=destep;
d7c4fbc4 742 sstep+=step;
abaf7c9d 743
d7c4fbc4 744 // cout<<sstep<<endl;
abaf7c9d 745
a9e2aefa 746 //
747 // Calculate the charge induced on a pad (disintegration) in case
748 //
749 // Mip left chamber ...
750 if( gMC->IsTrackExiting() || gMC->IsTrackStop() || gMC->IsTrackDisappeared()){
751 gMC->SetMaxStep(kBig);
752 eloss += destep;
753 tlength += step;
754
802a864d 755 Float_t x0,y0,z0;
756 Float_t localPos[3];
757 Float_t globalPos[3] = {pos[0], pos[1], pos[2]};
802a864d 758 gMC->Gmtod(globalPos,localPos,1);
759
2eb55fab 760 if(idvol < AliMUONConstants::NTrackingCh()) {
a9e2aefa 761// tracking chambers
acc838fd 762 x0 = 0.5*(xhit+pos[0]);
763 y0 = 0.5*(yhit+pos[1]);
764 z0 = 0.5*(zhit+pos[2]);
a9e2aefa 765 } else {
766// trigger chambers
acc838fd 767 x0 = xhit;
768 y0 = yhit;
769 z0 = 0.;
a9e2aefa 770 }
771
1e8fff9c 772
ce3f5e87 773 // if (eloss >0) MakePadHits(x0,y0,z0,eloss,tof,idvol);
a9e2aefa 774
acc838fd 775
2eb55fab 776 hits[6] = tlength; // track length
777 hits[7] = eloss2; // de/dx energy loss
778
abaf7c9d 779
ce3f5e87 780 // if (fNPadHits > (Int_t)hits[8]) {
acc838fd 781 // hits[8] = hits[8]+1;
782 // hits[9] = 0: // PadHits does not exist anymore (Float_t) fNPadHits;
ce3f5e87 783 //}
2eb55fab 784//
785// new hit
786
a9e2aefa 787 new(lhits[fNhits++])
acc838fd 788 AliMUONHit(fIshunt, gAlice->GetMCApp()->GetCurrentTrackNumber(), vol,hits);
a9e2aefa 789 eloss = 0;
790 //
791 // Check additional signal generation conditions
792 // defined by the segmentation
a75f073c 793 // model (boundary crossing conditions)
794 // only for tracking chambers
a9e2aefa 795 } else if
a75f073c 796 ((idvol < AliMUONConstants::NTrackingCh()) &&
797 ((AliMUONChamber*) (*fChambers)[idvol])->SigGenCond(pos[0], pos[1], pos[2]))
a9e2aefa 798 {
799 ((AliMUONChamber*) (*fChambers)[idvol])
acc838fd 800 ->SigGenInit(pos[0], pos[1], pos[2]);
802a864d 801
802 Float_t localPos[3];
803 Float_t globalPos[3] = {pos[0], pos[1], pos[2]};
804 gMC->Gmtod(globalPos,localPos,1);
805
e0f71fb7 806 eloss += destep;
802a864d 807
ce3f5e87 808 // if (eloss > 0 && idvol < AliMUONConstants::NTrackingCh())
acc838fd 809 // MakePadHits(0.5*(xhit+pos[0]),0.5*(yhit+pos[1]),pos[2],eloss,tof,idvol);
a9e2aefa 810 xhit = pos[0];
811 yhit = pos[1];
e0f71fb7 812 zhit = pos[2];
813 eloss = 0;
a9e2aefa 814 tlength += step ;
815 //
816 // nothing special happened, add up energy loss
817 } else {
818 eloss += destep;
819 tlength += step ;
820 }
821}