]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDTracker.cxx
Coverity defects (16716,16712) fixed
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDTracker.cxx
CommitLineData
3c6274c1 1#include "AliHMPIDTracker.h" //class header
e56b695f 2#include "AliHMPIDtrack.h" //class header
3c6274c1 3#include "AliHMPIDCluster.h" //GetTrackPoint(),PropagateBack()
4#include "AliHMPIDParam.h" //GetTrackPoint(),PropagateBack()
e56b695f 5#include "AliHMPIDPid.h" //Recon(),reconHTA()
59d9d4b3 6#include "AliHMPIDRecon.h" //Recon()
c458aab6 7#include "AliHMPIDRecoParamV1.h" //Recon()
b8541917 8#include "AliHMPIDReconstructor.h"//Recon()
57fcdc2b 9#include "AliHMPIDReconHTA.h" //ReconHTA()
3e630437 10#include <AliLog.h> //Recon()
57fcdc2b 11#include <AliESDEvent.h> //PropagateBack(),Recon()
c38d443f 12#include <AliESDtrack.h> //Intersect()
13#include <AliTracker.h>
d3da6dc4 14#include <AliRun.h> //GetTrackPoint(),PropagateBack()
15#include <AliTrackPointArray.h> //GetTrackPoint()
16#include <AliAlignObj.h> //GetTrackPoint()
59d9d4b3 17#include <AliCDBManager.h> //PropageteBack()
18#include <AliCDBEntry.h> //PropageteBack()
79439569 19#include "TTreeStream.h" // debug streamer
20//
423554a3 21// HMPID base class fo tracking
22//.
23//.
24//.
d3da6dc4 25ClassImp(AliHMPIDTracker)
94b1fbfa 26//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
c61a7285 27AliHMPIDTracker::AliHMPIDTracker():
28 AliTracker(),
79439569 29 fClu(new TObjArray(AliHMPIDParam::kMaxCh+1)),
30 fDebugStreamer(0)
94b1fbfa 31{
59d9d4b3 32// ctor. Create TObjArray of TClonesArray of AliHMPIDCluster
33//
34//
c61a7285 35 fClu->SetOwner(kTRUE);
ae5a42aa 36 for(int i=AliHMPIDParam::kMinCh;i<=AliHMPIDParam::kMaxCh;i++) fClu->AddAt(new TClonesArray("AliHMPIDCluster"),i);
79439569 37 fDebugStreamer = new TTreeSRedirector("HMPIDdebug.root");
38
59d9d4b3 39}//ctor
79439569 40
41
42AliHMPIDTracker::~AliHMPIDTracker(){
43 //
44 // destructor
45 //
46 delete fClu;
47 if (fDebugStreamer) delete fDebugStreamer;
48}
49
d3da6dc4 50//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
51Bool_t AliHMPIDTracker::GetTrackPoint(Int_t idx, AliTrackPoint& point) const
52{
53// Interface callback methode invoked from AliReconstruction::WriteAlignmentData() to get position of MIP cluster in MARS associated to a current track.
54// MIP cluster is reffered by index which is stored in AliESDtrack ???????
55// Arguments: idx- cluster index which is stored by HMPID in AliESDtrack
56// point- reference to the object where to store the point
57// Returns: status of operation if FALSE then AliReconstruction::WriteAlignmentData() do not store this point to array of points for current track.
58 if(idx<0) return kFALSE; //no MIP cluster assigned to this track in PropagateBack()
59d9d4b3 59 Int_t iCham=idx/1000000; Int_t iClu=idx%1000000;
2247c219 60 iClu = iClu%1000; //GetHMPIDcluIdx -> 1e+6*ch + 1e+3*clusize + cluIdx;
61 point.SetVolumeID(AliGeomManager::LayerToVolUID(AliGeomManager::kHMPID,iCham));//layer and chamber number
94b1fbfa 62 TClonesArray *pArr=(TClonesArray*)(*fClu)[iCham];
63 AliHMPIDCluster *pClu=(AliHMPIDCluster*)pArr->UncheckedAt(iClu);//get pointer to cluster
2247c219 64 Float_t xyz[3];
65 pClu->GetGlobalXYZ(xyz);
66 Float_t cov[6];
67 pClu->GetGlobalCov(cov);
68 point.SetXYZ(xyz,cov);
d3da6dc4 69 return kTRUE;
59d9d4b3 70}//GetTrackPoint()
71//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
39cd22e6 72Int_t AliHMPIDTracker::IntTrkCha(AliESDtrack *pTrk,Float_t &xPc,Float_t &yPc,Float_t &xRa,Float_t &yRa,Float_t &theta,Float_t &phi)
59d9d4b3 73{
74// Static method to find intersection in between given track and HMPID chambers
75// Arguments: pTrk- ESD track; xPc,yPc- track intersection with PC in LORS [cm]
76// Returns: intersected chamber ID or -1
b4866751 77 AliHMPIDtrack *hmpTrk = new AliHMPIDtrack(*pTrk); //create a hmpid track to be used for propagation and matching
ae5a42aa 78 for(Int_t i=AliHMPIDParam::kMinCh;i<=AliHMPIDParam::kMaxCh;i++){ //chambers loop
b4866751 79 Int_t chInt = IntTrkCha(i,hmpTrk,xPc,yPc,xRa,yRa,theta,phi);
80 if(chInt>=0) {delete hmpTrk;hmpTrk=0x0;return chInt;}
59d9d4b3 81 } //chambers loop
b4866751 82 delete hmpTrk; hmpTrk=0x0;
39cd22e6 83 return -1; //no intersection with HMPID chambers
59d9d4b3 84}//IntTrkCha()
d3da6dc4 85//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
496c71b0 86Int_t AliHMPIDTracker::IntTrkCha(Int_t ch,AliHMPIDtrack *pTrk,Float_t &xPc,Float_t &yPc,Float_t &xRa,Float_t &yRa,Float_t &theta,Float_t &phi)
87{
88// Static method to find intersection in between given track and HMPID chambers
89// Arguments: pTrk- HMPID track; xPc,yPc- track intersection with PC in LORS [cm]
90// Returns: intersected chamber ID or -1
91 AliHMPIDParam *pParam=AliHMPIDParam::Instance();
92 Double_t p1[3],n1[3];
93 pParam->Norm(ch,n1);
94 pParam->Point(ch,p1,AliHMPIDParam::kRad); //point & norm for middle of radiator plane
95 Double_t p2[3],n2[3];
b4866751 96 pParam->Norm(ch,n2);
496c71b0 97 pParam->Point(ch,p2,AliHMPIDParam::kPc); //point & norm for entrance to PC plane
97a4d538 98 if(pTrk->Intersect(p1,n1)==kFALSE) return -1; //try to intersect track with the middle of radiator
99 if(pTrk->Intersect(p2,n2)==kFALSE) return -1;
496c71b0 100 pParam->Mars2LorsVec(ch,n1,theta,phi); //track angles at RAD
101 pParam->Mars2Lors (ch,p1,xRa,yRa); //TRKxRAD position
102 pParam->Mars2Lors (ch,p2,xPc,yPc); //TRKxPC position
103 if(AliHMPIDParam::IsInside(xPc,yPc,pParam->DistCut())==kTRUE) return ch; //return intersected chamber
104 return -1; //no intersection with HMPID chambers
105}//IntTrkCha()
106//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
d3da6dc4 107Int_t AliHMPIDTracker::LoadClusters(TTree *pCluTree)
108{
59d9d4b3 109// Interface callback methode invoked from AliReconstruction::RunTracking() to load HMPID clusters before PropagateBack() gets control. Done once per event.
d3da6dc4 110// Arguments: pCluTree- pointer to clusters tree got by AliHMPIDLoader::LoadRecPoints("read") then AliHMPIDLoader::TreeR()
111// Returns: error code (currently ignored in AliReconstruction::RunTraking())
ae5a42aa 112 for(int i=AliHMPIDParam::kMinCh;i<=AliHMPIDParam::kMaxCh;i++) pCluTree->SetBranchAddress(Form("HMPID%d",i),&((*fClu)[i]));
94b1fbfa 113 pCluTree->GetEntry(0);
94b1fbfa 114 return 0;
59d9d4b3 115}//LoadClusters()
d3da6dc4 116//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
af885e0f 117Int_t AliHMPIDTracker::PropagateBack(AliESDEvent *pEsd)
abb5f786 118{
59d9d4b3 119// Interface pure virtual in AliTracker. Invoked from AliReconstruction::RunTracking() after invocation of AliTracker::LoadClusters() once per event
abb5f786 120// Agruments: pEsd - pointer to ESD
121// Returns: error code
f455af6e 122 AliCDBEntry *pNmeanEnt =AliCDBManager::Instance()->Get("HMPID/Calib/Nmean"); //contains TObjArray of 42 TF1 + 1 EPhotMean
49881df7 123 AliCDBEntry *pQthreEnt =AliCDBManager::Instance()->Get("HMPID/Calib/Qthre"); //contains TObjArray of 42 (7ch * 6sec) TF1
0a7c7084 124 if(!pNmeanEnt) AliError("No Nmean C6F14 ");
125 if(!pQthreEnt) AliError("No Qthre");
94b1fbfa 126
afe12692 127 return Recon(pEsd,fClu,(TObjArray*)pNmeanEnt->GetObject(),(TObjArray*)pQthreEnt->GetObject());
611e810d 128}//PropagateBack()
abb5f786 129//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
afe12692 130Int_t AliHMPIDTracker::Recon(AliESDEvent *pEsd,TObjArray *pClus,TObjArray *pNmean, TObjArray *pQthre)
d3da6dc4 131{
aed5907d 132// Static method to reconstruct the Cherenkov angle for all valid tracks of a given event.
59d9d4b3 133// Arguments: pEsd- pointer ESD; pClu- pointer to clusters for all chambers; pNmean - pointer to all function Nmean=f(time)
aed5907d 134// Returns: error code, 0 if no errors
135//
136// Algortihm: Loop over tracks
137//
138// 1. Find the closest MIP cluster using fast tracks extrapolation method
139// 2. Propagate track to the MIP cluster using the STEER method
140// 3. Update the track information with MIP cluster (Improved angular and position resolution - to be used for Cherenkov angle calculation)
141// 4. Propagate back the constrained track to the radiator radius ( not exact yet)
142// 5. Propagation in the last 10 cm with the fast method
143// 6. Set ESDtrack information
144// 7. Calculate the Cherenkov angle
145
146 const Double_t kMaxSnp=0.9; //maximal snp for prolongation
147 const Double_t kdRadiator=10; // distance between radiator and the plane
496c71b0 148 AliHMPIDRecon recon; //instance of reconstruction class, nothing important in ctor
b8541917 149 AliHMPIDParam *pParam = AliHMPIDParam::Instance(); //Instance of AliHMPIDParam
39cd22e6 150 Float_t xPc,yPc,xRa,yRa,theta,phi;
aed5907d 151
43e51ec6 152 Double_t cluLORS[2]={0};
496c71b0 153 Int_t nMipClusTot=0;
aed5907d 154
84770d7b 155 Double_t qthre = 0; Double_t nmean=0; Int_t hvsec=0;
496c71b0 156 Int_t nClusCh[AliHMPIDParam::kMaxCh+1];
3e630437 157
15f675cb 158 Bool_t tsRight = kTRUE;
159
3e630437 160 UInt_t tsmin = (UInt_t)((TF1*)pQthre->At(0))->GetXmin(); //
161 UInt_t tsmax = (UInt_t)((TF1*)pQthre->At(0))->GetXmax(); //
162 UInt_t ts = pEsd->GetTimeStamp();
496c71b0 163
3e630437 164 if(ts<tsmin || ts>tsmax) {
165 AliWarning(Form(" in HMPID time stamp out of range!!! Please check!!! ts = %i",ts));
15f675cb 166 tsRight = kFALSE;
3e630437 167 }
168
496c71b0 169 for(Int_t iTrk=0;iTrk<pEsd->GetNumberOfTracks();iTrk++){ //loop on the ESD tracks in the event
c38d443f 170
aed5907d 171 // Double_t bestChi2=99999;chi2=99999; //init. track matching params
b8541917 172 Double_t dmin=999999,bz=0,distCut=1,distParams[5]={1};
43e51ec6 173
174 Bool_t isOkDcut=kFALSE;
175 Bool_t isOkQcut=kFALSE;
176 Bool_t isMatched=kFALSE;
177
496c71b0 178 AliHMPIDCluster *bestHmpCluster=0x0; //the best matching cluster
c38d443f 179 AliESDtrack *pTrk = pEsd->GetTrack(iTrk); //get reconstructed track
180
181 if(!pTrk->IsOn(AliESDtrack::kTPCout)) continue;
182
183 if(pTrk->IsOn(AliESDtrack::kTPCrefit)) continue;
79439569 184 AliESDfriendTrack *ftrack= (AliESDfriendTrack *)pTrk->GetFriendTrack();
185 if (!ftrack) continue;
186 if (!ftrack->GetTPCOut()) continue;
496c71b0 187 AliHMPIDtrack *hmpTrk = new AliHMPIDtrack(*pTrk); //create a hmpid track to be used for propagation and matching
aed5907d 188 AliHMPIDtrack *hmpTrkConstrained = 0; //create a hmpid track to be used for propagation and matching
79439569 189 hmpTrk->Set(ftrack->GetTPCOut()->GetX(), ftrack->GetTPCOut()->GetAlpha(),ftrack->GetTPCOut()->GetParameter(), ftrack->GetTPCOut()->GetCovariance());
190 //
aed5907d 191 bz=AliTracker::GetBz();
192
193 //initial flags for HMPID ESD infos
43e51ec6 194 pTrk->SetHMPIDtrk(0,0,0,0); //no intersection found
195 pTrk->SetHMPIDmip(0,0,0,0); //store mip info in any case
196 pTrk->SetHMPIDcluIdx(99,99999); //chamber not found, mip not yet considered
197 pTrk->SetHMPIDsignal(AliHMPIDRecon::kNotPerformed); //ring reconstruction not yet performed
496c71b0 198
af291e40 199 Int_t ipCh=IntTrkCha(pTrk,xPc,yPc,xRa,yRa,theta,phi); //find the intersected chamber for this track
4ccd1903 200 if(ipCh<0) {delete hmpTrk;hmpTrk=0x0;continue;} //no intersection at all, go after next track
43e51ec6 201
97a4d538 202 pTrk->SetHMPIDtrk(xPc,yPc,theta,phi); //store initial infos
43e51ec6 203 pTrk->SetHMPIDcluIdx(ipCh,9999); //set chamber, index of cluster + cluster size
496c71b0 204
aed5907d 205 // track intersects the chamber ipCh: find the MIP
496c71b0 206
207 TClonesArray *pMipCluLst=(TClonesArray *)pClus->At(ipCh); //get the list of clusters
208 nMipClusTot = pMipCluLst->GetEntries(); //total number of clusters in the given chamber
209 nClusCh[ipCh] = nMipClusTot;
210
4ccd1903 211 if(nMipClusTot==0) {delete hmpTrk;hmpTrk=0x0;continue;}
43e51ec6 212
aed5907d 213 Int_t index=-1; //index of the "best" matching cluster
214 //
215 // 1. Find the closest MIP cluster using fast tracks extrapolation method
216 //
217 for (Int_t iClu=0; iClu<nMipClusTot;iClu++) { //clusters loop
496c71b0 218
aed5907d 219 AliHMPIDCluster *pClu=(AliHMPIDCluster*)pMipCluLst->UncheckedAt(iClu); //get the cluster
220 // evaluate qThre
15f675cb 221 if(tsRight){
aed5907d 222 if(pQthre->GetEntriesFast()==pParam->kMaxCh+1) {
223 qthre=((TF1*)pQthre->At(pClu->Ch()))->Eval(ts); //
224 } else { // in the past just 1 qthre
225 hvsec = pParam->InHVSector(pClu->Y()); // per chamber
226 if(hvsec>=0) qthre=((TF1*)pQthre->At(6*ipCh+hvsec))->Eval(ts); //
15f675cb 227 }
228 } else qthre = pParam->QCut();
aed5907d 229
230 //
496c71b0 231 if(pClu->Q()<qthre) continue; //charge compartible with MIP clusters
232 isOkQcut = kTRUE;
aed5907d 233 //
234 cluLORS[0]=pClu->X(); cluLORS[1]=pClu->Y(); //get the LORS coordinates of the cluster
43e51ec6 235 Double_t dist = TMath::Sqrt((xPc-cluLORS[0])*(xPc-cluLORS[0])+(yPc-cluLORS[1])*(yPc-cluLORS[1]));
236
237 if(dist<dmin) {
238 dmin = dist;
239 index=iClu;
240 bestHmpCluster=pClu;
241 }
4ccd1903 242 } // clusters loop
b8541917 243
aed5907d 244 // moved down
245 /*if(!isOkQcut) {
496c71b0 246 pTrk->SetHMPIDsignal(pParam->kMipQdcCut);
4ccd1903 247 delete hmpTrk;hmpTrk=0x0; continue;
aed5907d 248 }*/
249
250 //
251 // 2. Propagate track to the MIP cluster using the STEER method
79439569 252 //
95d2d29e 253
254 if(!bestHmpCluster) {delete hmpTrk;hmpTrk=0x0; delete hmpTrkConstrained;hmpTrkConstrained=0x0; continue;}
255
79439569 256 TVector3 vG = pParam->Lors2Mars(ipCh,bestHmpCluster->X(),bestHmpCluster->Y());
257 Double_t gx = vG[0];
258 Double_t gy = vG[1];
259 Double_t gz = vG[2];
260 Double_t alpha=TMath::ATan2(gy,gx);
261 Double_t radiusH=TMath::Sqrt(gy*gy+gx*gx);
aed5907d 262 if (!(hmpTrk->Rotate(alpha,kTRUE))) continue;
263 if(!AliTrackerBase::PropagateTrackToBxByBz(hmpTrk,radiusH,pTrk->GetMass(),1,kFALSE,kMaxSnp,-1)) {delete hmpTrk;hmpTrk=0x0; delete hmpTrkConstrained;hmpTrkConstrained=0x0; continue;}
79439569 264 //
aed5907d 265 // 3. Update the track with MIP cluster (Improved angular and position resolution - to be used for Cherenkov angle calculation)
266 //
267 AliExternalTrackParam trackC(*hmpTrk);
268 Double_t posC[2]={0,gz};
269 Double_t covC[3]={0.1*0.1, 0, 0.1*0.1};
270 trackC.Update(posC,covC);
271 //
272 // 4. Propagate back the constrained track to the radiator radius ( not exact yet)
273 //
274 hmpTrkConstrained = new AliHMPIDtrack(*pTrk);
275 hmpTrkConstrained->Set(trackC.GetX(), trackC.GetAlpha(),trackC.GetParameter(), trackC.GetCovariance());
276 if(!AliTrackerBase::PropagateTrackToBxByBz(hmpTrkConstrained,radiusH-kdRadiator,pTrk->GetMass(),1,kFALSE,kMaxSnp,1)) {delete hmpTrk;hmpTrk=0x0; delete hmpTrkConstrained;hmpTrkConstrained=0x0;continue;}
277 //
278 // 5. Propagation in the last 10 cm with the fast method
279 //
280 Float_t xPc0=0, yPc0=0;
281
282 IntTrkCha(ipCh, hmpTrk, xPc0,yPc0,xRa,yRa,theta,phi);
283 IntTrkCha(ipCh, hmpTrkConstrained, xPc,yPc,xRa,yRa,theta,phi);
284 //
285 // 6. Set ESDtrack information
286 //
287 Int_t cluSiz = bestHmpCluster->Size();
288 pTrk->SetHMPIDmip(bestHmpCluster->X(),bestHmpCluster->Y(),(Int_t)bestHmpCluster->Q(),0); //store mip info in any case
289 pTrk->SetHMPIDcluIdx(ipCh,index+1000*cluSiz); //set chamber, index of cluster + cluster size
290 pTrk->SetHMPIDtrk(xPc0,yPc0,theta,phi);
79439569 291 //
79439569 292 //
293 // Dump debug info if specified
294 //
aed5907d 295 if (AliHMPIDReconstructor::StreamLevel()>0) {
79439569 296 AliExternalTrackParam * trackTPC=new AliExternalTrackParam(*(ftrack->GetTPCOut()));
297 AliExternalTrackParam * trackCurrent=new AliExternalTrackParam(*pTrk);
298 trackTPC->Rotate(alpha);
299 trackCurrent->Rotate(alpha);
300 Bool_t statusTPC= AliTracker::PropagateTrackToBxByBz(trackTPC,radiusH,pTrk->GetMass(),1,kFALSE,kMaxSnp,-1);
301 Bool_t statusCurrent=AliTracker::PropagateTrackToBxByBz(trackCurrent,radiusH,pTrk->GetMass(),1,kFALSE,kMaxSnp,-1);
aed5907d 302 Double_t tanAlpha=TMath::Tan(TMath::ASin(trackTPC->GetSnp()));
79439569 303 Double_t deltaC= trackTPC->GetC(AliTrackerBase::GetBz())-ftrack->GetTPCOut()->GetC(AliTrackerBase::GetBz());
304 //
aed5907d 305 AliExternalTrackParam * trackTPCConstrained= new AliExternalTrackParam(*trackTPC);
306 Double_t pos[2]={0,gz};
307 Double_t cov[3]={0.1*0.1, 0, 0.1*0.1};
308 Double_t chi2C = trackTPCConstrained->GetPredictedChi2(pos,cov);
309 trackTPCConstrained->Update(pos,cov);
79439569 310 (*fDebugStreamer)<<"track"<<
aed5907d 311 "rH="<<radiusH<< // radius of cluster
312 "angle="<<tanAlpha<< // tan of the local inlination angle
313 "dC="<<deltaC<< // delta of the curvature
314 "trackTPC.="<<trackTPC<< // TPc outer param extrapolated to the HMPID
315 "chi2C="<<chi2C<<
316 "trackTPCC.="<<trackTPCConstrained<< // TPc outer param extrapolated to the HMPID
317 "trackCurrent.="<<trackCurrent<< // current track extrapolated to the HMPID
318 "sTPC="<<statusTPC<< // status for the current TPC track
319 "sCurrent="<<statusCurrent<< // status for the current global track
320 "cl.="<<bestHmpCluster<< // HMPID cluster
79439569 321 //
aed5907d 322 "t.="<<pTrk<< // curent esd track
323 "ft.="<<ftrack<< // friend track
324 "hmpTrk.="<<hmpTrk<< // hmpid tracks as used in the following code
325 "hmpTrkC.="<<hmpTrkConstrained<< // hmpid tracks as used in the following code
326 "gx="<<gx<< // global cluster position X
327 "gy="<<gy<< // Y
328 "gz="<<gz<< // Z
79439569 329 "\n";
aed5907d 330 }
331 //
332 //
333 //
334 if(!isOkQcut) {
335 pTrk->SetHMPIDsignal(pParam->kMipQdcCut);
336 delete hmpTrk;hmpTrk=0x0;
337 delete hmpTrkConstrained;hmpTrkConstrained=0x0;
338 continue;
339 }
79439569 340
b8541917 341 if(AliHMPIDReconstructor::GetRecoParam()) //retrieve distance cut
342 {
b8541917 343 if(AliHMPIDReconstructor::GetRecoParam()->IsFixedDistCut()==kTRUE) //distance cut is fixed number
344 {
345 distCut=AliHMPIDReconstructor::GetRecoParam()->GetHmpTrackMatchingDist();
346 }
347 else
348 {
13fb7604 349 for(Int_t ipar=0;ipar<5;ipar++) distParams[ipar]=AliHMPIDReconstructor::GetRecoParam()->GetHmpTrackMatchingDistParam(ipar); //prevision: distance cut is function of momentum
b8541917 350 distCut=distParams[0]+distParams[1]*TMath::Power(distParams[2]*pTrk->GetP(),distParams[3]); //prevision: change functional form to be more precise
351 }
352 }
353 else {distCut=pParam->DistCut();}
aed5907d 354
355 //dmin recalculated
356
357 dmin = TMath::Sqrt((xPc0-bestHmpCluster->X())*(xPc0-bestHmpCluster->X())+(yPc0-bestHmpCluster->Y())*(yPc0-bestHmpCluster->Y()));
358
b8541917 359 if(dmin < distCut) {
496c71b0 360 isOkDcut = kTRUE;
4ccd1903 361 }
aed5907d 362 //isOkDcut = kTRUE; // switch OFF cut
b8541917 363
496c71b0 364 if(!isOkDcut) {
496c71b0 365 pTrk->SetHMPIDsignal(pParam->kMipDistCut); //closest cluster with enough charge is still too far from intersection
366 }
367
368 if(isOkQcut*isOkDcut) isMatched = kTRUE; // MIP-Track matched !!
369
aed5907d 370 if(!isMatched) {delete hmpTrk;hmpTrk=0x0;delete hmpTrkConstrained;hmpTrkConstrained=0x0;continue;} // If matched continue...
43e51ec6 371
aed5907d 372 Bool_t isOk = kTRUE;
95d2d29e 373 if(!isOk) {delete hmpTrk;hmpTrk=0x0; delete hmpTrkConstrained;hmpTrkConstrained=0x0; continue;}
aed5907d 374 pTrk->SetOuterHmpParam(hmpTrkConstrained,AliESDtrack::kHMPIDout);
c38d443f 375
376 FillResiduals(hmpTrk,bestHmpCluster,kFALSE);
b8541917 377
aed5907d 378 Int_t iRad = pParam->Radiator(yRa); //evaluate the radiator involved
496c71b0 379
496c71b0 380 //evaluate nMean
15f675cb 381 if(tsRight){
382 if(pNmean->GetEntries()==21) { //for backward compatibility
383 nmean=((TF1*)pNmean->At(3*ipCh))->Eval(ts); //C6F14 Nmean for this chamber
384 } else {
15f675cb 385 if(iRad < 0) {
0a7c7084 386 nmean = -1;
15f675cb 387 } else {
388 Double_t tLow = ((TF1*)pNmean->At(6*ipCh+2*iRad ))->Eval(ts); //C6F14 low temp for this chamber
389 Double_t tHigh = ((TF1*)pNmean->At(6*ipCh+2*iRad+1))->Eval(ts); //C6F14 high temp for this chamber
390 Double_t tExp = pParam->FindTemp(tLow,tHigh,yRa); //estimated temp for that chamber at that y
391 nmean = pParam->NIdxRad(AliHMPIDParam::Instance()->GetEPhotMean(),tExp); //mean ref idx @ a given temp
392 }
393 if(nmean < 0){ //track didn' t pass through the radiator
496c71b0 394 pTrk->SetHMPIDsignal(AliHMPIDRecon::kNoRad); //set the appropriate flag
395 pTrk->SetHMPIDcluIdx(ipCh,index+1000*cluSiz); //set index of cluster
4ccd1903 396 delete hmpTrk;hmpTrk=0x0;
aed5907d 397 delete hmpTrkConstrained;hmpTrkConstrained=0x0;
496c71b0 398 continue;
15f675cb 399 }
aed5907d 400 }
401 } else nmean = pParam->MeanIdxRad();
402 //
403 // 7. Calculate the Cherenkov angle
496c71b0 404 //
aed5907d 405 recon.SetImpPC(xPc0,yPc0); //store track impact to PC
97a4d538 406 recon.CkovAngle(pTrk,(TClonesArray *)pClus->At(ipCh),index,nmean,xRa,yRa); //search for Cerenkov angle of this track
aed5907d 407
408 Double_t thetaCkov = pTrk->GetHMPIDsignal();
409
410 if (AliHMPIDReconstructor::StreamLevel()>0) {
411 AliExternalTrackParam * trackTPC=new AliExternalTrackParam(*(ftrack->GetTPCOut()));
412 AliExternalTrackParam * trackCurrent=new AliExternalTrackParam(*pTrk);
413 trackTPC->Rotate(alpha);
414 trackCurrent->Rotate(alpha);
415 Bool_t statusTPC= AliTracker::PropagateTrackToBxByBz(trackTPC,radiusH,pTrk->GetMass(),1,kFALSE,kMaxSnp,-1);
416 Bool_t statusCurrent=AliTracker::PropagateTrackToBxByBz(trackCurrent,radiusH,pTrk->GetMass(),1,kFALSE,kMaxSnp,-1);
417 Double_t tanAlpha=TMath::Tan(TMath::ASin(trackTPC->GetSnp()));
418 Double_t deltaC= trackTPC->GetC(AliTrackerBase::GetBz())-ftrack->GetTPCOut()->GetC(AliTrackerBase::GetBz());
419 //
420 AliExternalTrackParam * trackTPCConstrained= new AliExternalTrackParam(*trackTPC);
421 Double_t pos[2]={0,gz};
422 Double_t cov[3]={0.1*0.1, 0, 0.1*0.1};
423 Double_t chi2C = trackTPCConstrained->GetPredictedChi2(pos,cov);
424 trackTPCConstrained->Update(pos,cov);
425 (*fDebugStreamer)<<"track2"<<
426 "rH="<<radiusH<< // radius of cluster
427 "angle="<<tanAlpha<< // tan of the local inlination angle
428 "dC="<<deltaC<< // delta of the curvature
429 "trackTPC.="<<trackTPC<< // TPc outer param extrapolated to the HMPID
430 "chi2C="<<chi2C<<
431 "trackTPCC.="<<trackTPCConstrained<< // TPc outer param extrapolated to the HMPID
432 "trackCurrent.="<<trackCurrent<< // current track extrapolated to the HMPID
433 "sTPC="<<statusTPC<< // status for the current TPC track
434 "sCurrent="<<statusCurrent<< // status for the current global track
435 "cl.="<<bestHmpCluster<< // HMPID cluster
436 //
437 "t.="<<pTrk<< // curent esd track
438 "ft.="<<ftrack<< // friend track
439 "hmpTrk.="<<hmpTrk<< // hmpid tracks as used in the following code
440 "hmpTrkC.="<<hmpTrkConstrained<< // hmpid tracks as used in the following code
441 "gx="<<gx<< // global cluster position X
442 "gy="<<gy<< // Y
443 "gz="<<gz<< // Z
444 "thetaCkov="<<thetaCkov<< // Cherenkov angle
445 "\n";
446 }
447
448 if(pTrk->GetHMPIDsignal()<0) {
449 delete hmpTrk;hmpTrk=0x0;
450 delete hmpTrkConstrained; hmpTrkConstrained=0x0;
451 continue;}
235a21c2 452
e56b695f 453 AliHMPIDPid pID;
454 Double_t prob[5];
455 pID.FindPid(pTrk,5,prob);
456 pTrk->SetHMPIDpid(prob);
457// Printf(" Prob e- %6.2f mu %6.2f pi %6.2f k %6.2f p %6.2f",prob[0]*100,prob[1]*100,prob[2]*100,prob[3]*100,prob[4]*100);
aed5907d 458 delete hmpTrk; hmpTrk=0x0;
459 delete hmpTrkConstrained; hmpTrkConstrained=0x0;
496c71b0 460 }//iTrk
461
d3da6dc4 462 return 0; // error code: 0=no error;
611e810d 463}//Recon()
464//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
9785d5fb 465Int_t AliHMPIDTracker::ReconHiddenTrk(AliESDEvent *pEsd,TObjArray *pClus,TObjArray *pNmean, TObjArray *pQthre)
611e810d 466{
467// Static method to reconstruct Theta Ckov for all valid tracks of a given event.
afe12692 468// Arguments: pEsd- pointer ESD; pClu- pointer to clusters for all chambers; pNmean - pointer to all function Nmean=f(time), pQthre - pointer to all function Qthre=f(time)
611e810d 469// Returns: error code, 0 if no errors
9785d5fb 470
471 AliHMPIDReconHTA reconHTA; //instance of reconstruction class, nothing important in ctor
472
473 AliHMPIDParam *pParam = AliHMPIDParam::Instance(); //Instance of AliHMPIDParam
15f675cb 474
475 Bool_t tsRight = kTRUE;
476
3e630437 477 UInt_t tsmin = (UInt_t)((TF1*)pQthre->At(0))->GetXmin(); //
478 UInt_t tsmax = (UInt_t)((TF1*)pQthre->At(0))->GetXmax(); //
479 UInt_t ts = pEsd->GetTimeStamp();
480
481 if(ts<tsmin || ts>tsmax) {
482 AliWarning(Form(" in HMPID time stamp out of range!!! Please check!!! ts = %i",ts));
15f675cb 483 tsRight = kFALSE;
3e630437 484 }
485
9785d5fb 486 for(Int_t iTrk=0;iTrk<pEsd->GetNumberOfTracks();iTrk++){ //loop on the ESD tracks in the event
487
488 AliESDtrack *pTrk = pEsd->GetTrack(iTrk); //here it is simulated or just empty track
489 Int_t ipCh;
490 ipCh = pTrk->GetHMPIDcluIdx();ipCh/=1000000;
491 if(ipCh<0) continue;
492
493 TClonesArray *pMipCluLst=(TClonesArray *)pClus->At(ipCh); //get the list of clusters
494 Int_t nMipClusTot = pMipCluLst->GetEntries(); //total number of clusters in the given chamber
495
496 Double_t qMip=-1;
497 Int_t chMip=-1;
ee2f3539 498 Double_t xMip = 0;
499 Double_t yMip = 0;
500 Int_t indMip = 0;
501 Int_t cluMipSiz = 0;
9785d5fb 502
503 for (Int_t iClu=0; iClu<nMipClusTot;iClu++) { //clusters loop
504
505 AliHMPIDCluster *pClu=(AliHMPIDCluster*)pMipCluLst->UncheckedAt(iClu); //get the cluster
506 Double_t qClus = pClu->Q();
507 if(qClus>qMip) {
508 qMip = qClus;
509 chMip = pClu->Ch();
510 xMip = pClu->X();
511 yMip = pClu->Y();
512 indMip = iClu;
513 cluMipSiz = pClu->Size();
514 }
515 }//clus loop
516
517 if(chMip<0) return 1;
518
519 Int_t hvsec;
ee2f3539 520 Double_t qthre=0;
15f675cb 521
9785d5fb 522// evaluate qThre
15f675cb 523 if(tsRight){
9785d5fb 524 if(pQthre->GetEntriesFast()==pParam->kMaxCh+1) { // just for backward compatibility
3e630437 525 qthre=((TF1*)pQthre->At(chMip))->Eval(ts); //
9785d5fb 526 } else { // in the past just 1 qthre
527 hvsec = pParam->InHVSector(yMip); // per chamber
3e630437 528 if(hvsec>=0) qthre=((TF1*)pQthre->At(6*chMip+hvsec))->Eval(ts); //
15f675cb 529 }
530 } else qthre = pParam->QCut();
9785d5fb 531//
532 if(qMip<qthre) {
3e630437 533 pTrk->SetHMPIDmip(xMip,yMip,(Int_t)qMip,0); //store mip info in any case
9785d5fb 534 pTrk->SetHMPIDcluIdx(chMip,indMip+1000*cluMipSiz);
535 pTrk->SetHMPIDsignal(pParam->kMipQdcCut);
536 return 1; //charge compatible with MIP clusters
537 }
538
539 pTrk->SetHMPIDmip(xMip,yMip,(Int_t)qMip,0); //store mip info in any case
540 pTrk->SetHMPIDcluIdx(chMip,indMip+1000*cluMipSiz);
541
542 Double_t yRa = yMip; //just an approx...
543 Double_t nmean;
ddb21a01 544
545 Int_t iRad = pParam->Radiator(yRa); //evaluate the radiator involved
546
9785d5fb 547 //evaluate nMean
15f675cb 548 if(tsRight){
9785d5fb 549 if(pNmean->GetEntries()==21) { //for backward compatibility
3e630437 550 nmean=((TF1*)pNmean->At(3*chMip))->Eval(ts); //C6F14 Nmean for this chamber
9785d5fb 551 } else {
9785d5fb 552 if(iRad < 0) {
553 nmean = -1;
554 } else {
3e630437 555 Double_t tLow = ((TF1*)pNmean->At(6*chMip+2*iRad ))->Eval(ts); //C6F14 low temp for this chamber
556 Double_t tHigh = ((TF1*)pNmean->At(6*chMip+2*iRad+1))->Eval(ts); //C6F14 high temp for this chamber
9785d5fb 557 Double_t tExp = pParam->FindTemp(tLow,tHigh,yRa); //estimated temp for that chamber at that y
558 nmean = pParam->NIdxRad(AliHMPIDParam::Instance()->GetEPhotMean(),tExp); //mean ref idx @ a given temp
559 }
560 if(nmean < 0){ //track didn' t pass through the radiator
561 pTrk->SetHMPIDsignal(AliHMPIDRecon::kNoRad); //set the appropriate flag
562 return 1;
15f675cb 563 }
564 }
565 } else nmean = pParam->MeanIdxRad();
9785d5fb 566 //
ee2f3539 567 if(!reconHTA.CkovHiddenTrk(pTrk,(TClonesArray *)pClus->At(ipCh),indMip,nmean)) { //search for track parameters and Cerenkov angle of this track
568 AliHMPIDPid pID;
569 Double_t prob[5];
570 pID.FindPid(pTrk,5,prob);
571 pTrk->SetHMPIDpid(prob);
572 }
e56b695f 573// Printf(" Prob e- %6.2f mu %6.2f pi %6.2f k %6.2f p %6.2f",prob[0]*100,prob[1]*100,prob[2]*100,prob[3]*100,prob[4]*100);
9785d5fb 574 }//iTrk
575
576 return 0; // error code: 0=no error;
577
611e810d 578}//Recon()
d3da6dc4 579//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
c1af14f7 580void AliHMPIDTracker::FillClusterArray(TObjArray* array) const {
581
582 // Publishes all pointers to clusters known to the tracker into the
583 // passed object array.
584 // The ownership is not transfered - the caller is not expected to delete
585 // the clusters
586
587 for(Int_t iCh=AliHMPIDParam::kMinCh;iCh<=AliHMPIDParam::kMaxCh;iCh++){
588 TClonesArray *pCluArr=(TClonesArray*)(*fClu)[iCh];
589 for (Int_t iClu=0; iClu<pCluArr->GetEntriesFast();iClu++){
590 AliHMPIDCluster *pClu=(AliHMPIDCluster*)pCluArr->UncheckedAt(iClu);
591 array->AddLast(pClu);
592 }//cluster loop in iCh
593 pCluArr->Delete();
594 }//Ch loop
595
596 return;
597}
598//++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++