]> git.uio.no Git - u/mrichter/AliRoot.git/blame - RICH/AliRICHTracker.cxx
Adding cut on invariant mass values in the pre-triiger decision of the AliMUONCocktai...
[u/mrichter/AliRoot.git] / RICH / AliRICHTracker.cxx
CommitLineData
998b831f 1#include "AliRICHTracker.h"
2#include <AliESD.h>
3#include <TVector3.h>
4#include <TTree.h>
5#include "AliRICH.h"
6#include "AliRICHHelix.h"
7#include <AliMagF.h>
8#include "AliRICHRecon.h"
9#include <AliStack.h>
10#include <TParticle.h>
30c60010 11#include <TMath.h>
0fe8fa07 12#include <AliRun.h>
998b831f 13ClassImp(AliRICHTracker)
30c60010 14//__________________________________________________________________________________________________
998b831f 15Int_t AliRICHTracker::PropagateBack(AliESD *pESD)
16{
a25b3368 17// Interface callback methode invoked by AliRecontruction during tracking after TOF
18// It steers to different way to provide the final reconstructed information sutable for analisys:
19// 1. AliESD - reconstructed tracks are used
20// 2. RICH private ntuple for debug- stack particles used instead of reconstructed tracks
30c60010 21 AliDebug(1,"Start pattern recognition");
910735ae 22 if(pESD->GetNumberOfTracks()) {
23 Int_t iNtracks=pESD->GetNumberOfTracks();
24 AliDebug(1,Form("Start with %i tracks",iNtracks));
25 AliRICH *pRich=((AliRICH*)gAlice->GetDetector("RICH"));
26 for(Int_t iTrackN=0;iTrackN<iNtracks;iTrackN++){//ESD tracks loop
27 RecWithESD(pESD,pRich,iTrackN);
28 }
29 }
30 else RecWithStack(0);
30c60010 31 AliDebug(1,"Stop pattern recognition");
30c60010 32 return 0; // error code: 0=no error;
a25b3368 33}//PropagateBack()
30c60010 34//__________________________________________________________________________________________________
910735ae 35void AliRICHTracker::RecWithESD(AliESD *pESD,AliRICH *pRich,Int_t iTrackN)
30c60010 36{
d3eb6079 37//recontruction from ESD- primary way to reconstruct particle ID signal from tracks provided by core detectors
fab9e039 38 fnPhotBKG = 0;
d3eb6079 39
910735ae 40 Double_t fField=GetFieldMap()->SolenoidField()/10;// magnetic field in Tesla
998b831f 41 AliESDtrack *pTrack = pESD->GetTrack(iTrackN);// get next reconstructed track
42// if((pTrack->GetStatus()&AliESDtrack::kTOFout)==0) continue; //ignore tracks not recontructed by TOF
d3eb6079 43// pTrack->GetXYZ(xb);
44// pTrack->GetPxPyPz(pb);
1cb5a97c 45 Int_t status=pTrack->GetStatus()&AliESDtrack::kTOFout;//get running track parameters
910735ae 46 Int_t charge = (Int_t)(-TMath::Sign(1.,pTrack->GetSign()*fField));
39853df5 47 AliDebug(1,Form("Track %i pmod=%f charge=%i stat=%i",iTrackN,pTrack->GetP(),charge,status));
910735ae 48 AliRICHHelix helix(pTrack->X3(),pTrack->P3(),charge,fField);
998b831f 49 Int_t iChamber=helix.RichIntersect(pRich->P());
50 AliDebug(1,Form("intersection with %i chamber found",iChamber));
910735ae 51 if(!iChamber) return;//intersection with no chamber found
0fe8fa07 52//find MIP cluster candidate (cluster which is closest to track intersection point)
d3eb6079 53 Double_t distMip=9999,distX=0,distY=0; //min distance between clusters and track position on PC
f770edb5 54 Int_t iMipId=0; //index of that min distance cluster
55 Double_t chargeMip=0; //charge of the MIP
998b831f 56 for(Int_t iClusN=0;iClusN<pRich->Clusters(iChamber)->GetEntries();iClusN++){//clusters loop for intersected chamber
0fe8fa07 57 AliRICHCluster *pClus=(AliRICHCluster*)pRich->Clusters(iChamber)->UncheckedAt(iClusN);//get pointer to current cluster
d3eb6079 58 Double_t distCurrent=pClus->DistTo(helix.PosPc());//distance between current cluster and helix intersection with PC
a25b3368 59 if(distCurrent<distMip){
60 distMip=distCurrent;
61 iMipId=iClusN;
d3eb6079 62 distX=pClus->DistX(helix.PosPc());
63 distY=pClus->DistY(helix.PosPc());
f770edb5 64 chargeMip=pClus->Q();
a25b3368 65 }//find cluster nearest to the track
998b831f 66 AliDebug(1,Form("Ploc (%f,%f,%f) dist= %f",helix.Ploc().Mag(),helix.Ploc().Theta()*TMath::RadToDeg(),
a25b3368 67 helix.Ploc().Phi()*TMath::RadToDeg(),pClus->DistTo(helix.PosPc())));
68 }//clusters loop for intersected chamber
998b831f 69
70 AliDebug(1,Form("Min distance cluster: %i dist is %f",iMipId,distMip));
f770edb5 71//
72// HERE CUTS ON GOLD RINGS....
73//
fab9e039 74 if(distMip>AliRICHParam::DmatchMIP()||chargeMip<AliRICHParam::QthMIP()) {
f770edb5 75 //track not accepted for pattern recognition
76 pTrack->SetRICHsignal(-999.); //to be improved by flags...
910735ae 77 return;
f770edb5 78 }
79//
d3eb6079 80 AliRICHRecon recon(&helix,pRich->Clusters(iChamber),iMipId); //actual job is done there
101624cd 81
82 Double_t thetaCerenkov=recon.ThetaCerenkov(); //search for mean Cerenkov angle for this track
d3eb6079 83
910735ae 84 pTrack->SetRICHcluster(((Int_t)chargeMip)+1000000*iChamber);
d3eb6079 85 pTrack->SetRICHdxdy(distX,distY);
86 pTrack->SetRICHthetaPhi(helix.Ploc().Theta(),helix.Ploc().Phi());
101624cd 87 pTrack->SetRICHsignal(thetaCerenkov);
d3eb6079 88 pTrack->SetRICHnclusters(recon.GetHoughPhotons());
fab9e039 89
90 fnPhotBKG = recon.GetPhotBKG();
91
d3eb6079 92 AliDebug(1,Form("FINAL Theta Cerenkov=%f",pTrack->GetRICHsignal()));
101624cd 93//
94 if(pTrack->GetRICHsignal()>0) {
95 AliDebug(1,Form("Start to assign the probabilities"));
96 Double_t sigmaPID[AliPID::kSPECIES];
97 Double_t richPID[AliPID::kSPECIES];
98 for (Int_t iPart=0;iPart<AliPID::kSPECIES;iPart++) {
99 sigmaPID[iPart] = 0;
068217e3 100 fErrPar[iPart] = 0;
101624cd 101 for(Int_t iphot=0;iphot<pRich->Clusters(iChamber)->GetEntries();iphot++) {
102 recon.SetPhotonIndex(iphot);
103 if(recon.GetPhotonFlag() == 2) {
fab9e039 104 Double_t theta_g=recon.GetTrackTheta();
105 Double_t phi_g=(recon.GetPhiPoint()-recon.GetTrackPhi());
0f869664 106 Double_t sigma2 = AliRICHParam::SigmaSinglePhoton(iPart,pTrack->GetP(),theta_g,phi_g).Mag2();
107 if (sigma2>0)
108 sigmaPID[iPart] += 1/sigma2;
101624cd 109 }
110 }
0f869664 111 sigmaPID[iPart] *= (Double_t)(recon.GetHoughPhotons()-fnPhotBKG)/(Double_t)(recon.GetHoughPhotons()); // n total phots, m are background...the sigma are scaled..
d1be0d8a 112 if (sigmaPID[iPart]>0)
fab9e039 113 sigmaPID[iPart] = 1/TMath::Sqrt(sigmaPID[iPart])*0.001; // sigma from parametrization are in mrad...
0f869664 114 else
115 sigmaPID[iPart] = 0;
116 fErrPar[iPart]=sigmaPID[iPart];
101624cd 117 AliDebug(1,Form("sigma for %s is %f rad",AliPID::ParticleName(iPart),sigmaPID[iPart]));
118 }
119 CalcProb(thetaCerenkov,pTrack->GetP(),sigmaPID,richPID);
120 pTrack->SetRICHpid(richPID);
121 AliDebug(1,Form("PROBABILITIES ---> %f - %f - %f - %f - %f",richPID[0],richPID[1],richPID[2],richPID[3],richPID[4]));
910735ae 122 }
998b831f 123 AliDebug(1,"Stop.");
30c60010 124} //RecWithESD
125//__________________________________________________________________________________________________
1cb5a97c 126void AliRICHTracker::RecWithStack(TNtupleD *hn)
30c60010 127{
d3eb6079 128//Reconstruction for particles from STACK. This methode is to be used for RICH standalone when no other detectors are switched on,
129//so normal tracking is not available
130 AliDebug(1,"Start.");
30c60010 131 AliRICH *pRich=((AliRICH*)gAlice->GetDetector("RICH"));
132
1cb5a97c 133// pRich->GetLoader()->GetRunLoader()->LoadHeader();
d3eb6079 134 if(!pRich->GetLoader()->GetRunLoader()->TreeK()) pRich->GetLoader()->GetRunLoader()->LoadKinematics();
30c60010 135 AliStack *pStack = pRich->GetLoader()->GetRunLoader()->Stack();
39853df5 136 if(!pStack) {AliDebug(1,Form("No STACK found in AliRoot"));return;}
30c60010 137 Int_t iNtracks=pStack->GetNtrack();
1cb5a97c 138 AliDebug(1,Form(" Start reconstruction with %i track(s) from Stack",iNtracks));
139
ab92fbe6 140 Double_t hnvec[20];
1cb5a97c 141
30c60010 142 Double_t b=GetFieldMap()->SolenoidField()/10;// magnetic field in Tesla
143 AliDebug(1,Form("Start with simulated %i tracks in %f Tesla field",iNtracks,b));
144 TVector3 x0(0,0,0); TVector3 p0(0,0,0);//tmp storage for AliRICHHelix
145
146
1cb5a97c 147 if(pRich->GetLoader()->LoadRecPoints()) {AliDebug(1,Form("No clusters found in RICH"));return;}
148 pRich->GetLoader()->TreeR()->GetEntry(0);
149
a25b3368 150 for(Int_t iTrackN=0;iTrackN<iNtracks;iTrackN++){//stack particles loop
30c60010 151 TParticle *pParticle = pStack->Particle(iTrackN);
39853df5 152 if(!pParticle) {AliDebug(1,Form("Not a valid TParticle pointer. Track skipped"));continue;}
153 AliDebug(1,Form(" PDG code : %i",pParticle->GetPdgCode()));
ab92fbe6 154//
155// problem of PDG code of some extra particles to be solved!!!!!!!!!
156//
157// found problem! Look in TRD directory : codes from Fluka are :
158//
159// if ((pdg_code == 10010020) ||
160// (pdg_code == 10010030) ||
161// (pdg_code == 50000050) ||
162// (pdg_code == 50000051) ||
163// (pdg_code == 10020040)) {
164//
165 if(pParticle->GetPdgCode()>=50000050||pParticle->GetPdgCode()==0||pParticle->GetPdgCode()>10000) {AliDebug(1,Form("A photon as track... Track skipped"));continue;}
166//
167// to be updated for us!!
168//
9f873529 169 AliDebug(1,Form("Track %i is a %s with charge %i and momentum %f",
170 iTrackN,pParticle->GetPDG()->GetName(),Int_t(pParticle->GetPDG()->Charge()),pParticle->P()));
171// if(pParticle->GetMother(0)!=-1) continue; //consider only primaries
172 if(pParticle->GetPDG()->Charge()==0||TMath::Abs(Int_t(pParticle->GetPDG()->Charge()))!=3) continue; //to avoid photons from stack...
1cb5a97c 173 hnvec[0]=pParticle->P();
174 hnvec[1]=pParticle->GetPDG()->Charge();
30c60010 175 p0.SetMagThetaPhi(pParticle->P(),pParticle->Theta(),pParticle->Phi());
176 x0.SetXYZ(pParticle->Vx(),pParticle->Vy(),pParticle->Vz());
9f873529 177 AliRICHHelix helix(x0,p0,TMath::Sign(1,(Int_t)pParticle->GetPDG()->Charge()),b);
30c60010 178 Int_t iChamber=helix.RichIntersect(pRich->P());
ef210ba6 179 hnvec[2]=helix.Ploc().Theta();
180 hnvec[3]=helix.Ploc().Phi();
30c60010 181 AliDebug(1,Form("intersection with %i chamber found",iChamber));
1cb5a97c 182 if(!iChamber) continue;// no intersection with RICH found
183 hnvec[4]=helix.PosPc().X();
184 hnvec[5]=helix.PosPc().Y();
185 Double_t distMip=9999; //min distance between clusters and track position on PC
0fe8fa07 186 Double_t mipX=-1; //min distance between clusters and track position on PC
187 Double_t mipY=-1; //min distance between clusters and track position on PC
188 Double_t chargeMip=-1; // charge MIP to find
189 Int_t iMipId=-1; //index of that min distance cluster
30c60010 190 for(Int_t iClusN=0;iClusN<pRich->Clusters(iChamber)->GetEntries();iClusN++){//clusters loop for intersected chamber
0fe8fa07 191 AliRICHCluster *pClus=(AliRICHCluster*)pRich->Clusters(iChamber)->UncheckedAt(iClusN);//get pointer to current cluster
30c60010 192 Double_t distCurrent=pClus->DistTo(helix.PosPc());//ditance between current cluster and helix intersection with PC
1cb5a97c 193 if(distCurrent<distMip){distMip=distCurrent;mipX=pClus->X();
194 mipY=pClus->Y();
195 chargeMip=pClus->Q();iMipId=1000000*iChamber+iClusN;}//find cluster nearest to the track
30c60010 196
197 AliDebug(1,Form("Ploc (%f,%f,%f) dist= %f",helix.Ploc().Mag(),helix.Ploc().Theta()*TMath::RadToDeg(),
198 helix.Ploc().Phi()*TMath::RadToDeg(),pClus->DistTo(helix.PosPc())));
a25b3368 199 }//clusters loop for intersected chamber
30c60010 200
201 AliDebug(1,Form("Min distance cluster: %i dist is %f",iMipId,distMip));
1cb5a97c 202 hnvec[6]=mipX;hnvec[7]=mipY;
203 hnvec[8]=chargeMip;
30c60010 204 AliRICHRecon recon(&helix,pRich->Clusters(iChamber),iMipId);
205 Double_t thetaCerenkov=recon.ThetaCerenkov(); //search for mean Cerenkov angle for this track
1cb5a97c 206 hnvec[9]=thetaCerenkov;
207 hnvec[10]=recon.GetHoughPhotons();
208 hnvec[11]=(Double_t)iMipId;
ab92fbe6 209 hnvec[12]=(Double_t)iChamber;
210 hnvec[13]=(Double_t)pParticle->GetPdgCode();
1cb5a97c 211 if(hn) hn->Fill(hnvec);
30c60010 212 AliDebug(1,Form("FINAL Theta Cerenkov=%f",thetaCerenkov));
a25b3368 213 }//stack particles loop
1cb5a97c 214
39853df5 215 pRich->GetLoader()->UnloadRecPoints();
30c60010 216 AliDebug(1,"Stop.");
a25b3368 217}//RecWithStack
218//__________________________________________________________________________________________________
998b831f 219Int_t AliRICHTracker::LoadClusters(TTree *pTree)
220{
221// Load clusters for RICH
222 AliDebug(1,"Start."); pTree->GetEntry(0); AliDebug(1,"Stop."); return 0;
223}
30c60010 224//__________________________________________________________________________________________________
101624cd 225void AliRICHTracker::CalcProb(Double_t thetaCer,Double_t pmod, Double_t *sigmaPID, Double_t *richPID)
30c60010 226{
12b0e5f4 227// Calculates probability to be a electron-muon-pion-kaon-proton
a25b3368 228// from the given Cerenkov angle and momentum assuming no initial particle composition
12b0e5f4 229// (i.e. apriory probability to be the particle of the given sort is the same for all sorts)
304864ab 230 Double_t height[AliPID::kSPECIES];Double_t totalHeight=0;
101624cd 231 Double_t thetaTh[AliPID::kSPECIES];
304864ab 232 for(Int_t iPart=0;iPart<AliPID::kSPECIES;iPart++){
101624cd 233 height[iPart]=0;
068217e3 234 Double_t mass = AliRICHParam::fgMass[iPart];
101624cd 235 Double_t refIndex=AliRICHParam::RefIdxC6F14(AliRICHParam::MeanCkovEnergy());
30c60010 236 Double_t cosThetaTh = TMath::Sqrt(mass*mass+pmod*pmod)/(refIndex*pmod);
101624cd 237 thetaTh[iPart]=0;
238 if(cosThetaTh>=1) continue;
239 thetaTh[iPart] = TMath::ACos(cosThetaTh);
240// Double_t sinThetaThNorm = TMath::Sin(thetaTh)/TMath::Sqrt(1-1/(refIndex*refIndex));
241// Double_t sigmaThetaTh = (0.014*(1/sinThetaThNorm-1) + 0.0043)*1.25;
242// height[iPart] = TMath::Gaus(thetaCer,thetaTh,sigmaThetaTh);
243 height[iPart] = TMath::Gaus(thetaCer,thetaTh[iPart],sigmaPID[iPart],kTRUE);
30c60010 244 totalHeight +=height[iPart];
101624cd 245 AliDebug(1,Form(" Particle %s with mass %f with height %f and thetaTH %f",AliPID::ParticleName(iPart),mass,height[iPart],thetaTh[iPart]));
12b0e5f4 246 AliDebug(1,Form(" partial height %15.14f total height %15.14f",height[iPart],totalHeight));
30c60010 247 }
12b0e5f4 248 if(totalHeight<1e-5) {for(Int_t iPart=0;iPart<AliPID::kSPECIES;iPart++)richPID[iPart]=1.0/AliPID::kSPECIES;return;}
101624cd 249 for(Int_t iPart=0;iPart<AliPID::kSPECIES;iPart++) richPID[iPart] = height[iPart]/totalHeight;
250 Int_t iPartNear = TMath::LocMax(AliPID::kSPECIES,richPID);
0f869664 251 if(TMath::Abs(thetaCer-thetaTh[iPartNear]) > 5*sigmaPID[iPartNear]) for(Int_t iPart=0;iPart<AliPID::kSPECIES;iPart++)richPID[iPart]=1.0/AliPID::kSPECIES;
07625543 252 //last line is to check if the nearest thetacerenkov to the teorethical one is within 5 sigma, otherwise no response (equal prob to every particle
101624cd 253
30c60010 254}//CalcProb
a25b3368 255//__________________________________________________________________________________________________