X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=ITS%2FAliITSClusterFinderV2SPD.cxx;h=135e11574fcfbccea40911d2bfea591c887a2558;hb=7fa9507da0ea3e0b7323ad0191d19b9724f0419f;hp=75e1dac79628d09b0a23128996a6159526f68d62;hpb=01ef1bd446eccc961da25099a569486cacd722d7;p=u%2Fmrichter%2FAliRoot.git diff --git a/ITS/AliITSClusterFinderV2SPD.cxx b/ITS/AliITSClusterFinderV2SPD.cxx index 75e1dac7962..135e11574fc 100644 --- a/ITS/AliITSClusterFinderV2SPD.cxx +++ b/ITS/AliITSClusterFinderV2SPD.cxx @@ -21,6 +21,7 @@ //////////////////////////////////////////////////////////////////////////// +#include #include "AliITSCalibrationSPD.h" #include "AliITSClusterFinderV2SPD.h" #include "AliITSRecPoint.h" @@ -33,6 +34,8 @@ #include "AliITSdigitSPD.h" #include "AliITSFOSignalsSPD.h" #include "AliITSRecPointContainer.h" +#include "AliMagF.h" +#include "AliITSsegmentationSPD.h" ClassImp(AliITSClusterFinderV2SPD) @@ -79,6 +82,7 @@ void AliITSClusterFinderV2SPD::RawdataToClusters(AliRawReader* rawReader){ // This function creates ITS clusters from raw data //------------------------------------------------------------ rawReader->Reset(); + fNClusters = 0; //RS AliITSRawStreamSPD inputSPD(rawReader); FindClustersSPD(&inputSPD); @@ -87,6 +91,8 @@ void AliITSClusterFinderV2SPD::RawdataToClusters(AliRawReader* rawReader){ Int_t AliITSClusterFinderV2SPD::ClustersSPD(AliBin* bins, TClonesArray* digits,TClonesArray* clusters,Int_t maxBins,Int_t nzbins,Int_t iModule,Bool_t rawdata){ //Cluster finder for SPD (from digits and from rawdata) + const Double_t kmictocm = 1.0e-4; // convert microns to cm. + const Double_t defaultField = 5.0; // default Bz value at which Tan(theta_Lorentz) is given in RecoParam static AliITSRecoParam *repa = NULL; if(!repa){ @@ -98,6 +104,23 @@ Int_t AliITSClusterFinderV2SPD::ClustersSPD(AliBin* bins, TClonesArray* digits,T } const TGeoHMatrix *mT2L=AliITSgeomTGeo::GetTracking2LocalMatrix(iModule); + // Lorentz angle correction + Double_t tanLorentzAngle=0; + AliITSsegmentationSPD *seg = (AliITSsegmentationSPD*)(GetDetTypeRec()->GetSegmentationModel(0)); + Double_t thick = 0.5*kmictocm*seg->Dy(); // Half Thickness in cm + if(repa->GetCorrectLorentzAngleSPD()) { // only if CorrectLorentzAngleSPD required + // here retrieve the value of the field + AliMagF* field = dynamic_cast(TGeoGlobalMagField::Instance()->GetField()); + if (field == 0) { + AliError("Cannot get magnetic field from TGeoGlobalMagField"); + } + else { + Float_t magField = field->SolenoidField(); + tanLorentzAngle=repa->GetTanLorentzAngleHolesSPD() * magField / defaultField ; + } + } + // + if (repa->GetSPDRemoveNoisyFlag()) { // Loop on noisy pixels and reset them AliITSCalibrationSPD *cal = @@ -125,6 +148,15 @@ Int_t AliITSClusterFinderV2SPD::ClustersSPD(AliBin* bins, TClonesArray* digits,T bins[index].SetQ(0); bins[index].SetMask(0xFFFFFFFE); } + AliITSCalibrationSPD *calSparse = (AliITSCalibrationSPD*) fDetTypeRec->GetSPDSparseDeadModel(iModule); + for(Int_t ipix = 0; ipixGetNrBad(); ipix++){ + Int_t row, col; + calSparse->GetBadPixel(ipix,row,col); + Int_t index = (row+1) * nzbins + (col+1); + bins[index].SetQ(0); + bins[index].SetMask(0xFFFFFFFE); + } + } Int_t nclu=0; @@ -201,7 +233,7 @@ Int_t AliITSClusterFinderV2SPD::ClustersSPD(AliBin* bins, TClonesArray* digits,T idy=ymax-ymin+1; idz=zmax-zmin+1; } - + // for(Int_t iiz=zmin; iiz<=zmax;iiz+=idz){ for(Int_t iiy=ymin;iiy<=ymax;iiy+=idy){ @@ -225,7 +257,14 @@ Int_t AliITSClusterFinderV2SPD::ClustersSPD(AliBin* bins, TClonesArray* digits,T } ndigits++; Float_t qBin=0.; - if(rawdata) qBin = bins[idxBins[idx]].GetQ(); + if(rawdata) { + qBin = bins[idxBins[idx]].GetQ(); + if (fRawID2ClusID) { // RS: Register cluster id in raw words list + int rwid = bins[idxBins[idx]].GetRawID(); + if (fRawID2ClusID->GetSize()<=rwid) fRawID2ClusID->Set( (rwid+10)<<1 ); + (*fRawID2ClusID)[rwid] = milab[0] = fNClusters+1; // RS: store clID+1 as a reference to the cluster + } + } if(!rawdata){ AliITSdigitSPD* dig = (AliITSdigitSPD*)digits->UncheckedAt(idxBins[idx]); qBin = (Float_t)dig->GetSignal(); @@ -241,7 +280,11 @@ Int_t AliITSClusterFinderV2SPD::ClustersSPD(AliBin* bins, TClonesArray* digits,T y -= fHwSPD; z -= fHlSPD; - Float_t hit[5]; //y,z,sigma(y)^2, sigma(z)^2, charge + // Lorentz drift effect in local y + y -= tanLorentzAngle*thick; + // + + Float_t hit[6]; //y,z,sigma(y)^2, sigma(z)^2, charge { Double_t loc[3]={y,0.,z},trk[3]={0.,0.,0.}; mT2L->MasterToLocal(loc,trk); @@ -251,6 +294,7 @@ Int_t AliITSClusterFinderV2SPD::ClustersSPD(AliBin* bins, TClonesArray* digits,T hit[2] = fYpitchSPD*fYpitchSPD/12.; hit[3] = fZ1pitchSPD*fZ1pitchSPD/12.; hit[4] = 1.; + hit[5] = 0.; if(!rawdata) milab[3]=fNdet[iModule]; Int_t info[3] = {ymax-ymin+1,zmax-zmin+1,fNlayer[iModule]}; @@ -267,6 +311,7 @@ Int_t AliITSClusterFinderV2SPD::ClustersSPD(AliBin* bins, TClonesArray* digits,T AliITSRecPoint(cl); } nclu++; + fNClusters++; }// for iiy }// for iiz }//end for iBin @@ -291,6 +336,9 @@ void AliITSClusterFinderV2SPD::FindClustersSPD(AliITSRawStreamSPD* input) AliBin* bins = NULL; // read raw data input stream + int countRW = 0; //RS + if (fRawID2ClusID) fRawID2ClusID->Reset(); //RS if array was provided, we shall store the rawID -> ClusterID + // while (kTRUE) { Bool_t next = input->Next(); if (!next || input->IsNewModule()) { @@ -309,13 +357,15 @@ void AliITSClusterFinderV2SPD::FindClustersSPD(AliITSRawStreamSPD* input) memcpy(binsSPD,binsSPDInit,sizeof(AliBin)*kMaxBin); } - if (next && bins) { + if (next && bins) { // fill the current digit into the bins array Int_t index = (input->GetCoord2()+1) * kNzBins + (input->GetCoord1()+1); bins[index].SetIndex(index); bins[index].SetQ(1); bins[index].SetMask(1); + bins[index].SetRawID(countRW); //RS register raw id } + countRW++; //RS } delete [] binsSPDInit;