]> git.uio.no Git - u/mrichter/AliRoot.git/blame - STEER/AliLego.cxx
Use RemoveAt method instead of delete to remove objects from TClonesArray.
[u/mrichter/AliRoot.git] / STEER / AliLego.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
16/*
17$Log$
5f3dc1c9 18Revision 1.24 2001/05/21 08:39:13 morsch
19Use fStepBack = 1 only in debug mode.
20
19237f5f 21Revision 1.23 2001/05/20 10:10:39 morsch
22- Debug output at the beginning of new event and end of run.
23- Filter out boundary loops.
24
a74d2699 25Revision 1.22 2001/05/11 13:22:40 morsch
26If run with debug option (from gAlice) geantinos are sent back and volume sequence forward/backward is compared.
27Can be very verbous in some cases.
28
7eb618fa 29Revision 1.21 2000/12/15 10:33:59 morsch
30Invert coordinates to make meaningful zylindrical plots.
31
10bd7535 32Revision 1.20 2000/11/30 07:12:48 alibrary
33Introducing new Rndm and QA classes
34
65fb704d 35Revision 1.19 2000/10/26 14:13:05 morsch
36- Change from coordinates theta, phi to general coordinates Coor1 and Coor2.
37- Lego generator instance can be passed in constructor.
38
0b27b8c7 39Revision 1.18 2000/10/02 21:28:14 fca
40Removal of useless dependecies via forward declarations
41
94de3818 42Revision 1.17 2000/07/12 08:56:25 fca
43Coding convention correction and warning removal
44
8918e700 45Revision 1.16 2000/05/26 08:35:03 fca
46Move the check on z after z has been retrieved
47
119a6af6 48Revision 1.15 2000/05/16 13:10:40 fca
49New method IsNewTrack and fix for a problem in Father-Daughter relations
50
a01a8b12 51Revision 1.14 2000/04/27 10:38:21 fca
52Correct termination of Lego Run and introduce Lego getter in AliRun
53
838edcaf 54Revision 1.13 2000/04/26 10:17:31 fca
55Changes in Lego for G4 compatibility
56
dffd31ef 57Revision 1.12 2000/04/07 11:12:33 fca
58G4 compatibility changes
59
875c717b 60Revision 1.11 2000/03/22 13:42:26 fca
61SetGenerator does not replace an existing generator, ResetGenerator does
62
ee1dd322 63Revision 1.10 2000/02/23 16:25:22 fca
64AliVMC and AliGeant3 classes introduced
65ReadEuclid moved from AliRun to AliModule
66
b13db077 67Revision 1.9 1999/12/03 10:54:01 fca
68Fix lego summary
69
00719c1b 70Revision 1.8 1999/10/01 09:54:33 fca
71Correct logics for Lego StepManager
72
f059c84a 73Revision 1.7 1999/09/29 09:24:29 fca
74Introduction of the Copyright and cvs Log
75
4c039060 76*/
77
fe4da5cc 78//////////////////////////////////////////////////////////////
79//////////////////////////////////////////////////////////////
80//
81// Utility class to evaluate the material budget from
82// a given radius to the surface of an arbitrary cylinder
83// along radial directions from the centre:
84//
85// - radiation length
86// - Interaction length
87// - g/cm2
88//
89// Geantinos are shot in the bins in the fNtheta bins in theta
90// and fNphi bins in phi with specified rectangular limits.
91// The statistics are accumulated per
92// fRadMin < r < fRadMax and <0 < z < fZMax
93//
94// To activate this option, you can do:
95// Root > gAlice.RunLego();
96// or Root > .x menu.C then select menu item "RunLego"
97// Note that when calling gAlice->RunLego, an optional list
98// of arguments may be specified.
99//
100//Begin_Html
101/*
1439f98e 102<img src="picts/alilego.gif">
fe4da5cc 103*/
104//End_Html
105//
106//////////////////////////////////////////////////////////////
107
108#include "TMath.h"
94de3818 109
1578254f 110#include "AliLego.h"
a74d2699 111
7eb618fa 112#include "AliDebugVolume.h"
113#include "AliRun.h"
8918e700 114#include "AliLegoGenerator.h"
fe4da5cc 115#include "AliConst.h"
875c717b 116#include "AliMC.h"
94de3818 117#include "TH2.h"
a74d2699 118#include "../TGeant3/TGeant3.h"
7eb618fa 119#include "TString.h"
120#include "TClonesArray.h"
121
fe4da5cc 122ClassImp(AliLego)
123
124
125//___________________________________________
126AliLego::AliLego()
127{
8918e700 128 //
129 // Default constructor
130 //
131 fHistRadl = 0;
132 fHistAbso = 0;
133 fHistGcm2 = 0;
134 fHistReta = 0;
fe4da5cc 135}
136
137//___________________________________________
0b27b8c7 138AliLego::AliLego(const char *title, Int_t ntheta, Float_t thetamin,
139 Float_t thetamax, Int_t nphi, Float_t phimin, Float_t phimax,
b13db077 140 Float_t rmin, Float_t rmax, Float_t zmax)
141 : TNamed("Lego Generator",title)
fe4da5cc 142{
8918e700 143 //
144 // specify the angular limits and the size of the rectangular box
145 //
0b27b8c7 146 fGener = new AliLegoGenerator(ntheta, thetamin, thetamax,
b13db077 147 nphi, phimin, phimax, rmin, rmax, zmax);
148
b13db077 149
0b27b8c7 150
b13db077 151 fHistRadl = new TH2F("hradl","Radiation length map",
0b27b8c7 152 ntheta,thetamin,thetamax,nphi,phimin,phimax);
b13db077 153 fHistAbso = new TH2F("habso","Interaction length map",
0b27b8c7 154 ntheta,thetamin,thetamax,nphi,phimin,phimax);
b13db077 155 fHistGcm2 = new TH2F("hgcm2","g/cm2 length map",
0b27b8c7 156 ntheta,thetamin,thetamax,nphi,phimin,phimax);
7eb618fa 157//
19237f5f 158 fStepBack = 0;
159 fStepsBackward = 0;
160 fStepsForward = 0;
161 fStepBack = 0;
7eb618fa 162 fVolumesFwd = new TClonesArray("AliDebugVolume",1000);
163 fVolumesBwd = new TClonesArray("AliDebugVolume",1000);
19237f5f 164 fDebug = gAlice->GetDebug();
165 fErrorCondition = 0;
0b27b8c7 166}
167
168AliLego::AliLego(const char *title, AliLegoGenerator* generator)
169 : TNamed("Lego Generator",title)
170{
171 //
172 // specify the angular limits and the size of the rectangular box
173 //
174 fGener = generator;
175 Float_t c1min, c1max, c2min, c2max;
176 Int_t n1 = fGener->NCoor1();
177 Int_t n2 = fGener->NCoor2();
178
179 fGener->Coor1Range(c1min, c1max);
180 fGener->Coor2Range(c2min, c2max);
b13db077 181
0b27b8c7 182 fHistRadl = new TH2F("hradl","Radiation length map",
10bd7535 183 n2, c2min, c2max, n1, c1min, c1max);
0b27b8c7 184 fHistAbso = new TH2F("habso","Interaction length map",
10bd7535 185 n2, c2min, c2max, n1, c1min, c1max);
0b27b8c7 186 fHistGcm2 = new TH2F("hgcm2","g/cm2 length map",
10bd7535 187 n2, c2min, c2max, n1, c1min, c1max);
7eb618fa 188//
189//
190 fStepBack = 0;
191 fStepsBackward = 0;
192 fStepsForward = 0;
193 fStepBack = 0;
194 fVolumesFwd = new TClonesArray("AliDebugVolume",1000);
195 fVolumesBwd = new TClonesArray("AliDebugVolume",1000);
19237f5f 196 fDebug = gAlice->GetDebug();
a74d2699 197 fErrorCondition =0;
fe4da5cc 198}
199
200//___________________________________________
201AliLego::~AliLego()
202{
8918e700 203 //
204 // Destructor
205 //
206 delete fHistRadl;
207 delete fHistAbso;
208 delete fHistGcm2;
8918e700 209 delete fGener;
7eb618fa 210 if (fVolumesFwd) delete fVolumesFwd;
211 if (fVolumesBwd) delete fVolumesBwd;
fe4da5cc 212}
213
b13db077 214//___________________________________________
dffd31ef 215void AliLego::BeginEvent()
b13db077 216{
8918e700 217 //
218 // --- Set to 0 radiation length, absorption length and g/cm2 ---
219 //
dffd31ef 220 fTotRadl = 0;
221 fTotAbso = 0;
222 fTotGcm2 = 0;
19237f5f 223
a74d2699 224 if (fDebug) {
225 if (fErrorCondition) DumpVolumes();
226 fVolumesFwd->Delete();
227 fVolumesBwd->Delete();
228 fStepsForward = 0;
229 fStepsBackward = 0;
230 fErrorCondition = 0;
231 if (gAlice->CurrentTrack() == 0) fStepBack = 0;
232 }
dffd31ef 233}
234
235//___________________________________________
236void AliLego::FinishEvent()
237{
8918e700 238 //
239 // Finish the event and update the histos
240 //
0b27b8c7 241 Double_t c1, c2;
242 c1 = fGener->CurCoor1();
243 c2 = fGener->CurCoor2();
10bd7535 244 fHistRadl->Fill(c2,c1,fTotRadl);
245 fHistAbso->Fill(c2,c1,fTotAbso);
246 fHistGcm2->Fill(c2,c1,fTotGcm2);
b13db077 247}
248
dffd31ef 249//___________________________________________
250void AliLego::FinishRun()
251{
8918e700 252 //
253 // Store histograms in current Root file
254 //
dffd31ef 255 fHistRadl->Write();
256 fHistAbso->Write();
257 fHistGcm2->Write();
dffd31ef 258
259 // Delete histograms from memory
260 fHistRadl->Delete(); fHistRadl=0;
261 fHistAbso->Delete(); fHistAbso=0;
262 fHistGcm2->Delete(); fHistGcm2=0;
a74d2699 263 //
264 if (fErrorCondition) DumpVolumes();
dffd31ef 265}
266
8918e700 267//___________________________________________
268void AliLego::Copy(AliLego &lego) const
269{
270 //
271 // Copy *this onto lego -- not implemented
272 //
273 Fatal("Copy","Not implemented!\n");
274}
dffd31ef 275
b13db077 276//___________________________________________
7eb618fa 277void AliLego::StepManager() {
b13db077 278// called from AliRun::Stepmanager from gustep.
279// Accumulate the 3 parameters step by step
a74d2699 280
7eb618fa 281 static Float_t t;
282 Float_t a,z,dens,radl,absl;
283 Int_t i, id, copy;
284 const char* vol;
285 static Float_t vect[3], dir[3];
a01a8b12 286
7eb618fa 287 TString tmp1, tmp2;
288 copy = 1;
289 id = gMC->CurrentVolID(copy);
290 vol = gMC->VolName(id);
291 Float_t step = gMC->TrackStep();
7eb618fa 292
293 TLorentzVector pos, mom;
b13db077 294 gMC->TrackPosition(pos);
295 gMC->TrackMomentum(mom);
7eb618fa 296
297 Int_t status = 0;
298 if (gMC->IsTrackEntering()) status = 1;
a74d2699 299 if (gMC->IsTrackExiting()) status = 2;
0b27b8c7 300
a74d2699 301
302
303
7eb618fa 304 if (! fStepBack) {
5f3dc1c9 305 printf("\n volume %s %d", vol, status);
7eb618fa 306//
307// Normal Forward stepping
308//
309 if (fDebug) {
a74d2699 310// printf("\n steps fwd %d %s %d %f", fStepsForward, vol, fErrorCondition, step);
311
7eb618fa 312//
313// store volume if different from previous
314//
315
a74d2699 316 TClonesArray &lvols = *fVolumesFwd;
7eb618fa 317 if (fStepsForward > 0) {
318 AliDebugVolume* tmp = (AliDebugVolume*) (*fVolumesFwd)[fStepsForward-1];
a74d2699 319 if (tmp->IsEqual(vol, copy) && gMC->IsTrackEntering()) {
a74d2699 320 fStepsForward -= 2;
5f3dc1c9 321 fVolumesFwd->RemoveAt(fStepsForward);
322 fVolumesFwd->RemoveAt(fStepsForward+1);
a74d2699 323 }
7eb618fa 324 }
a74d2699 325
326 new(lvols[fStepsForward++])
327 AliDebugVolume(vol,copy,step,pos[0], pos[1], pos[2], status);
328
7eb618fa 329 } // Debug
330//
331// Get current material properties
b13db077 332
7eb618fa 333 gMC->CurrentMaterial(a,z,dens,radl,absl);
334
335 if (z < 1) return;
336
337// --- See if we have to stop now
338 if (TMath::Abs(pos[2]) > fGener->ZMax() ||
339 pos[0]*pos[0] +pos[1]*pos[1] > fGener->RadMax()*fGener->RadMax()) {
340 if (!gMC->IsNewTrack()) {
341 // Not the first step, add past contribution
342 fTotAbso += t/absl;
343 fTotRadl += t/radl;
344 fTotGcm2 += t*dens;
7eb618fa 345 if (fDebug) {
346//
347// generate "mirror" particle flying back
348//
349 fStepsBackward = fStepsForward;
350
351 Float_t pmom[3], orig[3];
352 Float_t polar[3] = {0.,0.,0.};
353 Int_t ntr;
354 pmom[0] = -dir[0];
355 pmom[1] = -dir[1];
356 pmom[2] = -dir[2];
357 orig[0] = vect[0];
358 orig[1] = vect[1];
359 orig[2] = vect[2];
360
361 gAlice->SetTrack(1, gAlice->CurrentTrack(),
362 0, pmom, orig, polar, 0., kPNoProcess, ntr);
363 } // debug
364
365 } // not a new track !
366
19237f5f 367 if (fDebug) fStepBack = 1;
7eb618fa 368 gMC->StopTrack();
369 return;
370 } // outside scoring region ?
371
b13db077 372// --- See how long we have to go
7eb618fa 373 for(i=0;i<3;++i) {
374 vect[i]=pos[i];
375 dir[i]=mom[i];
376 }
377
378 t = fGener->PropagateCylinder(vect,dir,fGener->RadMax(),fGener->ZMax());
379
380 if(step) {
19237f5f 381
7eb618fa 382 fTotAbso += step/absl;
383 fTotRadl += step/radl;
384 fTotGcm2 += step*dens;
385 }
386
387
388 } else {
389 if (fDebug) {
390//
391// Geometry debugging
392// Fly back and compare volume sequence
393//
a74d2699 394 TClonesArray &lvols = *fVolumesBwd;
7eb618fa 395 if (fStepsBackward < fStepsForward) {
396 AliDebugVolume* tmp = (AliDebugVolume*) (*fVolumesBwd)[fStepsBackward];
a74d2699 397 if (tmp->IsEqual(vol, copy) && gMC->IsTrackEntering()) {
398 fStepsBackward += 2;
5f3dc1c9 399 fVolumesBwd->RemoveAt(fStepsBackward-1);
400 fVolumesBwd->RemoveAt(fStepsBackward-2);
7eb618fa 401 }
402 }
a74d2699 403
7eb618fa 404 fStepsBackward--;
a74d2699 405// printf("\n steps %d %s %d", fStepsBackward, vol, fErrorCondition);
7eb618fa 406 if (fStepsBackward < 0) {
407 gMC->StopTrack();
a74d2699 408 fStepBack = 0;
7eb618fa 409 return;
410 }
411
7eb618fa 412 new(lvols[fStepsBackward]) AliDebugVolume(vol,copy,step,pos[0], pos[1], pos[2], status);
413
414 AliDebugVolume* tmp = (AliDebugVolume*) (*fVolumesFwd)[fStepsBackward];
415 if (! (tmp->IsEqual(vol, copy)) && (!fErrorCondition))
416 {
417 printf("\n Problem at (x,y,z): %d %f %f %f, volumes: %s %s step: %f\n",
418 fStepsBackward, pos[0], pos[1], pos[2], tmp->GetName(), vol, step);
419 fErrorCondition = 1;
420 }
421 } // Debug
422 } // bwd/fwd
b13db077 423}
424
a74d2699 425void AliLego::DumpVolumes()
426{
427//
428// Dump volume sequence in case of error
429//
430 printf("\n Dumping Volume Sequence:");
431 printf("\n ==============================================");
432
433 for (Int_t i = fStepsForward-1; i>=0; i--)
434 {
435 AliDebugVolume* tmp1 = (AliDebugVolume*) (*fVolumesFwd)[i];
436 AliDebugVolume* tmp2 = (AliDebugVolume*) (*fVolumesBwd)[i];
437 printf("\n Volume Fwd: %3d: %5s (%3d) step: %12.5e (x,y,z) (%12.5e %12.5e %12.5e) status: %9s\n"
438 , i,
439 tmp1->GetName(), tmp1->CopyNumber(), tmp1->Step(),
440 tmp1->X(), tmp1->Y(), tmp1->Z(), tmp1->Status());
441
442 printf("\n Volume Bwd: %3d: %5s (%3d) step: %12.5e (x,y,z) (%12.5e %12.5e %12.5e) status: %9s\n"
443 , i,
444 tmp2->GetName(), tmp2->CopyNumber(), tmp2->Step(),
445 tmp2->X(), tmp2->Y(), tmp2->Z(), tmp2->Status());
446
447 printf("\n ............................................................................\n");
448 }
449 printf("\n ==============================================\n");
450}
0b27b8c7 451
452
453
454
7eb618fa 455
456
457