]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDCluster.cxx
Call of reco-param object moved from the class constructor, default value of the...
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDCluster.cxx
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 #include "AliHMPIDCluster.h"  //class header
17 #include <TVirtualFitter.h>  //Solve()
18 #include <TMinuit.h>         //Solve()
19 #include <TClonesArray.h>    //Solve()
20 #include <TMarker.h>         //Draw()
21
22 #include "AliLog.h"          //FindCusterSize()
23
24 Bool_t AliHMPIDCluster::fgDoCorrSin=kTRUE;
25
26 ClassImp(AliHMPIDCluster)
27     
28
29 void AliHMPIDCluster::SetClusterParams(Double_t xL,Double_t yL,Int_t iCh  )
30 {
31   //------------------------------------------------------------------------
32   //Set the cluster properties for the AliCluster3D part
33   //------------------------------------------------------------------------
34
35   //Get the volume ID from the previously set PNEntry
36   UShort_t volId=AliGeomManager::LayerToVolUID(AliGeomManager::kHMPID,iCh);
37
38   
39   //get L->T cs matrix for a given chamber
40   const TGeoHMatrix *t2l= AliGeomManager::GetTracking2LocalMatrix(volId);
41
42   if(!fParam->GetInstType())               //if there is no geometry we cannot retrieve the volId (only for monitoring)
43   {
44     new(this) AliCluster3D(); return;
45   }
46   
47
48   //transformation from the pad cs to local
49   xL -= 0.5*fParam->SizeAllX();      //size of all pads with dead zones included
50   yL -= 0.5*fParam->SizeAllY();
51
52   // Get the position in the tracking cs
53   Double_t posL[3]={xL, yL, 0.};            //this is the LORS of HMPID
54   Double_t posT[3];
55   t2l->MasterToLocal(posL,posT);
56
57  //Get the cluster covariance matrix in the tracking cs
58   Double_t covL[9] = {
59     0.8*0.8/12., 0.,            0.0,                 //pad size X
60     0.,          0.84*0.84/12., 0.0,                 //pad size Y
61     0.,          0.,            0.1,                 //just 1 , no Z dimension ???
62   };
63                 
64   TGeoHMatrix m;
65   m.SetRotation(covL);
66   m.Multiply(t2l);
67   m.MultiplyLeft(&t2l->Inverse());
68   Double_t *covT = m.GetRotationMatrix();
69
70   new(this) AliCluster3D(volId,            // Can be done safer
71        posT[0],posT[1],posT[2],
72        covT[0],covT[1],covT[2],
73                covT[4],covT[5],
74                        covT[8], 
75                           0x0);            // No MC labels ?
76 }
77
78
79 AliHMPIDCluster::~AliHMPIDCluster(){
80   if(fDigs) delete fDigs; fDigs=0;
81   }
82
83 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
84 void AliHMPIDCluster::CoG()
85 {
86 // Calculates naive cluster position as a center of gravity of its digits.
87 // Arguments: none 
88 //   Returns: none
89   Int_t minPadX=999,minPadY=999,maxPadX=-1,maxPadY=-1;      //for box finding  
90   if(fDigs==0) return;                                      //no digits in this cluster
91   fXX=fYY=fQRaw=0;                                          //init summable parameters
92   fCh = -1;                                                 //init chamber
93   Int_t maxQpad=-1,maxQ=-1;                                 //to calculate the pad with the highest charge
94   AliHMPIDDigit *pDig=0x0;
95   for(Int_t iDig=0;iDig<fDigs->GetEntriesFast();iDig++){    //digits loop
96     pDig=(AliHMPIDDigit*)fDigs->At(iDig);                   //get pointer to next digit
97     if(!pDig) continue;                                     //protection
98     if(pDig->PadPcX() > maxPadX) maxPadX = pDig->PadPcX();  // find the minimum box that contain the cluster  MaxX                            
99     if(pDig->PadPcY() > maxPadY) maxPadY = pDig->PadPcY();  //                                                MaxY
100     if(pDig->PadPcX() < minPadX) minPadX = pDig->PadPcX();  //                                                MinX   
101     if(pDig->PadPcY() < minPadY) minPadY = pDig->PadPcY();  //                                                MinY   
102     
103     Float_t q=pDig->Q();                                    //get QDC 
104     fXX += pDig->LorsX()*q;fYY +=pDig->LorsY()*q;             //add digit center weighted by QDC
105     fQRaw+=q;                                               //increment total charge 
106     if(q>maxQ) {maxQpad = pDig->Pad();maxQ=(Int_t)q;}       // to find pad with highest charge
107     fCh=pDig->Ch();                                         //initialize chamber number
108   }//digits loop
109   
110   fBox=(maxPadX-minPadX+1)*100+maxPadY-minPadY+1;           // dimension of the box: format Xdim*100+Ydim
111   
112   if ( fQRaw != 0 ) {fXX/=fQRaw;fYY/=fQRaw;}                //final center of gravity
113    
114   if(fDigs->GetEntriesFast()>1&&fgDoCorrSin)CorrSin();       //correct it by sinoid   
115   
116   fQ  = fQRaw;                                              // Before starting fit procedure, Q and QRaw must be equal
117   fMaxQpad = maxQpad; fMaxQ=maxQ;                           //store max charge pad to the field
118   fChi2=0;                                                  // no Chi2 to find
119   fNlocMax=0;                                               // proper status from this method
120   fSt=kCoG;
121   
122   if(fParam->GetInstType()) SetClusterParams(fXX,fYY,fCh);                              //need to fill the AliCluster3D part
123  
124 }//CoG()
125 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
126 void AliHMPIDCluster::CorrSin() 
127 {
128 // Correction of cluster x position due to sinoid, see HMPID TDR  page 30
129 // Arguments: none
130 //   Returns: none
131   Int_t pc,px,py;
132   fParam->Lors2Pad(fXX,fYY,pc,px,py);             //tmp digit to get it center
133   Float_t x=fXX-fParam->LorsX(pc,px);                    //diff between cluster x and center of the pad contaning this cluster   
134   fXX+=3.31267e-2*TMath::Sin(2*TMath::Pi()/0.8*x)-2.66575e-3*TMath::Sin(4*TMath::Pi()/0.8*x)+2.80553e-3*TMath::Sin(6*TMath::Pi()/0.8*x)+0.0070;
135 }
136 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
137 void AliHMPIDCluster::Draw(Option_t*)
138 {
139   TMarker *pMark=new TMarker(X(),Y(),5); pMark->SetUniqueID(fSt);pMark->SetMarkerColor(kBlue); pMark->Draw();
140 }
141 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
142 void AliHMPIDCluster::FitFunc(Int_t &iNpars, Double_t* deriv, Double_t &chi2, Double_t *par, Int_t iflag)
143 {
144 // Cluster fit function 
145 // par[0]=x par[1]=y par[2]=q for the first Mathieson shape
146 // par[3]=x par[4]=y par[5]=q for the second Mathieson shape and so on up to iNpars/3 Mathieson shapes
147 // For each pad of the cluster calculates the difference between actual pad charge and the charge induced to this pad by all Mathieson distributions
148 // Then the chi2 is calculated as the sum of this value squared for all pad in the cluster.  
149 // Arguments: iNpars - number of parameters which is number of local maxima of cluster * 3
150 //            chi2   - function result to be minimised 
151 //            par   - parameters array of size iNpars            
152 //   Returns: none  
153   
154   AliHMPIDCluster *pClu=(AliHMPIDCluster*)TVirtualFitter::GetFitter()->GetObjectFit();
155
156   Int_t nPads = pClu->Size();  
157   
158   chi2 = 0;
159   
160   Int_t iNshape = iNpars/3;
161   
162   for(Int_t i=0;i<nPads;i++){                                                          //loop on all pads of the cluster
163     Double_t dQpadMath = 0;
164     for(Int_t j=0;j<iNshape;j++){                                                      //Mathiesons loop as all of them may contribute to this pad
165       Double_t fracMathi = pClu->Dig(i)->IntMathieson(par[3*j],par[3*j+1]);
166       dQpadMath+=par[3*j+2]*fracMathi;                                                 // par[3*j+2] is charge par[3*j] is x par[3*j+1] is y of current Mathieson
167     }
168     if(dQpadMath>0 && pClu->Dig(i)->Q()>0) {
169       chi2 +=TMath::Power((pClu->Dig(i)->Q()-dQpadMath),2)/pClu->Dig(i)->Q();          //chi2 function to be minimized
170     }
171   }
172 //---calculate gradients...  
173   if(iflag==2) {
174     Double_t **derivPart;
175
176     derivPart = new Double_t*[iNpars];
177
178     for(Int_t j=0;j<iNpars;j++){                                                      
179       deriv[j] = 0;
180       derivPart[j] = new Double_t[nPads];
181       for(Int_t i=0;i<nPads;i++){                                                          
182         derivPart[j][i] = 0;
183       }
184     }
185
186     for(Int_t i=0;i<nPads;i++){                                                          //loop on all pads of the cluster
187       for(Int_t j=0;j<iNshape;j++){                                                      //Mathiesons loop as all of them may contribute to this pad
188         Double_t fracMathi = pClu->Dig(i)->IntMathieson(par[3*j],par[3*j+1]);
189         derivPart[3*j  ][i] += par[3*j+2]*(pClu->Dig(i)->MathiesonX(par[3*j]-pClu->Dig(i)->LorsX()-0.5*AliHMPIDParam::SizePadX())-
190                                            pClu->Dig(i)->MathiesonX(par[3*j]-pClu->Dig(i)->LorsX()+0.5*AliHMPIDParam::SizePadX()))*
191                                            pClu->Dig(i)->IntPartMathiY(par[3*j+1]);
192         derivPart[3*j+1][i] += par[3*j+2]*(pClu->Dig(i)->MathiesonY(par[3*j+1]-pClu->Dig(i)->LorsY()-0.5*AliHMPIDParam::SizePadY())-
193                                            pClu->Dig(i)->MathiesonY(par[3*j+1]-pClu->Dig(i)->LorsY()+0.5*AliHMPIDParam::SizePadY()))*
194                                            pClu->Dig(i)->IntPartMathiX(par[3*j]);
195         derivPart[3*j+2][i] += fracMathi;
196       }
197     }
198                                                                                          //loop on all pads of the cluster     
199     for(Int_t i=0;i<nPads;i++){                                                          //loop on all pads of the cluster
200       Double_t dQpadMath = 0;                                                            //pad charge collector  
201       for(Int_t j=0;j<iNshape;j++){                                                      //Mathiesons loop as all of them may contribute to this pad
202         Double_t fracMathi = pClu->Dig(i)->IntMathieson(par[3*j],par[3*j+1]);
203         dQpadMath+=par[3*j+2]*fracMathi;                                                 
204         if(dQpadMath>0 && pClu->Dig(i)->Q()>0) {
205           deriv[3*j]   += 2/pClu->Dig(i)->Q()*(pClu->Dig(i)->Q()-dQpadMath)*derivPart[3*j  ][i];
206           deriv[3*j+1] += 2/pClu->Dig(i)->Q()*(pClu->Dig(i)->Q()-dQpadMath)*derivPart[3*j+1][i];
207           deriv[3*j+2] += 2/pClu->Dig(i)->Q()*(pClu->Dig(i)->Q()-dQpadMath)*derivPart[3*j+2][i];
208         }
209       }
210     }
211     //delete array...
212     for(Int_t i=0;i<iNpars;i++) delete [] derivPart[i]; delete [] derivPart;
213   }
214 //---gradient calculations ended
215
216 // fit ended. Final calculations
217   
218   
219 }//FitFunction()
220 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
221 void AliHMPIDCluster::Print(Option_t* opt)const
222 {
223 //Print current cluster  
224   const char *status=0;
225   switch(fSt){
226     case        kFrm  : status="formed        "   ;break;
227     case        kUnf  : status="unfolded (fit)"   ;break;
228     case        kCoG  : status="coged         "   ;break;
229     case        kLo1  : status="locmax 1 (fit)"   ;break;
230     case        kMax  : status="exceeded (cog)"   ;break;
231     case        kNot  : status="not done (cog)"   ;break;
232     case        kEmp  : status="empty         "   ;break;
233     case        kEdg  : status="edge     (fit)"   ;break;
234     case        kSi1  : status="size 1   (cog)"   ;break;
235     case        kNoLoc: status="no LocMax(fit)"   ;break;
236     case        kAbn  : status="Abnormal fit  "   ;break;
237     case        kBig  : status="Big Clu(>100) "   ;break;
238     
239     default:            status="??????"          ;break;   
240   }
241   Double_t ratio=0;
242   if(Q()>0&&QRaw()>0) ratio = Q()/QRaw()*100;
243   Printf("%sCLU: ch=%i  (%7.3f,%7.3f) Q=%8.3f Qraw=%8.3f(%3.0f%%) Size=%2i DimBox=%i LocMax=%i Chi2=%7.3f   %s",
244          opt,Ch(),X(),Y(),Q(),QRaw(),ratio,Size(),fBox,fNlocMax,fChi2,status);
245   if(fDigs) fDigs->Print();    
246 }//Print()
247 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
248 Int_t AliHMPIDCluster::Solve(TClonesArray *pCluLst,Int_t *pSigmaCut, Bool_t isTryUnfold)
249 {
250 //This methode is invoked when the cluster is formed to solve it. Solve the cluster means to try to unfold the cluster
251 //into the local maxima number of clusters. This methode is invoked by AliHMPIDRconstructor::Dig2Clu() on cluster by cluster basis.  
252 //At this point, cluster contains a list of digits, cluster charge and size is precalculated in AddDigit(), position is preset to (-1,-1) in ctor,
253 //status is preset to kFormed in AddDigit(), chamber-sector info is preseted to actual values in AddDigit()
254 //Method first finds number of local maxima and if it's more then one tries to unfold this cluster into local maxima number of clusters
255 //Arguments: pCluLst     - cluster list pointer where to add new cluster(s)
256 //           isTryUnfold - flag to switch on/off unfolding   
257 //  Returns: number of local maxima of original cluster
258   const Int_t kMaxLocMax=6;                                                              //max allowed number of loc max for fitting
259 //  
260   CoG();                                                                                 //First calculate CoG for the given cluster
261   
262   Int_t iCluCnt=pCluLst->GetEntriesFast();                                               //get current number of clusters already stored in the list by previous operations
263   
264   Int_t rawSize = Size();                                                                //get current raw cluster size
265   
266   if(rawSize>100) {
267     fSt = kBig;
268   } else if(isTryUnfold==kFALSE) {
269     fSt = kNot;
270   } else if(rawSize==1) {
271     fSt = kSi1;
272   }
273   
274   if(rawSize>100 || isTryUnfold==kFALSE || rawSize==1) {                                 //No deconv if: 1 - big cluster (also avoid no zero suppression!)
275                                                                                          //              2 - flag is set to FALSE
276     if(fParam->GetInstType()) SetClusterParams(fXX,fYY,fCh);                             //              3 - size = 1
277     new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(*this);  //add this raw cluster 
278     return 1;
279     
280   } 
281   
282 //Phase 0. Initialise Fitter  
283   Double_t arglist[10];
284   Int_t ierflg = 0;
285   TVirtualFitter *fitter = TVirtualFitter::Fitter(this,3*6);                            //initialize Fitter
286
287   delete fitter;                                                                        //temporary solution to avoid the inteference with previous instances
288   fitter = TVirtualFitter::Fitter(this,3*6);                                            //initialize Fitter
289
290   arglist[0] = -1;
291   ierflg = fitter->ExecuteCommand("SET PRI", arglist, 1);                               // no printout
292   ierflg = fitter->ExecuteCommand("SET NOW", arglist, 0);                               //no warning messages
293   arglist[0] =  1;
294   ierflg = fitter->ExecuteCommand("SET GRA", arglist, 1);                               //force Fitter to use my gradient
295
296   fitter->SetFCN(AliHMPIDCluster::FitFunc);
297
298 //  arglist[0] = 1;
299 //  ierflg = fitter->ExecuteCommand("SET ERR", arglist ,1);
300   
301 // Set starting values and step sizes for parameters
302     
303 //Phase 1. Find number of local maxima. Strategy is to check if the current pad has QDC more then all neigbours. Also find the box contaning the cluster   
304   fNlocMax=0;
305
306   for(Int_t iDig1=0;iDig1<rawSize;iDig1++) {                                               //first digits loop
307     
308     AliHMPIDDigit *pDig1 = Dig(iDig1);                                                   //take next digit    
309     Int_t iCnt = 0;                                                                      //counts how many neighbouring pads has QDC more then current one
310     
311     for(Int_t iDig2=0;iDig2<rawSize;iDig2++) {                                            //loop on all digits again
312       
313       if(iDig1==iDig2) continue;                                                         //the same digit, no need to compare 
314       AliHMPIDDigit *pDig2 = Dig(iDig2);                                                 //take second digit to compare with the first one
315       Int_t dist = TMath::Sign(Int_t(pDig1->PadChX()-pDig2->PadChX()),1)+TMath::Sign(Int_t(pDig1->PadChY()-pDig2->PadChY()),1);//distance between pads
316       if(dist==1)                                                                        //means dig2 is a neighbour of dig1
317          if(pDig2->Q()>=pDig1->Q()) iCnt++;                                              //count number of pads with Q more then Q of current pad
318       
319     }//second digits loop
320     
321     if(iCnt==0&&fNlocMax<kMaxLocMax){                                                    //this pad has Q more then any neighbour so it's local maximum
322       
323       Double_t xStart=pDig1->LorsX();Double_t yStart=pDig1->LorsY();
324       Double_t xMin=xStart-fParam->SizePadX();
325       Double_t xMax=xStart+fParam->SizePadX();
326       Double_t yMin=yStart-fParam->SizePadY();
327       Double_t yMax=yStart+fParam->SizePadY();
328       
329       ierflg = fitter->SetParameter(3*fNlocMax  ,Form("x%i",fNlocMax),xStart,0.1,xMin,xMax);    // X,Y,Q initial values of the loc max pad
330       ierflg = fitter->SetParameter(3*fNlocMax+1,Form("y%i",fNlocMax),yStart,0.1,yMin,yMax);    // X, Y constrained to be near the loc max
331       ierflg = fitter->SetParameter(3*fNlocMax+2,Form("q%i",fNlocMax),pDig1->Q(),0.1,0,10000);  // Q constrained to be positive
332       
333       fNlocMax++;
334       
335     }//if this pad is local maximum
336   }//first digits loop
337   
338 //Phase 2. Fit loc max number of Mathiesons or add this current cluster to the list
339 // case 1 -> no loc max found
340  if ( fNlocMax == 0) {                                                                       // case of no local maxima found: pads with same charge...
341    fNlocMax = 1;
342    fSt=kNoLoc;
343    if(fParam->GetInstType()) SetClusterParams(fXX,fYY,fCh);                                                      //need to fill the AliCluster3D part
344    new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(*this);                                     //add new unfolded cluster
345    
346    return fNlocMax;
347  }
348
349 // case 2 -> loc max found. Check # of loc maxima 
350  if ( fNlocMax >= kMaxLocMax)  { 
351  if(fParam->GetInstType()) SetClusterParams(fXX,fYY,fCh);                                                           // if # of local maxima exceeds kMaxLocMax...
352    fSt = kMax;   new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(*this);                      //...add this raw cluster  
353    } else {                                                                               //or resonable number of local maxima to fit and user requested it
354   // Now ready for minimization step
355    arglist[0] = 500;                                                                      //number of steps and sigma on pads charges
356    arglist[1] = 1.;                                                                       //
357
358    ierflg = fitter->ExecuteCommand("SIMPLEX",arglist,2);                                  //start fitting with Simplex
359    if (!ierflg)
360      fitter->ExecuteCommand("MIGRAD" ,arglist,2);                                         //fitting improved by Migrad
361    if(ierflg) {
362      Double_t strategy=2;
363      ierflg = fitter->ExecuteCommand("SET STR",&strategy,1);                              //change level of strategy 
364      if(!ierflg) {
365        ierflg = fitter->ExecuteCommand("SIMPLEX",arglist,2);                              //start fitting with Simplex
366        if (!ierflg)
367          fitter->ExecuteCommand("MIGRAD" ,arglist,2);                                     //fitting improved by Migrad
368      }
369    }        
370    if(ierflg) fSt=kAbn;                                                                   //no convergence of the fit...
371    Double_t dummy; char sName[80];                                                        //vars to get results from Minuit
372    Double_t edm, errdef;
373    Int_t nvpar, nparx;
374    
375    for(Int_t i=0;i<fNlocMax;i++){                                                        //store the local maxima parameters
376      fitter->GetParameter(3*i   ,sName,  fXX, fErrX , dummy, dummy);                     // X
377      fitter->GetParameter(3*i+1 ,sName,  fYY, fErrY , dummy, dummy);                     // Y
378      fitter->GetParameter(3*i+2 ,sName,  fQ, fErrQ , dummy, dummy);                      // Q
379      fitter->GetStats(fChi2, edm, errdef, nvpar, nparx);                                 //get fit infos
380
381      if(fNlocMax>1)FindClusterSize(i,pSigmaCut);                                         //find clustersize for deconvoluted clusters
382                                                                                          //after this call, fSi temporarly is the calculated size. Later is set again 
383                                                                                          //to its original value
384      if(fSt!=kAbn) {         
385       if(fNlocMax!=1)fSt=kUnf;                                                           // if unfolded
386       if(fNlocMax==1&&fSt!=kNoLoc) fSt=kLo1;                                             // if only 1 loc max
387       if ( !IsInPc()) fSt = kEdg;                                                        // if Out of Pc
388       if(fSt==kNoLoc) fNlocMax=0;                                                        // if with no loc max (pads with same charge..)
389      }
390      if(fParam->GetInstType()) SetClusterParams(fXX,fYY,fCh);                            //need to fill the AliCluster3D part
391      new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(*this);                                 //add new unfolded cluster
392      if(fNlocMax>1)SetSize(rawSize);                                                     //Original raw size is set again to its proper value
393    }
394  }
395
396  return fNlocMax;
397  
398 }//Solve()
399 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
400 void AliHMPIDCluster::FindClusterSize(Int_t i,Int_t *pSigmaCut)
401 {
402
403 //Estimate of the clustersize for a deconvoluted cluster
404   Int_t size = 0;
405   for(Int_t iDig=0;iDig<Size();iDig++) {                                               //digits loop
406     AliHMPIDDigit *pDig = Dig(iDig);                                                   //take digit
407     Int_t iCh = pDig->Ch();
408     Double_t qPad = Q()*pDig->IntMathieson(X(),Y());                                   //pad charge
409     AliDebug(1,Form("Chamber %i X %i Y %i SigmaCut %i pad %i qpadMath %8.2f qPadRaw %8.2f Qtotal %8.2f cluster n.%i",iCh,pDig->PadChX(),pDig->PadChY(),
410         pSigmaCut[iCh],iDig,qPad,pDig->Q(),QRaw(),i));
411     if(qPad>pSigmaCut[iCh]) size++;
412    }
413   AliDebug(1,Form(" Calculated size %i",size));
414   if(size>0) SetSize(size);                                                            //in case of size == 0, original raw clustersize used 
415 }