/************************************************************************** * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * * * * Author: The ALICE Off-line Project. * * Contributors are mentioned in the code where appropriate. * * * * Permission to use, copy, modify and distribute this software and its * * documentation strictly for non-commercial purposes is hereby granted * * without fee, provided that the above copyright notice appears in all * * copies and that both the copyright notice and this permission notice * * appear in the supporting documentation. The authors make no claims * * about the suitability of this software for any purpose. It is * * provided "as is" without express or implied warranty. * **************************************************************************/ #include "AliRICHClusterFinder.h" #include "AliRICHMap.h" #include #include #include #include #include #include #include "AliRICHParam.h" void RICHMinMathieson(Int_t &npar, Double_t *gin, Double_t &chi2, Double_t *par, Int_t iflag); ClassImp(AliRICHClusterFinder) //__________________________________________________________________________________________________ AliRICHClusterFinder::AliRICHClusterFinder(AliRunLoader *pRunLoader) {//main ctor fRICH = (AliRICH*) pRunLoader->GetAliRun()->GetDetector("RICH"); AliDebug(1,"main ctor Start."); fDigitMap = 0; fRawCluster.Reset(); fResolvedCluster.Reset(); AliDebug(1,"main ctor Stop."); }//main ctor //__________________________________________________________________________________________________ void AliRICHClusterFinder::Exec(const Option_t *) { //Main method of cluster finder. Loops on events and chambers, everything else is done in FindClusters() AliDebug(1,"Exec Start."); R()->GetLoader() ->LoadDigits(); // R()->GetLoader()->GetRunLoader()->LoadHeader(); if(!R()->GetLoader()->GetRunLoader()->TreeK()) R()->GetLoader()->GetRunLoader()->LoadKinematics(); for(Int_t iEventN=0;iEventNGetEventsPerRun();iEventN++){//events loop AliDebug(1,Form("Processing event %i...",iEventN)); R()->GetLoader()->GetRunLoader()->GetEvent(iEventN); R()->GetLoader()->MakeTree("R"); R()->MakeBranch("R"); R()->DigitsReset(); R()->ClustersReset(); R()->GetLoader()->TreeD()->GetEntry(0); for(Int_t iChamber=1;iChamber<=kNchambers;iChamber++){//chambers loop FindClusters(iChamber); }//chambers loop R()->GetLoader()->TreeR()->Fill(); R()->GetLoader()->WriteRecPoints("OVERWRITE");//write out clusters for current event }//events loop R()->DigitsReset();//reset and unload everything R()->ClustersReset(); R()->GetLoader() ->UnloadDigits(); R()->GetLoader() ->UnloadRecPoints(); // R()->GetLoader()->GetRunLoader()->UnloadHeader(); R()->GetLoader()->GetRunLoader()->UnloadKinematics(); AliDebug(1,"Stop."); }//Exec() //__________________________________________________________________________________________________ void AliRICHClusterFinder::FindClusters(Int_t iChamber) { //Loops on digits for a given chamber, forms raw clusters, then tries to resolve them if requested Int_t iNdigits=R()->Digits(iChamber)->GetEntriesFast(); AliDebug(1,Form("Start for chamber %i with %i digits.",iChamber,iNdigits)); if(iNdigits==0)return;//no digits for a given chamber, nothing to do fDigitMap=new AliRICHMap(R()->Digits(iChamber));//create digit map for the given chamber for(Int_t iDigN=0;iDigNDigits(iChamber)->At(iDigN); Int_t i=dig->PadX(); Int_t j=dig->PadY(); if(fDigitMap->TestHit(i,j)==kUsed) continue;//this digit is already taken, go after next digit FormRawCluster(i,j);//form raw cluster starting from (i,j) pad AliDebug(1,"After FormRawCluster:");ToAliDebug(1,fRawCluster.Print()); FindLocalMaxima(); //find number of local maxima and initial center of gravity AliDebug(1,"After FindLocalMaxima:");ToAliDebug(1,fRawCluster.Print()); if(AliRICHParam::IsResolveClusters()&&fNlocals<=6&&fRawCluster.Size()>1){ FitCoG(); //serialization of resolved clusters will happen inside }else{//cluster size=1 or resolving is switched off WriteRawCluster();//simply output the formed raw cluster without deconvolution } fRawCluster.Reset(); fResolvedCluster.Reset(); }//digits loop for a given chamber delete fDigitMap; AliDebug(1,"Stop."); }//FindClusters() //__________________________________________________________________________________________________ void AliRICHClusterFinder::FindClusterContribs(AliRICHCluster *pCluster) { //Finds cerenkov-feedback-mip mixture for a given cluster AliDebug(1,"Start.");ToAliDebug(1,pCluster->Print()); // R()->GetLoader()->GetRunLoader()->LoadHeader(); //...message from AliRunLoader...hopefully will disappear in future... // sometimes no stack found if the above line is commented out!! AliStack *pStack = R()->GetLoader()->GetRunLoader()->Stack(); if(!pStack) {AliInfo("No Stack found!!! No contrib to cluster found.");return;} TObjArray *pDigits = pCluster->Digits(); if(!pDigits) return; //?????????? Int_t iNmips=0,iNckovs=0,iNfeeds=0; TArrayI contribs(3*pCluster->Size()); Int_t *pindex = new Int_t[3*pCluster->Size()]; for(Int_t iDigN=0;iDigNSize();iDigN++) {//loop on digits of a given cluster contribs[3*iDigN] =((AliRICHDigit*)pDigits->At(iDigN))->GetTrack(0); if (contribs[3*iDigN] >= 10000000) contribs[3*iDigN] = 0; contribs[3*iDigN+1]=((AliRICHDigit*)pDigits->At(iDigN))->GetTrack(1); if (contribs[3*iDigN+1] >= 10000000) contribs[3*iDigN+1] = 0; contribs[3*iDigN+2]=((AliRICHDigit*)pDigits->At(iDigN))->GetTrack(2); if (contribs[3*iDigN+2] >= 10000000) contribs[3*iDigN+2] = 0; }//loop on digits of a given cluster TMath::Sort(contribs.GetSize(),contribs.GetArray(),pindex); for(Int_t iDigN=0;iDigN<3*pCluster->Size()-1;iDigN++) {//loop on digits to sort tids AliDebug(1,Form("%4i for digit n. %4i",contribs[pindex[iDigN]],iDigN)); if(contribs[pindex[iDigN]]!=contribs[pindex[iDigN+1]]) { Int_t thecontrib = contribs[pindex[iDigN]]; if (thecontrib>=pStack->GetNtrack()) continue;//PH this should not happen TParticle* particle = pStack->Particle(thecontrib); if (!particle) continue;//PH this should not happen Int_t code = particle->GetPdgCode(); Double_t charge = 0; if(particle->GetPDG()) charge=particle->GetPDG()->Charge(); AliDebug(1,Form(" charge of particle %f",charge)); if(code==50000050) iNckovs++; if(code==50000051) iNfeeds++; if(charge!=0) iNmips++; } }//loop on digits to sort Tid if (contribs[pindex[3*pCluster->Size()-1]]!=-1) { Int_t thecontrib = contribs[pindex[3*pCluster->Size()-1]]; if (thecontribGetNtrack()){ //PH the opposite should not happen TParticle* particle = pStack->Particle(thecontrib); if (particle) { //PH the opposite should not happen Int_t code = particle->GetPdgCode(); Double_t charge = 0; if(particle->GetPDG()) charge=particle->GetPDG()->Charge(); AliDebug(1,Form(" charge of particle %f",charge)); if(code==50000050) iNckovs++; if(code==50000051) iNfeeds++; if(charge!=0) iNmips++; } } } pCluster->CFM(iNckovs,iNfeeds,iNmips); // delete [] pindex; ToAliDebug(1,pCluster->Print()); AliDebug(1,"Stop."); }//FindClusterContribs() //__________________________________________________________________________________________________ void AliRICHClusterFinder::FormRawCluster(Int_t i, Int_t j) { //Builds the raw cluster (before deconvolution). Starts from the first pad (i,j) then calls itself recursevly for all neighbours. AliDebug(1,Form("Start with digit(%i,%i) Q=%f",i,j,((AliRICHDigit*)fDigitMap->GetHit(i,j))->Qdc())); fRawCluster.AddDigit((AliRICHDigit*) fDigitMap->GetHit(i,j));//take this pad in cluster fDigitMap->FlagHit(i,j);//flag this pad as taken Int_t listX[4], listY[4]; // Now look recursively for all neighbours for (Int_t iNei=0;iNeiP()->PadNeighbours(i,j,listX,listY);iNei++) if(fDigitMap->TestHit(listX[iNei],listY[iNei])==kUnused) FormRawCluster(listX[iNei],listY[iNei]); }//FormRawCluster() //__________________________________________________________________________________________________ void AliRICHClusterFinder::FindLocalMaxima() { //find number of local maxima in the current raw cluster and then calculates initial center of gravity fNlocals=0; AliDebug(1,Form("Cluster size of the Raw cluster ---> %i",fRawCluster.Size())); for(Int_t iDig1=0;iDig1At(iDig1); if(!pDig1) {fNlocals=0;return;} TVector pad1 = pDig1->Pad(); Int_t padQ1 = (Int_t)(pDig1->Qdc()+0.1); Int_t padC1 = pDig1->Cfm(); for(Int_t iDig2=0;iDig2At(iDig2); if(!pDig2) {fNlocals=0;return;} TVector pad2 = pDig2->Pad(); Int_t padQ2 = (Int_t)(pDig2->Qdc()+0.1); if(iDig1==iDig2) continue; Int_t diffx = TMath::Sign(Int_t(pad1[0]-pad2[0]),1); Int_t diffy = TMath::Sign(Int_t(pad1[1]-pad2[1]),1); if((diffx+diffy)<=1) { if(padQ2>=padQ1) iNotMax++; } } if(iNotMax==0) { if (fNlocals<100) { TVector2 x2=AliRICHParam::Pad2Loc(pad1); fLocalX[fNlocals]=x2.X();fLocalY[fNlocals]=x2.Y(); fLocalQ[fNlocals] = (Double_t)padQ1; fLocalC[fNlocals] = padC1; fNlocals++; } } } AliDebug(1,Form("Number of local maxima found ---> %i",fNlocals)); fRawCluster.CoG(fNlocals); //first initial approximation of the CoG...to start minimization. }//FindLocalMaxima() //__________________________________________________________________________________________________ void AliRICHClusterFinder::WriteRawCluster() { //Add the current raw cluster to the list of clusters AliDebug(1,"Start."); FindClusterContribs(&fRawCluster); R()->ClusterAdd(fRawCluster); ToAliDebug(1,fRawCluster.Print()); AliDebug(1,"Stop."); }//WriteRawCluster() //__________________________________________________________________________________________________ void AliRICHClusterFinder::WriteResolvedCluster() { //Add the current resolved cluster to the list of clusters AliDebug(1,"Start."); FindClusterContribs(&fResolvedCluster); R()->ClusterAdd(fResolvedCluster); ToAliDebug(1,fResolvedCluster.Print()); AliDebug(1,"Stop."); }//WriteResolvedCluster() //__________________________________________________________________________________________________ void AliRICHClusterFinder::FitCoG() { //Fits cluster of size by the corresponding number of Mathieson shapes. //This methode is only invoked in case everything is ok to start deconvolution AliDebug(1,"Start with:"); ToAliDebug(1,fRawCluster.Print()); Double_t arglist; Int_t ierflag = 0; AliDebug(1,Form("MINUIT Started with %i parameters and %i local maxima",3*fNlocals-1,fNlocals)); // TMinuit *pMinuit = new TMinuit(3*fNlocals-1); TMinuit *pMinuit = new TMinuit(100); pMinuit->mninit(5,10,7); arglist = -1; pMinuit->mnexcm("SET PRI",&arglist, 1, ierflag); pMinuit->mnexcm("SET NOW",&arglist, 0, ierflag); TString chname; Int_t ierflg; pMinuit->SetObjectFit((TObject*)this); pMinuit->SetFCN(RICHMinMathieson); Double_t vstart,lower, upper; Double_t stepX= 0.01; Double_t stepY= 0.01; Double_t stepQ= 0.01; for(Int_t i=0;imnparm(3*i ,Form("xCoG %i",i),vstart,stepX,lower,upper,ierflag); AliDebug(1,Form("xCoG %i vstart %f lower %f upper %f ",i,vstart,lower,upper)); vstart = fLocalY[i]; lower = vstart - 2*AliRICHParam::PadSizeY(); upper = vstart + 2*AliRICHParam::PadSizeY(); pMinuit->mnparm(3*i+1,Form("yCoG %i",i),vstart,stepY,lower,upper,ierflag); AliDebug(1,Form("yCoG %i vstart %f lower %f upper %f ",i,vstart,lower,upper)); if(i==fNlocals-1) break; // last parameter is constrained vstart = fLocalQ[i]/fRawCluster.Q(); lower = 0; upper = 1; pMinuit->mnparm(3*i+2,Form("qfrac %i",i),vstart,stepQ,lower,upper,ierflag); AliDebug(1,Form("qfrac %i vstart %f lower %f upper %f ",i,vstart,lower,upper)); } arglist = -1; pMinuit->mnexcm("SET NOGR",&arglist, 1,ierflag); arglist = 1; pMinuit->mnexcm("SET ERR" ,&arglist, 1,ierflg); arglist = -1; pMinuit->mnexcm("SIMPLEX" ,&arglist, 0,ierflag); pMinuit->mnexcm("MIGRAD",&arglist, 0, ierflag); // pMinuit->mnexcm("EXIT" ,&arglist, 0, ierflag); Double_t xCoG[50],yCoG[50],qfracCoG[50]; Double_t eps, b1, b2; Double_t qfraclast=0; for(Int_t i=0;imnpout(3*i ,chname, xCoG[i], eps , b1, b2, ierflg); pMinuit->mnpout(3*i+1,chname, yCoG[i], eps , b1, b2, ierflg); if(i==fNlocals-1) break; pMinuit->mnpout(3*i+2,chname, qfracCoG[i], eps , b1, b2, ierflg); qfraclast+=qfracCoG[i]; } qfracCoG[fNlocals-1] = 1 - qfraclast; delete pMinuit; for(Int_t i=0;iGetObjectFit())->GetRawCluster(); TVector2 centroid[50]; Double_t q[50]; Int_t nFunctions = (npar+1)/3; Double_t qfract = 0; for(Int_t i=0;iQ(); for(Int_t i=0;iSize();i++) { TVector pad=((AliRICHDigit *)pRawCluster->Digits()->At(i))->Pad(); Double_t padQ = ((AliRICHDigit *)pRawCluster->Digits()->At(i))->Qdc(); Double_t qfracpar=0; for(Int_t j=0;j