#include <new>
#include <TError.h>
#include <TFile.h>
#include <TTree.h>
#include <TRandom.h>
#include <TGeoMatrix.h>
#include "AliITSgeomTGeo.h"
#include "AliAlignObj.h"
#include "AliITSRecPoint.h"
#include "AliESDEvent.h"
#include "AliESDtrack.h"
#include "AliITSRecPoint.h"
#include "AliITSReconstructor.h"
#include "AliITStrackerV2.h"
ClassImp(AliITStrackerV2)
AliITStrackerV2::AliITSlayer AliITStrackerV2::fgLayers[AliITSgeomTGeo::kNLayers];
AliITStrackerV2::AliITStrackerV2():
AliTracker(),
fI(AliITSgeomTGeo::GetNLayers()),
fBestTrack(),
fTrackToFollow(),
fPass(0),
fLastLayerToTrackTo(AliITSRecoParam::GetLastLayerToTrackTo())
{
for (Int_t i=1; i<AliITSgeomTGeo::GetNLayers()+1; i++) new(fgLayers+i-1) AliITSlayer();
fConstraint[0]=1; fConstraint[1]=0;
Double_t xyz[]={AliITSReconstructor::GetRecoParam()->GetXVdef(),
AliITSReconstructor::GetRecoParam()->GetYVdef(),
AliITSReconstructor::GetRecoParam()->GetZVdef()};
Double_t ers[]={AliITSReconstructor::GetRecoParam()->GetSigmaXVdef(),
AliITSReconstructor::GetRecoParam()->GetSigmaYVdef(),
AliITSReconstructor::GetRecoParam()->GetSigmaZVdef()};
SetVertex(xyz,ers);
for (Int_t i=0; i<AliITSgeomTGeo::GetNLayers(); i++) fLayersNotToSkip[i]=AliITSRecoParam::GetLayersNotToSkip(i);
}
AliITStrackerV2::AliITStrackerV2(const AliITStrackerV2 &t):
AliTracker(t),
fI(t.fI),
fBestTrack(t.fBestTrack),
fTrackToFollow(t.fTrackToFollow),
fPass(t.fPass),
fLastLayerToTrackTo(t.fLastLayerToTrackTo)
{
fConstraint[0]=t.fConstraint[0]; fConstraint[1]=t.fConstraint[1];
Double_t xyz[]={AliITSReconstructor::GetRecoParam()->GetXVdef(),
AliITSReconstructor::GetRecoParam()->GetYVdef(),
AliITSReconstructor::GetRecoParam()->GetZVdef()};
Double_t ers[]={AliITSReconstructor::GetRecoParam()->GetSigmaXVdef(),
AliITSReconstructor::GetRecoParam()->GetSigmaYVdef(),
AliITSReconstructor::GetRecoParam()->GetSigmaZVdef()};
xyz[0]=t.GetX(); xyz[1]=t.GetY(); xyz[2]=t.GetZ();
ers[0]=t.GetSigmaX(); ers[1]=t.GetSigmaY(); ers[2]=t.GetSigmaZ();
SetVertex(xyz,ers);
for (Int_t i=0; i<AliITSgeomTGeo::GetNLayers(); i++) fLayersNotToSkip[i]=t.fLayersNotToSkip[i];
}
AliITStrackerV2::AliITStrackerV2(const Char_t *geom) :
AliTracker(),
fI(AliITSgeomTGeo::GetNLayers()),
fBestTrack(),
fTrackToFollow(),
fPass(0),
fLastLayerToTrackTo(AliITSRecoParam::GetLastLayerToTrackTo())
{
if (geom) {
AliWarning("\"geom\" is actually a dummy argument !");
}
for (Int_t i=1; i<AliITSgeomTGeo::GetNLayers()+1; i++) {
Int_t nlad=AliITSgeomTGeo::GetNLadders(i);
Int_t ndet=AliITSgeomTGeo::GetNDetectors(i);
Double_t xyz[3], &x=xyz[0], &y=xyz[1], &z=xyz[2];
AliITSgeomTGeo::GetOrigTranslation(i,1,1,xyz);
Double_t poff=TMath::ATan2(y,x);
Double_t zoff=z;
Double_t r=TMath::Sqrt(x*x + y*y);
AliITSgeomTGeo::GetOrigTranslation(i,1,2,xyz);
r += TMath::Sqrt(x*x + y*y);
AliITSgeomTGeo::GetOrigTranslation(i,2,1,xyz);
r += TMath::Sqrt(x*x + y*y);
AliITSgeomTGeo::GetOrigTranslation(i,2,2,xyz);
r += TMath::Sqrt(x*x + y*y);
r*=0.25;
new (fgLayers+i-1) AliITSlayer(r,poff,zoff,nlad,ndet);
for (Int_t j=1; j<nlad+1; j++) {
for (Int_t k=1; k<ndet+1; k++) {
TGeoHMatrix m; AliITSgeomTGeo::GetOrigMatrix(i,j,k,m);
const TGeoHMatrix *tm=AliITSgeomTGeo::GetTracking2LocalMatrix(i,j,k);
m.Multiply(tm);
Double_t txyz[3]={0.};
xyz[0]=0.; xyz[1]=0.; xyz[2]=0.;
m.LocalToMaster(txyz,xyz);
r=TMath::Sqrt(xyz[0]*xyz[0] + xyz[1]*xyz[1]);
Double_t phi=TMath::ATan2(xyz[1],xyz[0]);
if (phi<0) phi+=TMath::TwoPi();
else if (phi>=TMath::TwoPi()) phi-=TMath::TwoPi();
AliITSdetector &det=fgLayers[i-1].GetDetector((j-1)*ndet + k-1);
new(&det) AliITSdetector(r,phi);
}
}
}
fConstraint[0]=1; fConstraint[1]=0;
Double_t xyz[]={AliITSReconstructor::GetRecoParam()->GetXVdef(),
AliITSReconstructor::GetRecoParam()->GetYVdef(),
AliITSReconstructor::GetRecoParam()->GetZVdef()};
Double_t ers[]={AliITSReconstructor::GetRecoParam()->GetSigmaXVdef(),
AliITSReconstructor::GetRecoParam()->GetSigmaYVdef(),
AliITSReconstructor::GetRecoParam()->GetSigmaZVdef()};
SetVertex(xyz,ers);
for (Int_t i=0; i<AliITSgeomTGeo::GetNLayers(); i++) fLayersNotToSkip[i]=AliITSRecoParam::GetLayersNotToSkip(i);
}
void AliITStrackerV2::SetLayersNotToSkip(Int_t *l) {
for (Int_t i=0; i<AliITSgeomTGeo::GetNLayers(); i++) fLayersNotToSkip[i]=l[i];
}
Int_t AliITStrackerV2::LoadClusters(TTree *cTree) {
TBranch *branch=cTree->GetBranch("ITSRecPoints");
if (!branch) {
Error("LoadClusters"," can't get the branch !\n");
return 1;
}
TClonesArray dummy("AliITSRecPoint",10000), *clusters=&dummy;
branch->SetAddress(&clusters);
Int_t j=0;
for (Int_t i=0; i<AliITSgeomTGeo::GetNLayers(); i++) {
Int_t ndet=fgLayers[i].GetNdetectors();
Int_t jmax = j + fgLayers[i].GetNladders()*ndet;
Double_t r=fgLayers[i].GetR();
Double_t circ=TMath::TwoPi()*r;
for (; j<jmax; j++) {
if (!cTree->GetEvent(j)) continue;
Int_t ncl=clusters->GetEntriesFast();
while (ncl--) {
AliITSRecPoint *c=(AliITSRecPoint*)clusters->UncheckedAt(ncl);
if (!c->Misalign()) AliWarning("Can't misalign this cluster !");
Int_t idx=c->GetDetectorIndex();
AliITSdetector &det=fgLayers[i].GetDetector(idx);
Double_t y=r*det.GetPhi()+c->GetY();
if (y>circ) y-=circ; else if (y<0) y+=circ;
c->SetPhiR(y);
fgLayers[i].InsertCluster(new AliITSRecPoint(*c));
}
clusters->Delete();
}
fgLayers[i].ResetRoad();
}
return 0;
}
void AliITStrackerV2::UnloadClusters() {
for (Int_t i=0; i<AliITSgeomTGeo::GetNLayers(); i++) fgLayers[i].ResetClusters();
}
static Int_t CorrectForDeadZoneMaterial(AliITStrackV2 *t) {
Double_t riw=80., diw=0.0053, x0iw=30;
Double_t rcd=61., dcd=0.0053, x0cd=30;
Double_t yr=12.8, dr=0.03;
Double_t zm=0.2, dm=0.40;
Double_t rs=50., ds=0.001;
if (t->GetX() > riw) {
if (!t->PropagateTo(riw,diw,x0iw)) return 1;
if (TMath::Abs(t->GetY())>yr) t->CorrectForMaterial(dr);
if (TMath::Abs(t->GetZ())<zm) t->CorrectForMaterial(dm);
if (!t->PropagateTo(rcd,dcd,x0cd)) return 1;
if (!t->PropagateTo(rs,ds)) return 1;
} else if (t->GetX() < rs) {
if (!t->PropagateTo(rs,-ds)) return 1;
if (!t->PropagateTo(rcd,-dcd,x0cd)) return 1;
if (!t->PropagateTo(riw+0.001,-diw,x0iw)) return 1;
} else {
::Error("CorrectForDeadZoneMaterial","track is already in the dead zone !");
return 1;
}
return 0;
}
Int_t AliITStrackerV2::Clusters2Tracks(AliESDEvent *event) {
TObjArray itsTracks(15000);
{
Int_t nentr=event->GetNumberOfTracks();
Info("Clusters2Tracks", "Number of ESD tracks: %d\n", nentr);
while (nentr--) {
AliESDtrack *esd=event->GetTrack(nentr);
if ((esd->GetStatus()&AliESDtrack::kTPCin)==0) continue;
if (esd->GetStatus()&AliESDtrack::kTPCout) continue;
if (esd->GetStatus()&AliESDtrack::kITSin) continue;
AliITStrackV2 *t = new AliITStrackV2(*esd);
if (TMath::Abs(t->GetD(GetX(),GetY()))>4) {
delete t;
continue;
}
if (CorrectForDeadZoneMaterial(t)!=0) {
Warning("Clusters2Tracks",
"failed to correct for the material in the dead zone !\n");
delete t;
continue;
}
itsTracks.AddLast(t);
}
}
itsTracks.Sort();
Int_t nentr=itsTracks.GetEntriesFast();
Int_t ntrk=0;
for (fPass=0; fPass<2; fPass++) {
Int_t &constraint=fConstraint[fPass]; if (constraint<0) continue;
for (Int_t i=0; i<nentr; i++) {
AliITStrackV2 *t=(AliITStrackV2*)itsTracks.UncheckedAt(i);
if (t==0) continue;
Int_t tpcLabel=t->GetLabel();
ResetTrackToFollow(*t);
ResetBestTrack();
for (FollowProlongation(); fI<AliITSgeomTGeo::GetNLayers(); fI++) {
while (TakeNextProlongation()) FollowProlongation();
}
if (fBestTrack.GetNumberOfClusters() == 0) continue;
if (fConstraint[fPass]) {
ResetTrackToFollow(*t);
if (!RefitAt(3.7, &fTrackToFollow, &fBestTrack)) continue;
ResetBestTrack();
}
fBestTrack.SetLabel(tpcLabel);
fBestTrack.CookdEdx();
CookLabel(&fBestTrack,0.);
fBestTrack.UpdateESDtrack(AliESDtrack::kITSin);
UseClusters(&fBestTrack);
delete itsTracks.RemoveAt(i);
ntrk++;
}
}
itsTracks.Delete();
Info("Clusters2Tracks","Number of prolonged tracks: %d\n",ntrk);
return 0;
}
Int_t AliITStrackerV2::PropagateBack(AliESDEvent *event) {
Int_t nentr=event->GetNumberOfTracks();
Info("PropagateBack", "Number of ESD tracks: %d\n", nentr);
Int_t ntrk=0;
for (Int_t i=0; i<nentr; i++) {
AliESDtrack *esd=event->GetTrack(i);
if ((esd->GetStatus()&AliESDtrack::kITSin)==0) continue;
if (esd->GetStatus()&AliESDtrack::kITSout) continue;
AliITStrackV2 *t = new AliITStrackV2(*esd);
ResetTrackToFollow(*t);
if (fTrackToFollow.PropagateTo(3.,0.0028,65.19)) {
if (fTrackToFollow.PropagateToVertex(event->GetVertex())) {
fTrackToFollow.StartTimeIntegral();
}
Bool_t okProp=fTrackToFollow.PropagateTo(3.,-0.0028,65.19);
if(!okProp){
AliWarning("Propagation to beam pipe radius failed");
}
}
fTrackToFollow.ResetCovariance(10.); fTrackToFollow.ResetClusters();
if (RefitAt(49.,&fTrackToFollow,t)) {
if (CorrectForDeadZoneMaterial(&fTrackToFollow)!=0) {
Warning("PropagateBack",
"failed to correct for the material in the dead zone !\n");
delete t;
continue;
}
fTrackToFollow.SetLabel(t->GetLabel());
CookLabel(&fTrackToFollow,0.);
fTrackToFollow.UpdateESDtrack(AliESDtrack::kITSout);
UseClusters(&fTrackToFollow);
ntrk++;
}
delete t;
}
Info("PropagateBack","Number of back propagated ITS tracks: %d\n",ntrk);
return 0;
}
Int_t AliITStrackerV2::RefitInward(AliESDEvent *event) {
Int_t nentr=event->GetNumberOfTracks();
Info("RefitInward", "Number of ESD tracks: %d\n", nentr);
Int_t ntrk=0;
for (Int_t i=0; i<nentr; i++) {
AliESDtrack *esd=event->GetTrack(i);
if ((esd->GetStatus()&AliESDtrack::kITSout) == 0) continue;
if (esd->GetStatus()&AliESDtrack::kITSrefit) continue;
if (esd->GetStatus()&AliESDtrack::kTPCout)
if ((esd->GetStatus()&AliESDtrack::kTPCrefit)==0) continue;
AliITStrackV2 *t = new AliITStrackV2(*esd);
if (CorrectForDeadZoneMaterial(t)!=0) {
Warning("RefitInward",
"failed to correct for the material in the dead zone !\n");
delete t;
continue;
}
ResetTrackToFollow(*t);
fTrackToFollow.ResetClusters();
if (RefitAt(3.7, &fTrackToFollow, t, kTRUE)) {
fTrackToFollow.SetLabel(t->GetLabel());
fTrackToFollow.CookdEdx();
CookLabel(&fTrackToFollow,0.);
if (fTrackToFollow.PropagateTo(3.,0.0028,65.19)) {
fTrackToFollow.UpdateESDtrack(AliESDtrack::kITSrefit);
AliESDtrack *esdTrack =fTrackToFollow.GetESDtrack();
Double_t r[3]={0.,0.,0.};
Double_t maxD=3.;
esdTrack->RelateToVertex(event->GetVertex(),GetBz(r),maxD);
ntrk++;
}
}
delete t;
}
Info("RefitInward","Number of refitted tracks: %d\n",ntrk);
return 0;
}
AliCluster *AliITStrackerV2::GetCluster(Int_t index) const {
Int_t l=(index & 0xf0000000) >> 28;
Int_t c=(index & 0x0fffffff) >> 00;
return fgLayers[l].GetCluster(c);
}
void AliITStrackerV2::FollowProlongation() {
while (fI>fLastLayerToTrackTo) {
Int_t i=fI-1;
AliITSlayer &layer=fgLayers[i];
AliITStrackV2 &track=fTracks[i];
Double_t r=layer.GetR();
if (i==3 || i==1) {
Double_t rs=0.5*(fgLayers[i+1].GetR() + r);
Double_t d=0.0034, x0=38.6;
if (i==1) {rs=9.; d=0.0097; x0=42;}
if (!fTrackToFollow.PropagateTo(rs,d,x0)) {
return;
}
}
Double_t phi,z;
if (!fTrackToFollow.GetPhiZat(r,phi,z)) {
return;
}
Int_t idet=layer.FindDetectorIndex(phi,z);
if (idet<0) {
return;
}
const AliITSdetector &det=layer.GetDetector(idet);
phi=det.GetPhi();
if (!fTrackToFollow.Propagate(phi,det.GetR())) {
return;
}
fTrackToFollow.SetDetectorIndex(idet);
track.~AliITStrackV2(); new(&track) AliITStrackV2(fTrackToFollow);
Double_t dz=7*TMath::Sqrt(track.GetSigmaZ2() + AliITSReconstructor::GetRecoParam()->GetSigmaZ2(i));
Double_t dy=7*TMath::Sqrt(track.GetSigmaY2() + AliITSReconstructor::GetRecoParam()->GetSigmaY2(i));
Double_t road=layer.GetRoad();
if (dz*dy>road*road) {
Double_t dd=TMath::Sqrt(dz*dy), scz=dz/dd, scy=dy/dd;
dz=road*scz; dy=road*scy;
}
if (dz < 0.5*TMath::Abs(track.GetTgl())) dz=0.5*TMath::Abs(track.GetTgl());
if (dz > AliITSReconstructor::GetRecoParam()->GetMaxRoad()) {
return;
}
if (TMath::Abs(fTrackToFollow.GetZ()-GetZ()) > r+dz) return;
if (dy < 0.5*TMath::Abs(track.GetSnp())) dy=0.5*TMath::Abs(track.GetSnp());
if (dy > AliITSReconstructor::GetRecoParam()->GetMaxRoad()) {
return;
}
fI--;
Double_t zmin=track.GetZ() - dz;
Double_t zmax=track.GetZ() + dz;
Double_t ymin=track.GetY() + r*phi - dy;
Double_t ymax=track.GetY() + r*phi + dy;
if (layer.SelectClusters(zmin,zmax,ymin,ymax)==0)
if (fLayersNotToSkip[fI]) return;
if (!TakeNextProlongation())
if (fLayersNotToSkip[fI]) return;
}
Int_t ncl=fTrackToFollow.GetNumberOfClusters();
Int_t nclb=fBestTrack.GetNumberOfClusters();
if (ncl)
if (ncl >= nclb) {
Double_t chi2=fTrackToFollow.GetChi2();
if (chi2/ncl < AliITSReconstructor::GetRecoParam()->GetChi2PerCluster()) {
if (ncl > nclb || chi2 < fBestTrack.GetChi2()) {
ResetBestTrack();
}
}
}
}
Int_t AliITStrackerV2::TakeNextProlongation() {
AliITSlayer &layer=fgLayers[fI];
ResetTrackToFollow(fTracks[fI]);
Double_t dz=7*TMath::Sqrt(fTrackToFollow.GetSigmaZ2() + AliITSReconstructor::GetRecoParam()->GetSigmaZ2(fI));
Double_t dy=7*TMath::Sqrt(fTrackToFollow.GetSigmaY2() + AliITSReconstructor::GetRecoParam()->GetSigmaY2(fI));
Double_t road=layer.GetRoad();
if (dz*dy>road*road) {
Double_t dd=TMath::Sqrt(dz*dy), scz=dz/dd, scy=dy/dd;
dz=road*scz; dy=road*scy;
}
const AliITSRecPoint *c=0; Int_t ci=-1;
const AliITSRecPoint *cc=0; Int_t cci=-1;
Double_t chi2=AliITSReconstructor::GetRecoParam()->GetMaxChi2();
while ((c=layer.GetNextCluster(ci))!=0) {
Int_t idet=c->GetDetectorIndex();
if (fTrackToFollow.GetDetectorIndex()!=idet) {
const AliITSdetector &det=layer.GetDetector(idet);
ResetTrackToFollow(fTracks[fI]);
if (!fTrackToFollow.Propagate(det.GetPhi(),det.GetR())) {
continue;
}
fTrackToFollow.SetDetectorIndex(idet);
if (TMath::Abs(fTrackToFollow.GetZ()-GetZ())>layer.GetR()+dz) continue;
}
if (TMath::Abs(fTrackToFollow.GetZ() - c->GetZ()) > dz) continue;
if (TMath::Abs(fTrackToFollow.GetY() - c->GetY()) > dy) continue;
Double_t ch2=fTrackToFollow.GetPredictedChi2(c);
if (ch2 > chi2) continue;
chi2=ch2;
cc=c; cci=ci;
break;
}
if (!cc) return 0;
{
Double_t x = fTrackToFollow.GetX() + cc->GetX();
if (!fTrackToFollow.PropagateTo(x,0.,0.)) return 0;
}
if (!fTrackToFollow.Update(cc,chi2,(fI<<28)+cci)) {
return 0;
}
if (fTrackToFollow.GetNumberOfClusters()>1)
if (TMath::Abs(fTrackToFollow.GetD(GetX(),GetY()))>4) return 0;
fTrackToFollow.
SetSampledEdx(cc->GetQ(),fI-2);
{
Double_t x0;
Double_t d=layer.GetThickness(fTrackToFollow.GetY(),fTrackToFollow.GetZ(),x0);
fTrackToFollow.CorrectForMaterial(d,x0);
}
if (fConstraint[fPass]) {
Double_t d=GetEffectiveThickness(0,0);
Double_t xyz[]={GetX(),GetY(),GetZ()};
Double_t ers[]={GetSigmaX(),GetSigmaY(),GetSigmaZ()};
fTrackToFollow.Improve(d,xyz,ers);
}
return 1;
}
AliITStrackerV2::AliITSlayer::AliITSlayer():
fR(0.),
fPhiOffset(0.),
fNladders(0),
fZOffset(0.),
fNdetectors(0),
fDetectors(0),
fNsel(0),
fRoad(2*fR*TMath::Sqrt(3.14/1.))
{
for (Int_t i=0; i<kNsector; i++) fN[i]=0;
for (Int_t i=0; i<AliITSRecoParam::kMaxClusterPerLayer; i++){
fClusters[i]=0;
fIndex[i]=0;
}
}
AliITStrackerV2::AliITSlayer::
AliITSlayer(Double_t r,Double_t p,Double_t z,Int_t nl,Int_t nd):
fR(r),
fPhiOffset(p),
fNladders(nl),
fZOffset(z),
fNdetectors(nd),
fDetectors(new AliITSdetector[nl*nd]),
fNsel(0),
fRoad(2*r*TMath::Sqrt(3.14/1.))
{
for (Int_t i=0; i<kNsector; i++) fN[i]=0;
for (Int_t i=0; i<AliITSRecoParam::kMaxClusterPerLayer; i++){
fClusters[i]=0;
fIndex[i]=0;
}
}
AliITStrackerV2::AliITSlayer::~AliITSlayer() {
delete[] fDetectors;
ResetClusters();
}
void AliITStrackerV2::AliITSlayer::ResetClusters() {
for (Int_t s=0; s<kNsector; s++) {
Int_t &n=fN[s];
while (n) {
n--;
delete fClusters[s*kMaxClusterPerSector+n];
}
}
}
void AliITStrackerV2::AliITSlayer::ResetRoad() {
Int_t n=0;
for (Int_t s=0; s<kNsector; s++) {
Int_t i=fN[s];
while (i--)
if (TMath::Abs(fClusters[s*kMaxClusterPerSector+i]->GetZ())<fR) n++;
}
if (n>1) fRoad=2*fR*TMath::Sqrt(3.14/n);
}
Int_t AliITStrackerV2::AliITSlayer::InsertCluster(AliITSRecPoint *c) {
Float_t circ=TMath::TwoPi()*fR;
Int_t sec=Int_t(kNsector*c->GetPhiR()/circ);
if (sec>=kNsector) {
::Error("InsertCluster","Wrong sector !\n");
return 1;
}
Int_t &n=fN[sec];
if (n>=kMaxClusterPerSector) {
::Error("InsertCluster","Too many clusters !\n");
return 1;
}
if (n==0) fClusters[sec*kMaxClusterPerSector]=c;
else {
Int_t i=FindClusterIndex(c->GetZ(),sec);
Int_t k=n-i+sec*kMaxClusterPerSector;
memmove(fClusters+i+1 ,fClusters+i,k*sizeof(AliITSRecPoint*));
fClusters[i]=c;
}
n++;
return 0;
}
Int_t
AliITStrackerV2::AliITSlayer::FindClusterIndex(Float_t z,Int_t s) const {
Int_t nc=fN[s];
if (nc==0) return kMaxClusterPerSector*s;
Int_t b=kMaxClusterPerSector*s;
if (z <= fClusters[b]->GetZ()) return b;
Int_t e=b+nc-1;
if (z > fClusters[e]->GetZ()) return e+1;
Int_t m=(b+e)/2;
for (; b<e; m=(b+e)/2) {
if (z > fClusters[m]->GetZ()) b=m+1;
else e=m;
}
return m;
}
Int_t AliITStrackerV2::AliITSlayer::
SelectClusters(Float_t zmin,Float_t zmax,Float_t ymin, Float_t ymax) {
Float_t circ=fR*TMath::TwoPi();
if (ymin>circ) ymin-=circ; else if (ymin<0) ymin+=circ;
if (ymax>circ) ymax-=circ; else if (ymax<0) ymax+=circ;
Int_t i1=Int_t(kNsector*ymin/circ); if (i1==kNsector) i1--;
if (fN[i1]!=0) {
Float_t ym = (ymax<ymin) ? ymax+circ : ymax;
Int_t i=FindClusterIndex(zmin,i1), imax=i1*kMaxClusterPerSector+fN[i1];
for (; i<imax; i++) {
AliITSRecPoint *c=fClusters[i];
if (c->IsUsed()) continue;
if (c->GetZ()>zmax) break;
if (c->GetPhiR()<=ymin) continue;
if (c->GetPhiR()>ym) continue;
fIndex[fNsel++]=i;
}
}
Int_t i2=Int_t(kNsector*ymax/circ); if (i2==kNsector) i2--;
if (i2==i1) return fNsel;
if (fN[i2]!=0) {
Float_t ym = (ymin>ymax) ? ymin-circ : ymin;
Int_t i=FindClusterIndex(zmin,i2), imax=i2*kMaxClusterPerSector+fN[i2];
for (; i<imax; i++) {
AliITSRecPoint *c=fClusters[i];
if (c->IsUsed()) continue;
if (c->GetZ()>zmax) break;
if (c->GetPhiR()<=ym) continue;
if (c->GetPhiR()>ymax) continue;
fIndex[fNsel++]=i;
}
}
return fNsel;
}
const AliITSRecPoint *AliITStrackerV2::AliITSlayer::GetNextCluster(Int_t &ci){
AliITSRecPoint *c=0;
ci=-1;
if (fNsel) {
fNsel--;
ci=fIndex[fNsel];
c=fClusters[ci];
}
return c;
}
Int_t AliITStrackerV2::AliITSlayer::GetNumberOfClusters() const {
Int_t n=0;
for (Int_t s=0; s<kNsector; s++) n+=fN[s];
return n;
}
Int_t
AliITStrackerV2::AliITSlayer::FindDetectorIndex(Double_t phi,Double_t z)const {
Double_t dphi;
if (fZOffset<0)
dphi = -(phi-fPhiOffset);
else
dphi = phi-fPhiOffset;
if (dphi < 0) dphi += 2*TMath::Pi();
else if (dphi >= 2*TMath::Pi()) dphi -= 2*TMath::Pi();
Int_t np=Int_t(dphi*fNladders*0.5/TMath::Pi()+0.5);
if (np>=fNladders) np-=fNladders;
if (np<0) np+=fNladders;
Double_t dz=fZOffset-z;
Int_t nz=Int_t(dz*(fNdetectors-1)*0.5/fZOffset+0.5);
if (nz>=fNdetectors) return -1;
if (nz<0) return -1;
return np*fNdetectors + nz;
}
Double_t
AliITStrackerV2::AliITSlayer::GetThickness(Double_t y,Double_t z,Double_t &x0)
const {
Double_t d=0.0085;
x0=21.82;
if (43<fR&&fR<45) {
Double_t dd=0.0034;
d=dd;
if (TMath::Abs(y-0.00)>3.40) d+=dd;
if (TMath::Abs(y-1.90)<0.45) {d+=(0.013-0.0034);}
if (TMath::Abs(y+1.90)<0.45) {d+=(0.013-0.0034);}
for (Int_t i=0; i<12; i++) {
if (TMath::Abs(z-3.9*(i+0.5))<0.15) {
if (TMath::Abs(y-0.00)>3.40) d+=dd;
d+=0.0034;
break;
}
if (TMath::Abs(z+3.9*(i+0.5))<0.15) {
if (TMath::Abs(y-0.00)>3.40) d+=dd;
d+=0.0034;
break;
}
if (TMath::Abs(z-3.4-3.9*i)<0.50) {d+=(0.016-0.0034); break;}
if (TMath::Abs(z+0.5+3.9*i)<0.50) {d+=(0.016-0.0034); break;}
}
} else
if (37<fR&&fR<41) {
Double_t dd=0.0034;
d=dd;
if (TMath::Abs(y-0.00)>3.40) d+=dd;
if (TMath::Abs(y-1.90)<0.45) {d+=(0.013-0.0034);}
if (TMath::Abs(y+1.90)<0.45) {d+=(0.013-0.0034);}
for (Int_t i=0; i<11; i++) {
if (TMath::Abs(z-3.9*i)<0.15) {
if (TMath::Abs(y-0.00)>3.40) d+=dd;
d+=dd;
break;
}
if (TMath::Abs(z+3.9*i)<0.15) {
if (TMath::Abs(y-0.00)>3.40) d+=dd;
d+=dd;
break;
}
if (TMath::Abs(z-1.85-3.9*i)<0.50) {d+=(0.016-0.0034); break;}
if (TMath::Abs(z+2.05+3.9*i)<0.50) {d+=(0.016-0.0034); break;}
}
} else
if (13<fR&&fR<26) {
Double_t dd=0.0033;
d=dd;
if (TMath::Abs(y-0.00)>3.30) d+=dd;
if (TMath::Abs(y-1.80)<0.55) {
d+=0.016;
for (Int_t j=0; j<20; j++) {
if (TMath::Abs(z+0.7+1.47*j)<0.12) {d+=0.08; x0=9.; break;}
if (TMath::Abs(z-0.7-1.47*j)<0.12) {d+=0.08; x0=9.; break;}
}
}
if (TMath::Abs(y+1.80)<0.55) {
d+=0.016;
for (Int_t j=0; j<20; j++) {
if (TMath::Abs(z-0.7-1.47*j)<0.12) {d+=0.08; x0=9.; break;}
if (TMath::Abs(z+0.7+1.47*j)<0.12) {d+=0.08; x0=9.; break;}
}
}
for (Int_t i=0; i<4; i++) {
if (TMath::Abs(z-7.3*i)<0.60) {
d+=dd;
if (TMath::Abs(y-0.00)>3.30) d+=dd;
break;
}
if (TMath::Abs(z+7.3*i)<0.60) {
d+=dd;
if (TMath::Abs(y-0.00)>3.30) d+=dd;
break;
}
}
} else
if (6<fR&&fR<8) {
Double_t dd=0.0063; x0=21.5;
d=dd;
if (TMath::Abs(y-3.08)>0.5) d+=dd;
if (TMath::Abs(y-3.03)<0.10) {d+=0.014;}
} else
if (3<fR&&fR<5) {
Double_t dd=0.0063; x0=21.5;
d=dd;
if (TMath::Abs(y+0.21)>0.6) d+=dd;
if (TMath::Abs(y+0.10)<0.10) {d+=0.014;}
}
return d;
}
Double_t AliITStrackerV2::GetEffectiveThickness(Double_t y,Double_t z) const
{
Double_t d=0.0028*3*3;
Double_t x0=0;
Double_t xn=fgLayers[fI].GetR();
for (Int_t i=0; i<fI; i++) {
Double_t xi=fgLayers[i].GetR();
d+=fgLayers[i].GetThickness(y,z,x0)*xi*xi;
}
if (fI>1) {
Double_t xi=9.;
d+=0.0097*xi*xi;
}
if (fI>3) {
Double_t xi=0.5*(fgLayers[3].GetR()+fgLayers[4].GetR());
d+=0.0034*xi*xi;
}
return d/(xn*xn);
}
Bool_t AliITStrackerV2::RefitAt(Double_t xx,AliITStrackV2 *t,
const AliITStrackV2 *c, Bool_t extra) {
Int_t index[AliITSgeomTGeo::kNLayers];
Int_t k;
for (k=0; k<AliITSgeomTGeo::GetNLayers(); k++) index[k]=-1;
Int_t nc=c->GetNumberOfClusters();
for (k=0; k<nc; k++) {
Int_t idx=c->GetClusterIndex(k),nl=(idx&0xf0000000)>>28;
index[nl]=idx;
}
Int_t from, to, step;
if (xx > t->GetX()) {
from=0; to=AliITSgeomTGeo::GetNLayers();
step=+1;
} else {
from=AliITSgeomTGeo::GetNLayers()-1; to=-1;
step=-1;
}
for (Int_t i=from; i != to; i += step) {
AliITSlayer &layer=fgLayers[i];
Double_t r=layer.GetR();
{
Double_t hI=i-0.5*step;
if (TMath::Abs(hI-1.5)<0.01 || TMath::Abs(hI-3.5)<0.01) {
Int_t iLay = i-step;
Double_t rs = 0.;
if(iLay<0 || iLay>= AliITSgeomTGeo::kNLayers){
AliError(Form("Invalid layer %d ",iLay));
return kFALSE;
}
else{
rs=0.5*(fgLayers[i-step].GetR() + r);
}
Double_t d=0.0034, x0=38.6;
if (TMath::Abs(hI-1.5)<0.01) {rs=9.; d=0.0097; x0=42;}
if (!t->PropagateTo(rs,-step*d,x0)) {
return kFALSE;
}
}
}
Double_t oldX=0., oldY=0., oldZ=0.;
if (t->IsStartedTimeIntegral() && step==1) {
t->GetGlobalXYZat(t->GetX(),oldX,oldY,oldZ);
}
Double_t phi,z;
if (!t->GetPhiZat(r,phi,z)) {
return kFALSE;
}
Int_t idet=layer.FindDetectorIndex(phi,z);
if (idet<0) {
return kFALSE;
}
const AliITSdetector &det=layer.GetDetector(idet);
phi=det.GetPhi();
if (!t->Propagate(phi,det.GetR())) {
return kFALSE;
}
t->SetDetectorIndex(idet);
const AliITSRecPoint *cl=0;
Double_t maxchi2=AliITSReconstructor::GetRecoParam()->GetMaxChi2();
Int_t idx=index[i];
if (idx>=0) {
const AliITSRecPoint *ccc=(AliITSRecPoint *)GetCluster(idx);
if (idet != ccc->GetDetectorIndex()) {
idet=ccc->GetDetectorIndex();
const AliITSdetector &det2=layer.GetDetector(idet);
if (!t->Propagate(det2.GetPhi(),det2.GetR())) {
return kFALSE;
}
t->SetDetectorIndex(idet);
}
Double_t chi2=t->GetPredictedChi2(ccc);
if (chi2<maxchi2) {
cl=ccc;
maxchi2=chi2;
} else {
return kFALSE;
}
}
if (cl) {
Double_t x=t->GetX()+cl->GetX();
if (!t->PropagateTo(x,0.,0.)) return kFALSE;
if (!t->Update(cl,maxchi2,idx)) {
return kFALSE;
}
t->SetSampledEdx(cl->GetQ(),i-2);
}
{
Double_t x0;
Double_t d=layer.GetThickness(t->GetY(),t->GetZ(),x0);
t->CorrectForMaterial(-step*d,x0);
}
if (extra) {
AliITStrackV2 tmp(*t);
Double_t dz=4*TMath::Sqrt(tmp.GetSigmaZ2()+AliITSReconstructor::GetRecoParam()->GetSigmaZ2(i));
if (dz < 0.5*TMath::Abs(tmp.GetTgl())) dz=0.5*TMath::Abs(tmp.GetTgl());
Double_t dy=4*TMath::Sqrt(t->GetSigmaY2()+AliITSReconstructor::GetRecoParam()->GetSigmaY2(i));
if (dy < 0.5*TMath::Abs(tmp.GetSnp())) dy=0.5*TMath::Abs(tmp.GetSnp());
Double_t zmin=t->GetZ() - dz;
Double_t zmax=t->GetZ() + dz;
Double_t ymin=t->GetY() + phi*r - dy;
Double_t ymax=t->GetY() + phi*r + dy;
layer.SelectClusters(zmin,zmax,ymin,ymax);
const AliITSRecPoint *cx=0; Int_t ci=-1,cci=-1;
maxchi2=1000.*AliITSReconstructor::GetRecoParam()->GetMaxChi2();
Double_t tolerance=0.1;
while ((cx=layer.GetNextCluster(ci))!=0) {
if (idet == cx->GetDetectorIndex()) continue;
const AliITSdetector &detx=layer.GetDetector(cx->GetDetectorIndex());
if (!tmp.Propagate(detx.GetPhi(),detx.GetR())) continue;
if (TMath::Abs(tmp.GetZ() - cx->GetZ()) > tolerance) continue;
if (TMath::Abs(tmp.GetY() - cx->GetY()) > tolerance) continue;
Double_t chi2=tmp.GetPredictedChi2(cx);
if (chi2<maxchi2) { maxchi2=chi2; cci=ci; }
}
if (cci>=0) t->SetExtraCluster(i,(i<<28)+cci);
}
if (t->IsStartedTimeIntegral() && step==1) {
Double_t newX, newY, newZ;
t->GetGlobalXYZat(t->GetX(),newX,newY,newZ);
Double_t dL2 = (oldX-newX)*(oldX-newX) + (oldY-newY)*(oldY-newY) +
(oldZ-newZ)*(oldZ-newZ);
t->AddTimeStep(TMath::Sqrt(dL2));
}
}
if (!t->PropagateTo(xx,0.,0.)) return kFALSE;
return kTRUE;
}
void AliITStrackerV2::UseClusters(const AliKalmanTrack *t, Int_t from) const {
AliTracker::UseClusters(t,from);
Int_t clusterIndex = t->GetClusterIndex(0);
AliITSRecPoint *c= 0x0;
if (clusterIndex>-1)
c = (AliITSRecPoint *)GetCluster(clusterIndex);
if (c && c->GetSigmaZ2()>0.1) c->UnUse();
c = 0x0;
clusterIndex = t->GetClusterIndex(1);
if (clusterIndex>-1)
c=(AliITSRecPoint *)GetCluster(clusterIndex);
if (c && c->GetSigmaZ2()>0.1) c->UnUse();
}