]> git.uio.no Git - u/mrichter/AliRoot.git/blob - EMCAL/AliEMCALv2.cxx
Discard STAR type geometry before MDC
[u/mrichter/AliRoot.git] / EMCAL / AliEMCALv2.cxx
1 /**************************************************************************
2  * Copyright(c) 1998-2004, 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 /* $Id$ */
17
18 //_________________________________________________________________________
19 //*-- Implementation version v2 of EMCAL Manager class; SHASHLYK version
20 //*-- An object of this class does not produce digits
21 //*-- It is the one to use if you do want to produce outputs in TREEH 
22 //*--                  
23 //*-- Author : Aleksei Pavlinov (WSU)
24
25 // This Class not stores information on all particles prior to EMCAL entry - in order to facilitate analysis.
26 // This is done by setting fIShunt =2, and flagging all parents of particles entering the EMCAL.
27
28 // --- ROOT system ---
29 #include "TParticle.h"
30 #include "TVirtualMC.h"
31 #include "TBrowser.h"
32 #include "TH1.h"
33 #include "TH2.h"
34
35 // --- Standard library ---
36
37 // --- AliRoot header files ---
38 #include "AliEMCALv2.h"
39 #include "AliEMCALHit.h"
40 #include "AliEMCALGeometry.h"
41 #include "AliRun.h"
42 #include "AliHeader.h"
43 #include "AliMC.h"
44 #include "AliPoints.h"
45 #include "AliEMCALGetter.h"
46 // for TRD1,2 case
47
48 ClassImp(AliEMCALv2)
49
50   //extern "C" void gdaxis_(float &x0, float &y0, float &z0, float &axsiz);
51
52
53 //______________________________________________________________________
54 AliEMCALv2::AliEMCALv2():AliEMCALv1(), fGeometry(0){
55   // ctor
56
57 }
58
59 //______________________________________________________________________
60 AliEMCALv2::AliEMCALv2(const char *name, const char *title): AliEMCALv1(name,title) {
61     // Standard Creator.
62
63     fHits= new TClonesArray("AliEMCALHit",1000);
64     gAlice->GetMCApp()->AddHitList(fHits);
65
66     fNhits    = 0;
67     fIshunt   = 2; // All hits are associated with particles entering the calorimeter
68     fTimeCut  = 30e-09;
69
70     fGeometry = GetGeometry(); 
71     fHDe = fHNhits = 0;
72     //    if (gDebug>0){
73     if (1){
74       TH1::AddDirectory(0);
75       fHDe = new TH1F("fHDe","De in EMCAL", 1000, 0., 1.);
76       fHNhits = new TH1F("fHNhits","#hits in EMCAL", 2001, -0.5, 2000.5);
77       fHistograms->Add(fHDe);
78       fHistograms->Add(fHNhits);
79       TH1::AddDirectory(1);
80     }
81 }
82
83 //______________________________________________________________________
84 AliEMCALv2::~AliEMCALv2(){
85     // dtor
86
87     if ( fHits) {
88         fHits->Delete();
89         delete fHits;
90         fHits = 0;
91     }
92 }
93
94 //______________________________________________________________________
95 void AliEMCALv2::AddHit(Int_t shunt, Int_t primary, Int_t tracknumber, Int_t iparent, Float_t ienergy, 
96                         Int_t id, Float_t * hits,Float_t * p){
97     // Add a hit to the hit list.
98     // An EMCAL hit is the sum of all hits in a tower section
99     //   originating from the same entering particle 
100     static Int_t hitCounter;
101     static AliEMCALHit *newHit, *curHit;
102     static Bool_t deja;
103
104     deja = kFALSE;
105
106     newHit = new AliEMCALHit(shunt, primary, tracknumber, iparent, ienergy, id, hits, p);
107     for ( hitCounter = fNhits-1; hitCounter >= 0 && !deja; hitCounter-- ) {
108         curHit = (AliEMCALHit*) (*fHits)[hitCounter];
109         // We add hits with the same tracknumber, while GEANT treats
110         // primaries succesively
111         if(curHit->GetPrimary() != primary) 
112           break;
113         if( *curHit == *newHit ) {
114             *curHit = *curHit + *newHit;
115             deja = kTRUE;
116             //            break; // 30-aug-04 by PAI 
117         } // end if
118     } // end for hitCounter
119     
120     if ( !deja ) {
121         new((*fHits)[fNhits]) AliEMCALHit(*newHit);
122         fNhits++;
123     }
124     //    printf(" fNhits %i \n", fNhits); 
125     delete newHit;
126 }
127 //______________________________________________________________________
128 void AliEMCALv2::StepManager(void){
129   // Accumulates hits as long as the track stays in a tower
130
131   // position wrt MRS and energy deposited
132   static Float_t        xyzte[5]={0.,0.,0.,0.,0.};// position wrt MRS, time and energy deposited
133   static Float_t        pmom[4]={0.,0.,0.,0.};
134   static TLorentzVector pos; // Lorentz vector of the track current position.
135   static TLorentzVector mom; // Lorentz vector of the track current momentum.
136   static Float_t ienergy = 0;
137   static TString curVolName;
138   static int supModuleNumber, moduleNumber, yNumber, xNumber, absid;
139   static int keyGeom=0;
140   static char *vn = "SX"; // 15-mar-05
141   static int nSMOP[7]={1,3,5,7,9,11}; // 30-mar-05
142   static int nSMON[7]={2,4,6,8,10,12};
143   static Float_t depositedEnergy=0.0; 
144
145   if(keyGeom == 0) {
146     keyGeom = 2;
147     if(gMC->VolId("PBMO")==0 || gMC->VolId("WSUC")==1) {
148       vn      = "SCMX";   // old TRD2(TRD1) or WSUC
149       keyGeom = 1;
150     }    
151     printf("AliEMCALv2::StepManager():  keyGeom %i : Sensetive volume %s \n", 
152     keyGeom, vn); 
153     if(gMC->VolId("WSUC")==1) printf(" WSUC - cosmic ray stand geometry \n");
154   }
155   Int_t tracknumber =  gAlice->GetMCApp()->GetCurrentTrackNumber();
156
157   curVolName = gMC->CurrentVolName();
158   if(curVolName.Contains(vn)) { // We are in a scintillator layer
159     //    printf(" keyGeom %i : Sensetive volume %s (%s) \n", keyGeom, curVolName.Data(), vn); 
160     
161     if( ((depositedEnergy = gMC->Edep()) > 0.)  && (gMC->TrackTime() < fTimeCut)){// Track is inside a scintillator and deposits some energy
162       //       Info("StepManager "," entry %i DE %f",++ientry, depositedEnergy); // for testing
163        if (fCurPrimary==-1) 
164         fCurPrimary=gAlice->GetMCApp()->GetPrimary(tracknumber);
165
166       if (fCurParent==-1 || tracknumber != fCurTrack) {
167         // Check parentage
168         Int_t parent=tracknumber;
169         if (fCurParent != -1) {
170           while (parent != fCurParent && parent != -1) {
171             TParticle *part=gAlice->GetMCApp()->Particle(parent);
172             parent=part->GetFirstMother();
173           }
174         }
175         if (fCurParent==-1 || parent==-1) {
176           Int_t parent=tracknumber;
177           TParticle *part=gAlice->GetMCApp()->Particle(parent);
178           while (parent != -1 && fGeometry->IsInEMCAL(part->Vx(),part->Vy(),part->Vz())) {
179             parent=part->GetFirstMother();
180             if (parent!=-1) 
181               part=gAlice->GetMCApp()->Particle(parent);
182           } 
183           fCurParent=parent;
184           if (fCurParent==-1)
185             Error("StepManager","Cannot find parent");
186           else {
187             TParticle *part=gAlice->GetMCApp()->Particle(fCurParent);
188             ienergy = part->Energy(); 
189           }
190           while (parent != -1) {
191             part=gAlice->GetMCApp()->Particle(parent);
192             part->SetBit(kKeepBit);
193             parent=part->GetFirstMother();
194           }
195         }
196         fCurTrack=tracknumber;
197       }    
198       gMC->TrackPosition(pos);
199       xyzte[0] = pos[0];
200       xyzte[1] = pos[1];
201       xyzte[2] = pos[2];
202       xyzte[3] = gMC->TrackTime() ;       
203       
204       gMC->TrackMomentum(mom);
205       pmom[0] = mom[0];
206       pmom[1] = mom[1];
207       pmom[2] = mom[2];
208       pmom[3] = mom[3];
209       
210       //      if(ientry%200 > 0) return; // testing
211       supModuleNumber = moduleNumber = yNumber = xNumber = absid = 0;
212       if(keyGeom >= 1) { // old style
213         gMC->CurrentVolOffID(4, supModuleNumber);
214         gMC->CurrentVolOffID(3, moduleNumber);
215         gMC->CurrentVolOffID(1, yNumber);
216         gMC->CurrentVolOffID(0, xNumber); // really x number now
217         if(strcmp(gMC->CurrentVolOffName(4),"SM10")==0) supModuleNumber += 10; // 13-oct-05
218       } else {
219         gMC->CurrentVolOffID(5, supModuleNumber);
220         gMC->CurrentVolOffID(4, moduleNumber);
221         gMC->CurrentVolOffID(1, yNumber);
222         gMC->CurrentVolOffID(0, xNumber);
223         if     (strcmp(gMC->CurrentVolOffName(5),"SMOP")==0) supModuleNumber = nSMOP[supModuleNumber-1];
224         else if(strcmp(gMC->CurrentVolOffName(5),"SMON")==0) supModuleNumber = nSMON[supModuleNumber-1];
225         else   assert(0); // something wrong
226       }
227       absid = fGeometry->GetAbsCellId(supModuleNumber, moduleNumber, yNumber, xNumber);
228     
229       if (absid == -1) Fatal("StepManager()", "Wrong id ") ;
230
231       Float_t lightYield =  depositedEnergy ;
232       // Apply Birk's law (copied from G3BIRK)
233
234       if (gMC->TrackCharge()!=0) { // Check
235           Float_t BirkC1_mod = 0;
236         if (fBirkC0==1){ // Apply correction for higher charge states
237           if (TMath::Abs(gMC->TrackCharge())>=2) BirkC1_mod=fBirkC1*7.2/12.6;
238           else                                    BirkC1_mod=fBirkC1;
239         }
240
241         Float_t dedxcm;
242         if (gMC->TrackStep()>0)  dedxcm=1000.*gMC->Edep()/gMC->TrackStep();
243         else                     dedxcm=0;
244         lightYield=lightYield/(1.+BirkC1_mod*dedxcm+fBirkC2*dedxcm*dedxcm);
245       } 
246
247       // use sampling fraction to get original energy --HG
248       //      xyzte[4] = lightYield * fGeometry->GetSampling();
249       xyzte[4] = lightYield; // 15-dec-04
250         
251       if (gDebug == -2) 
252       printf("#sm %2i #m %3i #x %1i #z %1i -> absid %i : xyzte[4] = %f\n",
253       supModuleNumber,moduleNumber,yNumber,xNumber,absid, xyzte[4]);
254
255       AddHit(fIshunt, fCurPrimary,tracknumber, fCurParent, ienergy, absid,  xyzte, pmom);
256     } // there is deposited energy
257   }
258 }
259
260 void AliEMCALv2::FinishEvent()
261 { // 26-may-05
262   static double de=0.;
263   fHNhits->Fill(double(fHits->GetEntries()));
264   de = GetDepositEnergy(0);
265   if(fHDe) fHDe->Fill(de);
266 }
267
268 Double_t AliEMCALv2::GetDepositEnergy(int print)
269 { // 23-mar-05 - for testing
270   if(fHits == 0) return 0.;
271   AliEMCALHit  *hit=0;
272   Double_t de=0.;
273   for(int ih=0; ih<fHits->GetEntries(); ih++) {
274     hit = (AliEMCALHit*)fHits->UncheckedAt(ih);
275     de += hit->GetEnergy();
276   }
277   if(print>0) {
278     cout<<"AliEMCALv2::GetDepositEnergy() : fHits "<<fHits<<endl; 
279     printf(" #hits %i de %f \n", fHits->GetEntries(), de);
280     if(print>1) {
281       printf(" #primary particles %i\n", gAlice->GetHeader()->GetNprimary()); 
282     }
283   }
284   return de;
285 }
286
287 void AliEMCALv2::Browse(TBrowser* b)
288 {
289   TObject::Browse(b);
290 }
291
292 void AliEMCALv2::DrawCalorimeterCut(const char *name, int axis, double dcut)
293 { // Size of tower is 5.6x5.6x24.8 (25.0); cut on Z axiz
294   TString g(fGeometry->GetName());
295   g.ToUpper();
296   gMC->Gsatt("*", "seen", 0);
297
298   int fill = 1;
299
300   if(axis!=1) SetVolumeAttributes("STPL", 1, 1, fill);
301
302   int colo=4;
303   TString sn(name);
304   if(sn.Contains("SCM")) colo=5;
305   SetVolumeAttributes(name, 1, colo, fill);
306   if(g.Contains("110DEG") && sn=="SMOD") SetVolumeAttributes("SM10", 1, colo, fill);
307
308   TString st(GetTitle());
309   st += ", zcut, ";
310   st += name;
311
312   char *optShad = "on", *optHide="on";
313   double cxy=0.02;
314   if     (axis==1) {
315     dcut = 0.;
316     //    optHide = optShad = "off";
317   } else if(axis==2){
318     if(dcut==0.) SetVolumeAttributes("SCM0", 1, 5, fill); // yellow    
319   }
320
321   gMC->Gdopt("hide", optHide);
322   gMC->Gdopt("shad", optShad);
323
324   gROOT->ProcessLine("TGeant3 *g3 = (TGeant3*)gMC");
325   char cmd[200];
326   sprintf(cmd,"g3->Gdrawc(\"XEN1\", %i, %5.1f, 12., 8., %3.2f, %3.2f)\n", axis, dcut, cxy,cxy);
327   printf("\n%s\n",cmd); gROOT->ProcessLine(cmd);
328
329   sprintf(cmd,"gMC->Gdhead(1111, \"%s\")\n", st.Data());
330   printf("%s\n",cmd); gROOT->ProcessLine(cmd);
331 }
332
333 void AliEMCALv2::DrawSuperModuleCut(const char *name, int axis, double dcut, int fill)
334 { // Size of tower is 5.6x5.6x24.8 (25.0); cut on Z axiz
335   TString sn(GetGeometry()->GetName());
336   sn.ToUpper();
337   char *tit[3]={"xcut", "ycut", "zcut"};
338   if(axis<1) axis=1; if(axis>3) axis=3;
339
340   gMC->Gsatt("*", "seen", 0);
341   //  int fill = 6;
342
343   // SetVolumeAttributes("SMOD", 1, 1, fill);  // black
344   SetVolumeAttributes(name, 1, 5, fill);    // yellow 
345
346   double cxy=0.055, x0=10., y0=10.;
347   char *optShad = "on", *optHide="on";
348   if(sn.Contains("TRD1")) {
349     SetVolumeAttributes("STPL", 1, 3, fill);  // green 
350     if     (axis==1) {
351       gMC->Gsatt("STPL", "seen", 0);
352       dcut = 0.;
353       optHide = "off";
354       optShad = "off";
355     } else if(axis==3) cxy = 0.1;
356   } else if(sn.Contains("TRD2")) {
357     y0 = -10.;
358     if (axis==2) cxy=0.06;
359   }
360   gMC->Gdopt("hide", optHide);
361   gMC->Gdopt("shad", optShad);
362
363   TString st("Shish-Kebab, Compact, SMOD, ");
364   if(sn.Contains("TWIST")) st = "Shish-Kebab, Twist, SMOD, ";
365   st += tit[axis-1];;
366
367   gROOT->ProcessLine("TGeant3 *g3 = (TGeant3*)gMC");
368   char cmd[200];
369   sprintf(cmd,"g3->Gdrawc(\"SMOD\", %i, %6.3f, %5.1f, %5.1f, %5.3f, %5.3f)\n",axis,dcut,x0,y0,cxy,cxy);
370   printf("\n%s\n",cmd); gROOT->ProcessLine(cmd);
371
372   sprintf(cmd,"gMC->Gdhead(1111, \"%s\")\n", st.Data());
373   printf("%s\n",cmd); gROOT->ProcessLine(cmd);
374   // hint for testing
375   if(sn.Contains("TRD1")){
376     printf("Begin of super module\n");
377     printf("g3->Gdrawc(\"SMOD\", 2,  0.300, 89., 10., 0.5, 0.5)\n");
378     printf("Center of super modules\n");
379     printf("g3->Gdrawc(\"SMOD\", 2,  0.300, 0., 10., 0.5, 0.5)\n");
380     printf("end of super modules\n");
381     printf("g3->Gdrawc(\"SMOD\", 2,  0.300, -70., 10., 0.5, 0.5)\n");
382   } else if(sn.Contains("TRD2")){
383     printf("Begin of super module  ** TRD2 ** \n");
384     printf("g3->Gdrawc(\"SMOD\", 2,  0.00,  40., -80, 0.2, 0.2)\n");
385     printf("end of super modules\n");
386     printf("g3->Gdrawc(\"SMOD\", 2,  0.00, -20., -80, 0.2, 0.2)\n");
387
388     printf(" ***  Z cut (Y|X plane)\n scale 0.4\n");
389     printf("g3->Gdrawc(\"SMOD\", 3,  -170.,-165.,10.,0.4,0.4)\n");
390     printf(" scale 0.2\n");
391     printf("g3->Gdrawc(\"SMOD\", 3,  -170.,-80.,10.,0.2,0.2)\n");
392     printf(" scale 0.12\n");
393     printf("g3->Gdrawc(\"SMOD\", 3,   -170.,-45.,10.,0.12,0.12)\n");
394   }
395 }
396
397 void AliEMCALv2::DrawTowerCut(const char *name, int axis, double dcut, int fill, char *optShad)
398 { // Size of tower is 5.6x5.6x24.8 (25.0); cut on Z axiz
399   if(axis<1) axis=1; if(axis>3) axis=3;
400   TString mn(name); mn.ToUpper();
401   TString sn(GetGeometry()->GetName());
402
403   gMC->Gsatt("*", "seen", 0);
404   gMC->Gsatt("*", "fill", fill);
405
406   // int mainColo=5; // yellow
407   if(mn == "EMOD") {
408     SetVolumeAttributes(mn.Data(), 1, 1, fill);
409     SetVolumeAttributes("SCM0", 1, 5, fill); // yellow
410     SetVolumeAttributes("SCPA", 1, 3, fill); // green - 13-may-05
411   } else if(mn == "SCM0") { // first division 
412     SetVolumeAttributes(mn.Data(), 1, 1, fill);
413     SetVolumeAttributes("SCMY", 1, 5, fill); // yellow
414   } else if(mn == "SCMY") { // first division 
415     SetVolumeAttributes(mn.Data(), 1, 1, fill); 
416     if(sn.Contains("TEST") && sn.Contains("3X3")) {
417       SetVolumeAttributes("SCX1", 1, 5, fill); // yellow
418       SetVolumeAttributes("SCX2", 1, 2, fill); // red
419       SetVolumeAttributes("SCX3", 1, 3, fill); // green
420     } else {
421       SetVolumeAttributes("SCMX", 1, 5, fill); // yellow
422     }
423   } else if(mn == "SCMX" || mn.Contains("SCX")) {
424     SetVolumeAttributes(mn.Data(), 1, 5, fill);// yellow
425     SetVolumeAttributes("PBTI", 1, 4, fill);
426   } else {
427     printf("<W> for volume |%s| did not defined volume attributes\n", mn.Data());
428   }
429
430   //  TString st("Shish-Kebab, 2x2 mm sampling, 62 layers, ");
431   TString st("Shashlyk, 2x2 mm sampling, 62 layers, ");
432   if    (sn.Contains("25"))   st = "Shish-Kebab, 5x5 mm sampling, 25 layers, ";
433   else if(sn.Contains("MAY05"))   st = "Shish-Kebab, 5x5 mm sampling, 77 layers, ";
434   if(sn.Contains("TRD1")) st += " TRD1, ";
435   if(sn.Contains("3X3"))  st += " 3x3, ";
436   st += name;
437
438   gROOT->ProcessLine("TGeant3 *g3 = (TGeant3*)gMC");
439   double cx=0.78, cy=2.;
440   if     (axis==1 && sn.Contains("TRD")==0) {
441    cx = cy = 1.;
442    gMC->Gsatt("PBTI", "seen", 0);
443   } else if (sn.Contains("TEST") && sn.Contains("3X3")) {
444     cx = cy = 0.7;
445     if (axis==3) cx = cy = 1.;
446   } else if (sn.Contains("TRD2")) {
447     if (axis==3) cx = cy = 2.;
448   } else if (mn.Contains("EMOD")) {
449     cx = cy = 0.5;
450   }
451   char cmd[200];
452
453   gMC->Gdopt("hide", optShad);
454   gMC->Gdopt("shad", optShad);
455
456   sprintf(cmd,"g3->Gdrawc(\"%s\", %i, %6.2f, 10., 10., %5.3f, %5.3f)\n",name, axis,dcut,cx,cy);
457   printf("\n%s\n",cmd); gROOT->ProcessLine(cmd);
458
459   sprintf(cmd,"gMC->Gdhead(1111, \"%s\")\n", st.Data());
460   printf("%s\n",cmd); gROOT->ProcessLine(cmd);
461 }
462   
463 void AliEMCALv2::DrawAlicWithHits(int mode)
464 { // 20-sep-04; does not work now
465   static TH2F *h2;
466   if(h2==0) h2 = new TH2F("h2","test fo hits", 60,0.5,60.5, 28,0.5,28.5);
467   else      h2->Reset();
468   if(mode==0) {
469     gROOT->ProcessLine("TGeant3 *g3 = (TGeant3*)gMC");
470     gMC->Gsatt("*","seen",0);
471     gMC->Gsatt("scm0","seen",5);
472
473     gROOT->ProcessLine("g3->Gdrawc(\"ALIC\", 1,   2.0, 12., -130, 0.3, 0.3)");
474     // g3->Gdrawc("ALIC", 1,   2.0, 10., -14, 0.05, 0.05)
475   }
476
477   TClonesArray *hits = Hits();
478   Int_t nhits = hits->GetEntries(), absId, nSupMod, nTower, nIphi, nIeta, iphi, ieta;
479   AliEMCALHit *hit = 0;
480   Double_t de, des=0.;
481   for(Int_t i=0; i<nhits; i++) {
482     hit   = (AliEMCALHit*)hits->UncheckedAt(i);
483     absId = hit->GetId();
484     de    = hit->GetEnergy();
485     des += de;
486     if(fGeometry->GetCellIndex(absId, nSupMod, nTower, nIphi, nIeta)){
487       //      printf(" de %f abs id %i smod %i tower %i | cell iphi %i : ieta %i\n",
488       // de, absId, nSupMod, nTower, nIphi, nIeta); 
489       if(nSupMod==3) {
490         fGeometry->GetCellPhiEtaIndexInSModule(nSupMod,nTower,nIphi,nIeta, iphi,ieta);
491         // printf(" iphi %i : ieta %i\n", iphi,ieta);
492         h2->Fill(double(ieta),double(iphi), de);
493       }
494     }
495     //    hit->Dump();
496   }
497   printf(" #hits %i : sum de %f -> %f \n", nhits, des, h2->Integral());
498   if(mode>0 && h2->Integral()>0.) h2->Draw();
499 }
500
501 void AliEMCALv2::SetVolumeAttributes(const char *name, int seen, int color, int fill)
502 {
503  /* seen=-2:volume is visible but none of its descendants;
504          -1:volume is not visible together with all its descendants;
505           0:volume is not visible;
506           1:volume is     visible. */
507   gMC->Gsatt(name, "seen", seen);
508   gMC->Gsatt(name, "colo", color);
509   gMC->Gsatt(name, "fill", fill); 
510   printf(" %s : seen %i color %i fill %i \n", name, seen, color, fill);
511
512
513 void AliEMCALv2::TestIndexTransition(int pri, int idmax)
514 { // for EMCAL_SHISH geometry
515   TString sn(fGeometry->GetName());
516   if(!sn.Contains("SHISH")) {
517     printf("Wrong geometry |%s| ! Bye \n", sn.Data());
518     return; 
519   }
520
521   Int_t nSupMod, nTower, nIphi, nIeta, idNew, nGood=0;
522   if(idmax==0) idmax = fGeometry->GetNCells();
523   for(Int_t id=1; id<=idmax; id++) {
524     if(!fGeometry->GetCellIndex(id, nSupMod, nTower, nIphi, nIeta)){
525       printf(" Wrong abs ID %i : #cells %i\n", id, fGeometry->GetNCells());
526       break;  
527     }
528     idNew = fGeometry->GetAbsCellId(nSupMod, nTower, nIphi, nIeta);
529     if(id != idNew || pri>0) {
530       printf(" ID %i : %i <- new id\n", id, idNew);
531       printf(" nSupMod   %i ",  nSupMod);
532       printf(" nTower    %i ", nTower);
533       printf(" nIphi     %i ", nIphi);
534       printf(" nIeta     %i \n", nIeta);
535      
536     } else nGood++;
537   }
538   printf(" Good decoding %i : %i <- #cells \n", nGood, fGeometry->GetNCells());
539 }