1 /**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
7 * Permission to use, copy, modify and distribute this software and its *
8 * documentation strictly for non-commercial purposes is hereby granted *
9 * without fee, provided that the above copyright notice appears in all *
10 * copies and that both the copyright notice and this permission notice *
11 * appear in the supporting documentation. The authors make no claims *
12 * about the suitability of this software for any purpose. It is *
13 * provided "as is" without express or implied warranty. *
14 **************************************************************************/
16 //-------------------------------------------------------
17 // Implementation of the TPC transformation class
19 // Origin: Marian Ivanov Marian.Ivanov@cern.ch
22 // Class for tranformation of the coordinate frame
24 // local coordinate frame (sector, padrow, pad, timebine) ==>
25 // rotated global (tracking) cooridnate frame (sector, lx,ly,lz)
27 // Unisochronity - (substract time0 - pad by pad)
28 // Drift velocity - Currently common drift velocity - functionality of AliTPCParam
32 // AliTPCclustererMI::AddCluster
33 // AliTPCtrackerMI::Transform
35 //-------------------------------------------------------
38 cdb=AliCDBManager::Instance()
39 cdb->SetDefaultStorage("local:///u/mmager/mycalib1")
40 c=AliTPCcalibDB::Instance()
42 Double_t x[]={1.0,2.0,3.0}
45 trafo.Transform(x,i,0,1)
50 #include "AliTPCROC.h"
51 #include "AliTPCCalPad.h"
52 #include "AliTPCCalROC.h"
53 #include "AliTPCcalibDB.h"
54 #include "AliTPCParam.h"
57 #include "AliTPCExB.h"
58 #include "TGeoMatrix.h"
59 #include "AliTPCTransform.h"
61 ClassImp(AliTPCTransform)
64 AliTPCTransform::AliTPCTransform() {
68 for (Int_t i=0;i<18;++i) {
69 Double_t alpha=TMath::DegToRad()*(10.+20.*(i%18));
70 fSins[i]=TMath::Sin(alpha);
71 fCoss[i]=TMath::Cos(alpha);
75 AliTPCTransform::~AliTPCTransform() {
81 void AliTPCTransform::Transform(Double_t *x,Int_t *i,UInt_t /*time*/,
82 Int_t /*coordinateType*/) {
83 // input: x[0] - pad row
87 // output: x[0] - x (all in the rotated global coordinate frame)
90 Int_t row=TMath::Nint(x[0]);
91 Int_t pad=TMath::Nint(x[1]);
93 AliTPCcalibDB* calib=AliTPCcalibDB::Instance();
95 AliTPCCalPad * time0TPC = calib->GetPadTime0();
96 AliTPCParam * param = calib->GetParameters();
98 AliFatal("Time unisochronity missing");
102 AliFatal("Parameters missing");
106 // Apply Time0 correction - Pad by pad fluctuation
108 x[2]-=time0TPC->GetCalROC(sector)->GetValue(row,pad);
110 // Tranform from pad - time coordinate system to the rotated global (tracking) system
112 Local2RotatedGlobal(sector,x);
117 //TODO: calib->GetParameters()->GetClusterMatrix(sector)->LocalToMaster(x,xx);
118 RotatedGlobal2Global(sector,x);
123 calib->GetExB()->Correct(x,xx);
125 Global2RotatedGlobal(sector,xx);
127 x[0]=xx[0];x[1]=xx[1];x[2]=xx[2];
130 void AliTPCTransform::Local2RotatedGlobal(Int_t sector, Double_t *x) const {
133 // Tranform coordinate from
134 // row, pad, time to x,y,z
137 // Current implementation - common drift velocity - for full chamber
138 // TODO: use a map or parametrisation!
142 AliTPCcalibDB* calib=AliTPCcalibDB::Instance();
143 AliTPCParam * param = calib->GetParameters();
145 AliFatal("Parameters missing");
147 Int_t row=TMath::Nint(x[0]);
148 Int_t pad=TMath::Nint(x[1]);
150 const Int_t kNIS=param->GetNInnerSector(), kNOS=param->GetNOuterSector();
152 Double_t zwidth = param->GetZWidth();
153 Double_t padWidth = 0;
154 Double_t padLength = 0;
158 maxPad = param->GetNPadsLow(row);
159 sign = (sector < kNIS/2) ? 1 : -1;
160 padLength = param->GetPadPitchLength(sector,row);
161 padWidth = param->GetPadPitchWidth(sector);
163 maxPad = param->GetNPadsUp(row);
164 sign = ((sector-kNIS) < kNOS/2) ? 1 : -1;
165 padLength = param->GetPadPitchLength(sector,row);
166 padWidth = param->GetPadPitchWidth(sector);
170 x[0] = param->GetPadRowRadii(sector,row); // padrow X position - ideal
174 x[1]=(x[1]-0.5*maxPad)*padWidth;
178 x[2]*= zwidth; // tranform time bin to the distance to the ROC
179 x[2]-= 3.*param->GetZSigma() + param->GetNTBinsL1()*zwidth;
180 // subtract the time offsets
181 x[2] = sign*( param->GetZLength(sector) - x[2]);
184 inline void AliTPCTransform::RotatedGlobal2Global(Int_t sector,Double_t *x) const {
186 // transform possition rotated global to the global
189 GetCosAndSin(sector,cos,sin);
191 x[0]= cos*tmp+sin*x[1];
192 x[1]=-sin*tmp+cos*x[1];
195 inline void AliTPCTransform::Global2RotatedGlobal(Int_t sector,Double_t *x) const {
197 // tranform possition Global2RotatedGlobal
200 GetCosAndSin(sector,cos,sin);
202 x[0]= cos*tmp-sin*x[1];
203 x[1]= sin*tmp+cos*x[1];
206 inline void AliTPCTransform::GetCosAndSin(Int_t sector,Double_t &cos,
207 Double_t &sin) const {
208 cos=fCoss[sector%18];
209 sin=fSins[sector%18];