]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HMPID/AliHMPIDCluster.cxx
Cluster finding improved.
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDCluster.cxx
index dacba9549b9e86d6ede71b6cd9d776dcc63a2748..8504030a81036c994110ae9a399c4e874e1d5f22 100644 (file)
 #include "AliHMPIDCluster.h"  //class header
 #include <TMinuit.h>         //Solve()
 #include <TClonesArray.h>    //Solve()
-
+#include <TMarker.h>         //Draw()
 ClassImp(AliHMPIDCluster)
 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 void AliHMPIDCluster::CoG()
 {
 // Calculates naive cluster position as a center of gravity of its digits.
 // Arguments: none 
-//   Returns: shape of the cluster i.e. the box which fully contains the cluster      
-  if(fDigs==0) return;                                  //no digits in this cluster
-  fX=fY=0;                                              //set cluster position to (0,0) to start to collect contributions
+//   Returns: none
+  
+//  if(fDigs==0) return;                                //no digits in this cluster
+  fX=fY=fQ=0;                                           //set cluster position to (0,0) to start to collect contributions
+  Int_t maxQpad=-1,maxQ=-1;                             //to calculate the pad with the highest charge
+  AliHMPIDDigit *pDig;
   for(Int_t iDig=0;iDig<fDigs->GetEntriesFast();iDig++){//digits loop
-    AliHMPIDDigit *pDig=(AliHMPIDDigit*)fDigs->At(iDig);  //get pointer to next digit
+    pDig=(AliHMPIDDigit*)fDigs->At(iDig);               //get pointer to next digit
     Float_t q=pDig->Q();                                //get QDC 
     fX += pDig->LorsX()*q;fY +=pDig->LorsY()*q;         //add digit center weighted by QDC
+    fQ+=q;                                              //increment total charge 
+    if(q>maxQ) {maxQpad = pDig->Pad();maxQ=(Int_t)q;}   // to find pad with highest charge
   }//digits loop
-  fX/=fQ;fY/=fQ;                                        //final center of gravity
-
-  CorrSin();
+  if ( fQ != 0 )   fX/=fQ;fY/=fQ;                       //final center of gravity
   
+  CorrSin();                                            //correct it by sinoid   
+  fCh=pDig->Ch();                                       //initialize chamber number
+  fMaxQpad = maxQpad; fMaxQ=maxQ;                       //store max charge pad to the field
+  fXi=fX+99; fYi=fY+99; fQi=fQ+99;                      //initial local max position is to be shifted artificially 
   fSt=kCoG;
 }//CoG()
 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
@@ -48,6 +56,11 @@ void AliHMPIDCluster::CorrSin()
   fX+=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;
 }
 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+void AliHMPIDCluster::Draw(Option_t*)
+{
+  TMarker *pMark=new TMarker(X(),Y(),5); pMark->SetMarkerColor(kBlue); pMark->Draw();
+}
+//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 void AliHMPIDCluster::FitFunc(Int_t &iNpars, Double_t *, Double_t &chi2, Double_t *par, Int_t )
 {
 // Cluster fit function 
@@ -77,14 +90,23 @@ void AliHMPIDCluster::Print(Option_t* opt)const
 //Print current cluster  
   const char *status=0;
   switch(fSt){
-    case      kFor: status="formed"     ;break;
-    case      kUnf: status="unfolded"   ;break;
-    case      kCoG: status="coged"      ;break;
-    case      kEmp: status="empty"      ;break;
+    case        kFrm  : status="formed        "   ;break;
+    case        kUnf  : status="unfolded (fit)"   ;break;
+    case        kCoG  : status="coged         "   ;break;
+    case        kLo1  : status="locmax 1 (fit)"   ;break;
+    case        kAbn  : status="abnorm   (fit)"   ;break;
+    case        kMax  : status="exceeded (cog)"   ;break;
+    case        kNot  : status="not done (cog)"   ;break;
+    case        kEmp  : status="empty         "   ;break;
+    case        kEdg  : status="edge     (fit)"   ;break;
+    case       kSi1  : status="size 1   (cog)"   ;break;
+    case       kNoLoc: status="no LocMax(fit)"   ;break;
+    
+    default:            status="??????"          ;break;   
   }
-  Printf("%s ch=%i, Size=%2i        (%7.3f,%7.3f) Q=%4i          %s",
-         opt,Ch(),Size(),            X(),  Y(),   Q(),status);
-  for(Int_t i=0;i<Size();i++) Dig(i)->Print();    
+  Printf("%sCLU:(%7.3f,%7.3f) Q=%8.3f  ch=%i, FormedSize=%2i   N loc. max. %i Box %i  Chi2 %7.3f        %s",
+         opt,    X(),  Y(),   Q(),     Ch(),  Size(),           fNlocMax,       fBox,   fChi2,                 status);
+  if(fDigs) fDigs->Print();    
 }//Print()
 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 Int_t AliHMPIDCluster::Solve(TClonesArray *pCluLst,Bool_t isTryUnfold)
@@ -97,52 +119,119 @@ Int_t AliHMPIDCluster::Solve(TClonesArray *pCluLst,Bool_t isTryUnfold)
 //Arguments: pCluLst     - cluster list pointer where to add new cluster(s)
 //           isTryUnfold - flag to switch on/off unfolding   
 //  Returns: number of local maxima of original cluster
-
+  CoG();
+  //  Printf("1 - fStatus: %d",fSt);
+  Int_t iCluCnt=pCluLst->GetEntriesFast();                                             //get current number of clusters already stored in the list by previous operations
+  if(isTryUnfold==kFALSE || Size()==1) {                                               //if cluster contains single pad there is no way to improve the knowledge 
+    (isTryUnfold)?fSt=kSi1:fSt=kNot;
+    new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(*this);  //add this raw cluster 
+    return 1;
+  } 
+  // Printf("2 - fStatus: %d",fSt);
 //Phase 0. Initialise TMinuit  
   const Int_t kMaxLocMax=6;                                                            //max allowed number of loc max for fitting
   TMinuit *pMinuit = new TMinuit(3*kMaxLocMax);                                        //init MINUIT with this number of parameters (3 params per mathieson)
-  pMinuit->SetObjectFit((TObject*)this);  pMinuit->SetFCN(AliHMPIDCluster::FitFunc);    //set fit function
-  Double_t aArg=-1,parStart,parStep,parLow,parHigh;     Int_t iErrFlg;                 //tmp vars for TMinuit
+  pMinuit->SetObjectFit((TObject*)this);  pMinuit->SetFCN(AliHMPIDCluster::FitFunc);   //set fit function
+  Double_t aArg=-1;                                     Int_t iErrFlg;                 //tmp vars for TMinuit
   pMinuit->mnexcm("SET PRI",&aArg,1,iErrFlg);                                          //suspend all printout from TMinuit 
   pMinuit->mnexcm("SET NOW",&aArg,0,iErrFlg);                                          //suspend all warning printout from TMinuit
-//Phase 1. Find number of local maxima. Strategy is to check if the current pad has QDC more then all neigbours   
-  Int_t iLocMaxCnt=0;
-  for(Int_t iDig1=0;iDig1<Size();iDig1++) {                                             //first digits loop
+//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   
+  fNlocMax=0;
+  Int_t minPadX=999,minPadY=999,maxPadX=-1,maxPadY=-1,pc=-1;                             //for box finding   
+  //Double_t  lowX,highX,lowY,highY;
+  
+  //  Printf("3 - fStatus: %d",fSt);
+ for(Int_t iDig1=0;iDig1<Size();iDig1++) {                                              //first digits loop
     AliHMPIDDigit *pDig1 = Dig(iDig1);                                                   //take next digit
-    Int_t iHowManyMoreCnt = 0;                                                          //counts how many neighbouring pads has QDC more then current one
-    for(Int_t iDig2=0;iDig2<Size();iDig2++) {                                           //loop on all digits again
-      if(iDig1==iDig2) continue;                                                        //the same digit, no need to compare 
+    pc=pDig1->Pc();                                                                      //finding the box  
+    
+    if(pDig1->PadPcX() > maxPadX) maxPadX = pDig1->PadPcX();                              
+    if(pDig1->PadPcY() > maxPadY) maxPadY = pDig1->PadPcY();
+    if(pDig1->PadPcX() < minPadX) minPadX = pDig1->PadPcX();
+    if(pDig1->PadPcY() < minPadY) minPadY = pDig1->PadPcY();
+    
+    fBox=(maxPadX-minPadX+1)*100+maxPadY-minPadY+1;
+    
+    Int_t iHowManyMoreCnt = 0;                                                           //counts how many neighbouring pads has QDC more then current one
+    for(Int_t iDig2=0;iDig2<Size();iDig2++) {                                            //loop on all digits again
+      if(iDig1==iDig2) continue;                                                         //the same digit, no need to compare 
       AliHMPIDDigit *pDig2 = Dig(iDig2);                                                 //take second digit to compare with the first one
       Int_t dist = TMath::Sign(Int_t(pDig1->PadChX()-pDig2->PadChX()),1)+TMath::Sign(Int_t(pDig1->PadChY()-pDig2->PadChY()),1);//distance between pads
-      if(dist==1)                                                                       //means dig2 is a neighbour of dig1
-         if(pDig2->Q()>=pDig1->Q()) iHowManyMoreCnt++;                                 //count number of pads with Q more then Q of current pad
+      if(dist==1)                                                                        //means dig2 is a neighbour of dig1
+         if(pDig2->Q()>=pDig1->Q()) iHowManyMoreCnt++;                                   //count number of pads with Q more then Q of current pad
     }//second digits loop
-    if(iHowManyMoreCnt==0&&iLocMaxCnt<kMaxLocMax){                                     //this pad has Q more then any neighbour so it's local maximum
-        pMinuit->mnparm(3*iLocMaxCnt  ,Form("x%i",iLocMaxCnt),parStart=pDig1->LorsX(),parStep=0.01,parLow=0,parHigh=0,iErrFlg);
-        pMinuit->mnparm(3*iLocMaxCnt+1,Form("y%i",iLocMaxCnt),parStart=pDig1->LorsY(),parStep=0.01,parLow=0,parHigh=0,iErrFlg);
-        pMinuit->mnparm(3*iLocMaxCnt+2,Form("q%i",iLocMaxCnt),parStart=pDig1->Q()    ,parStep=0.01,parLow=0,parHigh=0,iErrFlg);
-        iLocMaxCnt++;
+    if(iHowManyMoreCnt==0&&fNlocMax<kMaxLocMax){                                       //this pad has Q more then any neighbour so it's local maximum
+      
+      /*
+      lowX  = AliHMPIDDigit::LorsX(pc,minPadX) - 0.5 *AliHMPIDDigit::SizePadX();
+      highX = AliHMPIDDigit::LorsX(pc,maxPadX) + 0.5 *AliHMPIDDigit::SizePadX();
+      lowY  = AliHMPIDDigit::LorsY(pc,minPadY) - 0.5 *AliHMPIDDigit::SizePadY();
+      highY = AliHMPIDDigit::LorsY(pc,maxPadY) + 0.5 *AliHMPIDDigit::SizePadY();
+      */
+      //Double_t    lowQ=0,highQ=30000; 
+      
+      fQi=pDig1->Q();  fXi=pDig1->LorsX();  fYi=pDig1->LorsY();                          //initial position of this Mathieson is to be in the center of loc max pad                               
+      /*
+        pMinuit->mnparm(3*fNlocMax  ,Form("x%i",fNlocMax),fXi,0.01,lowX,highX,iErrFlg);
+        pMinuit->mnparm(3*fNlocMax+1,Form("y%i",fNlocMax),fYi,0.01,lowY,highY,iErrFlg);
+        pMinuit->mnparm(3*fNlocMax+2,Form("q%i",fNlocMax),fQi,0.01,lowQ,highQ,iErrFlg);
+      */
+      pMinuit->mnparm(3*fNlocMax  ,Form("x%i",fNlocMax),fXi,0.01,0,0,iErrFlg);
+      pMinuit->mnparm(3*fNlocMax+1,Form("y%i",fNlocMax),fYi,0.01,0,0,iErrFlg);
+      pMinuit->mnparm(3*fNlocMax+2,Form("q%i",fNlocMax),fQi,0.01,0,100000,iErrFlg);
+      
+      fNlocMax++;
     }//if this pad is local maximum
   }//first digits loop
+  
+ //Int_t fitChk=0;
+
 //Phase 2. Fit loc max number of Mathiesons or add this current cluster to the list
-  Int_t iCluCnt=pCluLst->GetEntriesFast();                                          //get current number of clusters already stored in the list by previous operations
-  if(isTryUnfold==kTRUE && iLocMaxCnt<kMaxLocMax){                                        //resonable number of local maxima to fit and user requested it
-    pMinuit->mnexcm("MIGRAD" ,&aArg,0,iErrFlg);                                     //start fitting
-    if (!iErrFlg) { // Only if MIGRAD converged normally
-      Double_t fitX,fitY,fitQ,d1,d2,d3; TString sName;                                //vars to get results from TMinuit
-      for(Int_t i=0;i<iLocMaxCnt;i++){//local maxima loop
-       pMinuit->mnpout(3*i   ,sName,  fitX, d1 , d2, d3, iErrFlg);
-       pMinuit->mnpout(3*i+1 ,sName,  fitY, d1 , d2, d3, iErrFlg);
-       pMinuit->mnpout(3*i+2 ,sName,  fitQ, d1 , d2, d3, iErrFlg);
-       if (TMath::Abs(fitQ)>2147483647.0) fitQ = TMath::Sign((Double_t)2147483647,fitQ);//???????????????
-       new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(Ch(),fitX,fitY,(Int_t)fitQ,kUnf);       //add new unfolded clusters
-      }//local maxima loop
-    }
-  }else{//do not unfold since number of loc max is unresonably high or user's baned unfolding 
-    CoG();
-    new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(Ch(),X(),Y(),Q(),kCoG);  //add this raw cluster 
-  }
+// Printf("4 - fStatus: %d",fSt);
+ if ( fNlocMax == 0) { // case of no local maxima found: pads with same charge...
+   pMinuit->mnparm(3*fNlocMax  ,Form("x%i",fNlocMax),fX,0.01,0,0,iErrFlg);
+   pMinuit->mnparm(3*fNlocMax+1,Form("y%i",fNlocMax),fY,0.01,0,0,iErrFlg);
+   pMinuit->mnparm(3*fNlocMax+2,Form("q%i",fNlocMax),fQ,0.01,0,100000,iErrFlg);
+   fNlocMax = 1;
+   fSt=kNoLoc;
+ }
+ if ( fNlocMax >= kMaxLocMax)
+   {
+     fSt   = kMax;   new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(*this);               //add this raw cluster  
+   }
+ else{                                                                                 //resonable number of local maxima to fit and user requested it
+   Double_t arglist[10];     arglist[0] = 10000;     arglist[1] = 1.;                  //number of steps and sigma on pads charges  
+   pMinuit->mnexcm("MIGRAD" ,arglist,0,iErrFlg);                                       //start fitting
+   
+   if (iErrFlg) 
+     {
+       fSt   = kAbn;                                                                   //fit fails, MINUIT returns error flag
+       new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(*this);                             //add this raw cluster 
+     }
+   else
+     {                                                                                 //Only if MIGRAD converged normally
+       Double_t d2,d3; TString sName;                                                  //vars to get results from TMinuit
+       for(Int_t i=0;i<fNlocMax;i++){                                                  //local maxima loop
+         pMinuit->mnpout(3*i   ,sName,  fX, fXe , d2, d3, iErrFlg);
+         pMinuit->mnpout(3*i+1 ,sName,  fY, fYe , d2, d3, iErrFlg);
+         pMinuit->mnpout(3*i+2 ,sName,  fQ, fQe , d2, d3, iErrFlg);
+         pMinuit->mnstat(fChi2,d2,d2,iErrFlg,iErrFlg,iErrFlg);
+         
+         if(fNlocMax!=1)fSt=kUnf;
+         if(fNlocMax==1&&fSt!=kNoLoc) fSt=kLo1;
+         if ( !IsInPc()) fSt = kEdg;       
+         if(fSt==kNoLoc) fNlocMax=0;
+         new ((*pCluLst)[iCluCnt++]) AliHMPIDCluster(*this);      //add new unfolded cluster
+       }
+     }
+ }
+    
+
+  
+
   delete pMinuit;
-  return iLocMaxCnt;
+  return fNlocMax;
 }//Solve()
 //++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++