]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TPC/Calib/AliTPCcalibAlign.cxx
ATO-19 - fix to handle change of user interface in ROOT TFormula + UnitTest to check...
[u/mrichter/AliRoot.git] / TPC / Calib / AliTPCcalibAlign.cxx
CommitLineData
9318a5b4 1/**************************************************************************
2 * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
3 * *
4 * Author: The ALICE Off-line Project. *
5 * Contributors are mentioned in the code where appropriate. *
6 * *
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 **************************************************************************/
15
16
17///////////////////////////////////////////////////////////////////////////////
18// //
19// Class to make a internal alignemnt of TPC chambers //
20//
967eae0d 21// Requierements - Warnings:
22// 1. Before using this componenent the magnetic filed has to be set properly //
1c1a1176 23// 2. The systematic effects - unlinearities has to be understood
967eae0d 24//
1c1a1176 25// If systematic and unlinearities are not under control
26// the alignment is just effective alignment. Not second order corrction
27// are calculated.
28//
29// The histograming of the edge effects and unlineratities integral part
30// of the component (currently only in debug stream)
31//
32// 3 general type of linear transformation investigated (see bellow)
33//
34// By default only 6 parameter alignment to be used - other just for QA purposes
f8a2dcfb 35
1c1a1176 36// Different linear tranformation investigated
972cf6f2 37// 12 parameters - arbitrary linear transformation
f8a2dcfb 38// a00 a01 a02 a03 p[0] p[1] p[2] p[9]
39// a10 a11 a12 a13 ==> p[3] p[4] p[5] p[10]
40// a20 a21 a22 a23 p[6] p[7] p[8] p[11]
41//
9318a5b4 42// 9 parameters - scaling fixed to 1
f8a2dcfb 43// a00 a01 a02 a03 1 p[0] p[1] p[6]
44// a10 a11 a12 a13 ==> p[2] 1 p[3] p[7]
45// a20 a21 a22 a23 p[4] p[5] 1 p[8]
46//
972cf6f2 47// 6 parameters - x-y rotation x-z, y-z tiliting
f8a2dcfb 48// a00 a01 a02 a03 1 -p[0] 0 p[3]
49// a10 a11 a12 a13 ==> p[0] 1 0 p[4]
50// a20 a21 a22 a23 p[1] p[2] 1 p[5]
51//
1c1a1176 52//
53// Debug stream supported
54// 0. Align - The main output of the Alignment component
55// - Used for visualization of the misalignment between sectors
56// - Results of the missalignment fit and the mean and sigmas of histograms
57// stored there
58// 1. Tracklet - StreamLevel >1
59// - Dump all information about tracklet match from sector1 to sector 2
60// - Default histogram residulas created in parallel
61// - Check this streamer in case of suspicious content of these histograms
62// 2. Track - StreamLevel>5
63// - For debugging of the edge effects
64// - All information - extrapolation inside of one sectors
65// - Created in order to distinguish between unlinearities inside of o
66// sector and missalignment
67
68//
8f74ae77 69//
70/*
71 gSystem->AddIncludePath("-I$ALICE_ROOT/TPC/macros");
72 gROOT->LoadMacro("$ALICE_ROOT/TPC/macros/AliXRDPROOFtoolkit.cxx+")
73 AliXRDPROOFtoolkit tool;
74 TChain * chain = tool.MakeChain("align.txt","Track",0,10200);
75 chain->Lookup();
108953e9 76 TCut cutA("abs(tp1.fP[1]-tp2.fP[1])<0.3&&abs(tp1.fP[0]-tp2.fP[0])<0.15&&abs(tp1.fP[3]-tp2.fP[3])<0.01&&abs(tp1.fP[2]-tp2.fP[2])<0.01");
77 TCut cutS("s1%36==s2%36");
175d237b 78
79 .x ~/UliStyle.C
108953e9 80 .x $ALICE_ROOT/macros/loadlibsREC.C
81
82 gSystem->Load("$ROOTSYS/lib/libXrdClient.so");
83 gSystem->Load("libProof");
175d237b 84 gSystem->Load("libANALYSIS");
108953e9 85 gSystem->Load("libSTAT");
175d237b 86 gSystem->Load("libTPCcalib");
108953e9 87 //
88 // compare reference
175d237b 89 TFile fcalib("CalibObjects.root");
90 TObjArray * array = (TObjArray*)fcalib.Get("TPCCalib");
108953e9 91
175d237b 92 AliTPCcalibAlign * align = ( AliTPCcalibAlign *)array->FindObject("alignTPC");
93 //
94 //
bb6bc8f6 95 align->EvalFitters();
175d237b 96 align->MakeTree("alignTree.root");
bb6bc8f6 97 TFile falignTree("alignTree.root");
98 TTree * treeAlign = (TTree*)falignTree.Get("Align");
6f387311 99
175d237b 100
8f74ae77 101*/
1c1a1176 102
9318a5b4 103////
104////
105
106#include "TLinearFitter.h"
107#include "AliTPCcalibAlign.h"
774a5ee9 108#include "AliTPCROC.h"
109#include "AliTPCPointCorrection.h"
4de48bc7 110#include "AliTrackPointArray.h"
774a5ee9 111
9318a5b4 112#include "AliExternalTrackParam.h"
774a5ee9 113#include "AliESDEvent.h"
114#include "AliESDfriend.h"
115#include "AliESDtrack.h"
116
e4042305 117#include "AliTPCTracklet.h"
118#include "TH1D.h"
bb6bc8f6 119#include "TH2F.h"
b842d904 120#include "THnSparse.h"
034e5c8c 121#include "THn.h"
7eaa723e 122#include "TVectorD.h"
e149f26d 123#include "TTreeStream.h"
7eaa723e 124#include "TFile.h"
6f387311 125#include "TTree.h"
e81dc112 126#include "TF1.h"
8b3c60d8 127#include "TGraphErrors.h"
967eae0d 128#include "AliTPCclusterMI.h"
129#include "AliTPCseed.h"
130#include "AliTracker.h"
131#include "TClonesArray.h"
774a5ee9 132#include "AliLog.h"
133#include "TFile.h"
134#include "TProfile.h"
135#include "TCanvas.h"
5b7417d2 136#include "TDatabasePDG.h"
8b3c60d8 137
138#include "TTreeStream.h"
3326b323 139#include "Riostream.h"
034e5c8c 140#include "TRandom.h"
e4042305 141#include <sstream>
9318a5b4 142using namespace std;
143
6f387311 144AliTPCcalibAlign* AliTPCcalibAlign::fgInstance = 0;
3828da48 145Double_t AliTPCcalibAlign::fgkMergeEntriesCut=10000000.; //10**7 tracks
9318a5b4 146ClassImp(AliTPCcalibAlign)
147
6f387311 148
149
150
151AliTPCcalibAlign* AliTPCcalibAlign::Instance()
152{
153 //
154 // Singleton implementation
155 // Returns an instance of this class, it is created if neccessary
156 //
157 if (fgInstance == 0){
158 fgInstance = new AliTPCcalibAlign();
159 }
160 return fgInstance;
161}
162
163
164
165
9318a5b4 166AliTPCcalibAlign::AliTPCcalibAlign()
bb6bc8f6 167 : AliTPCcalibBase(),
168 fDphiHistArray(72*72),
e4042305 169 fDthetaHistArray(72*72),
170 fDyHistArray(72*72),
171 fDzHistArray(72*72),
bb6bc8f6 172 //
173 fDyPhiHistArray(72*72), // array of residual histograms y -kYPhi
174 fDzThetaHistArray(72*72), // array of residual histograms z-z -kZTheta
175 fDphiZHistArray(72*72), // array of residual histograms phi -kPhiz
176 fDthetaZHistArray(72*72), // array of residual histograms theta -kThetaz
177 fDyZHistArray(72*72), // array of residual histograms y -kYz
178 fDzZHistArray(72*72), // array of residual histograms z -kZz
e4042305 179 fFitterArray12(72*72),
180 fFitterArray9(72*72),
6f387311 181 fFitterArray6(72*72),
182 fMatrixArray12(72*72),
183 fMatrixArray9(72*72),
1d82fc56 184 fMatrixArray6(72*72),
185 fCombinedMatrixArray6(72),
774a5ee9 186 fNoField(kFALSE),
187 fXIO(0),
188 fXmiddle(0),
189 fXquadrant(0),
190 fArraySectorIntParam(36), // array of sector alignment parameters
191 fArraySectorIntCovar(36), // array of sector alignment covariances
192 //
193 // Kalman filter for global alignment
194 //
195 fSectorParamA(0), // Kalman parameter for A side
196 fSectorCovarA(0), // Kalman covariance for A side
197 fSectorParamC(0), // Kalman parameter for A side
4de48bc7 198 fSectorCovarC(0), // Kalman covariance for A side
199 fUseInnerOuter(kTRUE)// flag- use Inner Outer sector for left righ alignment
9318a5b4 200{
201 //
202 // Constructor
203 //
204 for (Int_t i=0;i<72*72;++i) {
205 fPoints[i]=0;
206 }
774a5ee9 207 AliTPCROC * roc = AliTPCROC::Instance();
208 fXquadrant = roc->GetPadRowRadii(36,53);
209 fXmiddle = ( roc->GetPadRowRadii(0,0)+roc->GetPadRowRadii(36,roc->GetNRows(36)-1))*0.5;
210 fXIO = ( roc->GetPadRowRadii(0,roc->GetNRows(0)-1)+roc->GetPadRowRadii(36,0))*0.5;
5b7417d2 211 fClusterDelta[0]=0; // cluster residuals - Y
212 fClusterDelta[1]=0; // cluster residuals - Z
60721370 213
214
215 fTrackletDelta[0]=0; // tracklet residuals
216 fTrackletDelta[1]=0; // tracklet residuals
217 fTrackletDelta[2]=0; // tracklet residuals
218 fTrackletDelta[3]=0; // tracklet residuals
9318a5b4 219}
220
e149f26d 221AliTPCcalibAlign::AliTPCcalibAlign(const Text_t *name, const Text_t *title)
222 :AliTPCcalibBase(),
223 fDphiHistArray(72*72),
224 fDthetaHistArray(72*72),
225 fDyHistArray(72*72),
226 fDzHistArray(72*72),
bb6bc8f6 227 fDyPhiHistArray(72*72), // array of residual histograms y -kYPhi
228 fDzThetaHistArray(72*72), // array of residual histograms z-z -kZTheta
229 fDphiZHistArray(72*72), // array of residual histograms phi -kPhiz
230 fDthetaZHistArray(72*72), // array of residual histograms theta -kThetaz
231 fDyZHistArray(72*72), // array of residual histograms y -kYz
6f387311 232 fDzZHistArray(72*72), // array of residual histograms z -kZz //
e149f26d 233 fFitterArray12(72*72),
234 fFitterArray9(72*72),
6f387311 235 fFitterArray6(72*72),
236 fMatrixArray12(72*72),
237 fMatrixArray9(72*72),
1d82fc56 238 fMatrixArray6(72*72),
239 fCombinedMatrixArray6(72),
774a5ee9 240 fNoField(kFALSE),
241 fXIO(0),
242 fXmiddle(0),
243 fXquadrant(0),
244 fArraySectorIntParam(36), // array of sector alignment parameters
245 fArraySectorIntCovar(36), // array of sector alignment covariances
246 //
247 // Kalman filter for global alignment
248 //
249 fSectorParamA(0), // Kalman parameter for A side
250 fSectorCovarA(0), // Kalman covariance for A side
251 fSectorParamC(0), // Kalman parameter for A side
4de48bc7 252 fSectorCovarC(0), // Kalman covariance for A side
253 fUseInnerOuter(kTRUE)// flag- use Inner Outer sector for left righ alignment
254
e149f26d 255{
256 //
257 // Constructor
258 //
259 SetName(name);
260 SetTitle(title);
261 for (Int_t i=0;i<72*72;++i) {
262 fPoints[i]=0;
263 }
774a5ee9 264 AliTPCROC * roc = AliTPCROC::Instance();
265 fXquadrant = roc->GetPadRowRadii(36,53);
266 fXmiddle = ( roc->GetPadRowRadii(0,0)+roc->GetPadRowRadii(36,roc->GetNRows(36)-1))*0.5;
267 fXIO = ( roc->GetPadRowRadii(0,roc->GetNRows(0)-1)+roc->GetPadRowRadii(36,0))*0.5;
b842d904 268 fClusterDelta[0]=0; // cluster residuals
269 fClusterDelta[1]=0; // cluster residuals
b842d904 270
60721370 271 fTrackletDelta[0]=0; // tracklet residuals
272 fTrackletDelta[1]=0; // tracklet residuals
273 fTrackletDelta[2]=0; // tracklet residuals
274 fTrackletDelta[3]=0; // tracklet residuals
e149f26d 275}
276
bb6bc8f6 277
278AliTPCcalibAlign::AliTPCcalibAlign(const AliTPCcalibAlign &align)
279 :AliTPCcalibBase(align),
280 fDphiHistArray(align.fDphiHistArray),
281 fDthetaHistArray(align.fDthetaHistArray),
282 fDyHistArray(align.fDyHistArray),
283 fDzHistArray(align.fDzHistArray),
284 fDyPhiHistArray(align.fDyPhiHistArray), // array of residual histograms y -kYPhi
285 fDzThetaHistArray(align.fDzThetaHistArray), // array of residual histograms z-z -kZTheta
286 fDphiZHistArray(align.fDphiZHistArray), // array of residual histograms phi -kPhiz
287 fDthetaZHistArray(align.fDthetaZHistArray), // array of residual histograms theta -kThetaz
288 fDyZHistArray(align.fDyZHistArray), // array of residual histograms y -kYz
289 fDzZHistArray(align.fDzZHistArray), // array of residual histograms z -kZz
290 //
291 fFitterArray12(align.fFitterArray12),
292 fFitterArray9(align.fFitterArray9),
6f387311 293 fFitterArray6(align.fFitterArray6),
294
295 fMatrixArray12(align.fMatrixArray12),
296 fMatrixArray9(align.fMatrixArray9),
1d82fc56 297 fMatrixArray6(align.fMatrixArray6),
298 fCombinedMatrixArray6(align.fCombinedMatrixArray6),
774a5ee9 299 fNoField(align.fNoField),
300 fXIO(align.fXIO),
301 fXmiddle(align.fXmiddle),
302 fXquadrant(align.fXquadrant),
303 fArraySectorIntParam(align.fArraySectorIntParam), // array of sector alignment parameters
304 fArraySectorIntCovar(align.fArraySectorIntCovar), // array of sector alignment covariances
305 fSectorParamA(0), // Kalman parameter for A side
306 fSectorCovarA(0), // Kalman covariance for A side
307 fSectorParamC(0), // Kalman parameter for A side
4de48bc7 308 fSectorCovarC(0), // Kalman covariance for A side
309 fUseInnerOuter(kTRUE)// flag- use Inner Outer sector for left righ alignment
310
bb6bc8f6 311{
312 //
313 // copy constructor - copy also the content
314 //
315 TH1 * his = 0;
316 TObjArray * arr0=0;
317 const TObjArray *arr1=0;
318 for (Int_t index =0; index<72*72; index++){
319 for (Int_t iarray=0;iarray<10; iarray++){
320 if (iarray==kY){
321 arr0 = &fDyHistArray;
322 arr1 = &align.fDyHistArray;
323 }
324 if (iarray==kZ){
325 arr0 = &fDzHistArray;
326 arr1 = &align.fDzHistArray;
327 }
328 if (iarray==kPhi){
329 arr0 = &fDphiHistArray;
330 arr1 = &align.fDphiHistArray;
331 }
332 if (iarray==kTheta){
333 arr0 = &fDthetaHistArray;
334 arr1 = &align.fDthetaHistArray;
335 }
336 if (iarray==kYz){
337 arr0 = &fDyZHistArray;
338 arr1 = &align.fDyZHistArray;
339 }
340 if (iarray==kZz){
341 arr0 = &fDzZHistArray;
342 arr1 = &align.fDzZHistArray;
343 }
344 if (iarray==kPhiZ){
345 arr0 = &fDphiZHistArray;
346 arr1 = &align.fDphiZHistArray;
347 }
348 if (iarray==kThetaZ){
349 arr0 = &fDthetaZHistArray;
350 arr1 = &align.fDthetaZHistArray;
351 }
352
353 if (iarray==kYPhi){
354 arr0 = &fDyPhiHistArray;
355 arr1 = &align.fDyPhiHistArray;
356 }
357 if (iarray==kZTheta){
358 arr0 = &fDzThetaHistArray;
359 arr1 = &align.fDzThetaHistArray;
360 }
361
362 if (arr1->At(index)) {
363 his = (TH1*)arr1->At(index)->Clone();
364 his->SetDirectory(0);
365 arr0->AddAt(his,index);
366 }
367 }
368 }
774a5ee9 369 //
370 //
371 //
372 if (align.fSectorParamA){
373 fSectorParamA = (TMatrixD*)align.fSectorParamA->Clone();
374 fSectorParamA = (TMatrixD*)align.fSectorCovarA->Clone();
375 fSectorParamC = (TMatrixD*)align.fSectorParamA->Clone();
376 fSectorParamC = (TMatrixD*)align.fSectorCovarA->Clone();
377 }
b842d904 378 fClusterDelta[0]=0; // cluster residuals
379 fClusterDelta[1]=0; // cluster residuals
b842d904 380
60721370 381 fTrackletDelta[0]=0; // tracklet residuals
382 fTrackletDelta[1]=0; // tracklet residuals
383 fTrackletDelta[2]=0; // tracklet residuals
384 fTrackletDelta[3]=0; // tracklet residuals
bb6bc8f6 385}
386
387
9318a5b4 388AliTPCcalibAlign::~AliTPCcalibAlign() {
389 //
390 // destructor
391 //
774a5ee9 392 fDphiHistArray.SetOwner(kTRUE); // array of residual histograms phi -kPhi
393 fDthetaHistArray.SetOwner(kTRUE); // array of residual histograms theta -kTheta
394 fDyHistArray.SetOwner(kTRUE); // array of residual histograms y -kY
395 fDzHistArray.SetOwner(kTRUE); // array of residual histograms z -kZ
396 //
397 fDyPhiHistArray.SetOwner(kTRUE); // array of residual histograms y -kYPhi
398 fDzThetaHistArray.SetOwner(kTRUE); // array of residual histograms z-z -kZTheta
399 //
400 fDphiZHistArray.SetOwner(kTRUE); // array of residual histograms phi -kPhiz
401 fDthetaZHistArray.SetOwner(kTRUE); // array of residual histograms theta -kThetaz
402 fDyZHistArray.SetOwner(kTRUE); // array of residual histograms y -kYz
403 fDzZHistArray.SetOwner(kTRUE); // array of residual histograms z -kZz
404
405 fDphiHistArray.Delete(); // array of residual histograms phi -kPhi
406 fDthetaHistArray.Delete(); // array of residual histograms theta -kTheta
407 fDyHistArray.Delete(); // array of residual histograms y -kY
408 fDzHistArray.Delete(); // array of residual histograms z -kZ
409 //
410 fDyPhiHistArray.Delete(); // array of residual histograms y -kYPhi
411 fDzThetaHistArray.Delete(); // array of residual histograms z-z -kZTheta
412 //
413 fDphiZHistArray.Delete(); // array of residual histograms phi -kPhiz
414 fDthetaZHistArray.Delete(); // array of residual histograms theta -kThetaz
415 fDyZHistArray.Delete(); // array of residual histograms y -kYz
416 fDzZHistArray.Delete(); // array of residual histograms z -kZz
417
418 fFitterArray12.SetOwner(kTRUE); // array of fitters
419 fFitterArray9.SetOwner(kTRUE); // array of fitters
420 fFitterArray6.SetOwner(kTRUE); // array of fitters
421 //
422 fMatrixArray12.SetOwner(kTRUE); // array of transnformtation matrix
423 fMatrixArray9.SetOwner(kTRUE); // array of transnformtation matrix
424 fMatrixArray6.SetOwner(kTRUE); // array of transnformtation matrix
425 //
426 fFitterArray12.Delete(); // array of fitters
427 fFitterArray9.Delete(); // array of fitters
428 fFitterArray6.Delete(); // array of fitters
429 //
430 fMatrixArray12.Delete(); // array of transnformtation matrix
431 fMatrixArray9.Delete(); // array of transnformtation matrix
432 fMatrixArray6.Delete(); // array of transnformtation matrix
433
774a5ee9 434
435 fArraySectorIntParam.SetOwner(kTRUE); // array of sector alignment parameters
436 fArraySectorIntCovar.SetOwner(kTRUE); // array of sector alignment covariances
437 fArraySectorIntParam.Delete(); // array of sector alignment parameters
438 fArraySectorIntCovar.Delete(); // array of sector alignment covariances
5b7417d2 439 for (Int_t i=0; i<2; i++){
b842d904 440 delete fClusterDelta[i]; // cluster residuals
441 }
60721370 442
443 for (Int_t i=0; i<4; i++){
444 delete fTrackletDelta[i]; // tracklet residuals
445 }
446
447
9318a5b4 448}
449
774a5ee9 450void AliTPCcalibAlign::Process(AliESDEvent *event) {
451 //
452 // Process pairs of cosmic tracks
453 //
034e5c8c 454 const Double_t kptDownscale=50; // downscale factor for the low pt particels
b842d904 455 if (!fClusterDelta[0]) MakeResidualHistos();
60721370 456 if (!fTrackletDelta[0]) MakeResidualHistosTracklet();
b842d904 457 //
458 fCurrentEvent=event;
4de48bc7 459 ExportTrackPoints(event); // export track points for external calibration
b842d904 460 const Int_t kMaxTracks =6;
774a5ee9 461 const Int_t kminCl = 40;
3326b323 462 AliESDfriend *eESDfriend=static_cast<AliESDfriend*>(event->FindListObject("AliESDfriend"));
463 if (!eESDfriend) return;
034e5c8c 464 if (eESDfriend->TestSkipBit()) return;
774a5ee9 465 Int_t ntracks=event->GetNumberOfTracks();
466 Float_t dca0[2];
467 Float_t dca1[2];
468 //
469 //
b842d904 470 // process seeds
774a5ee9 471 //
b842d904 472 for (Int_t i0=0;i0<ntracks;++i0) {
473 AliESDtrack *track0 = event->GetTrack(i0);
474 AliESDfriendTrack *friendTrack = 0;
475 TObject *calibObject=0;
b7c5eb40 476 AliTPCseed *seed0 = 0;
b842d904 477 //
3326b323 478 friendTrack = (AliESDfriendTrack *)eESDfriend->GetTrack(i0);;
b9908d0b 479 if (!friendTrack) continue;
b842d904 480 for (Int_t l=0;(calibObject=friendTrack->GetCalibObject(l));++l) {
481 if ((seed0=dynamic_cast<AliTPCseed*>(calibObject))) break;
482 }
483 if (!seed0) continue;
484 fCurrentTrack=track0;
5b7417d2 485 fCurrentFriendTrack=friendTrack;
b842d904 486 fCurrentSeed=seed0;
487 fCurrentEvent=event;
034e5c8c 488 Double_t scalept= TMath::Min(1./TMath::Abs(track0->GetParameter()[4]),2.);
489 Bool_t isSelected = (TMath::Exp(2*scalept)>kptDownscale*gRandom->Rndm());
490 if (isSelected) ProcessSeed(seed0);
b842d904 491 }
492 //
493 // process cosmic pairs
774a5ee9 494 //
495 if (ntracks>kMaxTracks) return;
496 //
497 //select pairs - for alignment
498 for (Int_t i0=0;i0<ntracks;++i0) {
499 AliESDtrack *track0 = event->GetTrack(i0);
500 // if (track0->GetTPCNcls()<kminCl) continue;
501 track0->GetImpactParameters(dca0[0],dca0[1]);
502 // if (TMath::Abs(dca0[0])>30) continue;
503 //
504 for (Int_t i1=0;i1<ntracks;++i1) {
505 if (i0==i1) continue;
506 AliESDtrack *track1 = event->GetTrack(i1);
507 // if (track1->GetTPCNcls()<kminCl) continue;
508 track1->GetImpactParameters(dca1[0],dca1[1]);
509 // fast cuts on dca and theta
510 // if (TMath::Abs(dca1[0]+dca0[0])>15) continue;
511 // if (TMath::Abs(dca1[1]-dca0[1])>15) continue;
b842d904 512 if (TMath::Abs(track0->GetParameter()[3]+track1->GetParameter()[3])>0.1) continue;
774a5ee9 513 //
514 AliESDfriendTrack *friendTrack = 0;
515 TObject *calibObject=0;
516 AliTPCseed *seed0 = 0,*seed1=0;
517 //
3326b323 518 friendTrack = (AliESDfriendTrack *)eESDfriend->GetTrack(i0);;
b9908d0b 519 if (!friendTrack) continue;
774a5ee9 520 for (Int_t l=0;(calibObject=friendTrack->GetCalibObject(l));++l) {
521 if ((seed0=dynamic_cast<AliTPCseed*>(calibObject))) break;
522 }
3326b323 523 friendTrack = (AliESDfriendTrack *)eESDfriend->GetTrack(i1);;
b9908d0b 524 if (!friendTrack) continue;
774a5ee9 525 for (Int_t l=0;(calibObject=friendTrack->GetCalibObject(l));++l) {
526 if ((seed1=dynamic_cast<AliTPCseed*>(calibObject))) break;
527 }
774a5ee9 528 if (!seed0) continue;
b842d904 529 //
530 //
774a5ee9 531 if (!seed1) continue;
532 Int_t nclsectors0[72], nclsectors1[72];
533 for (Int_t isec=0;isec<72;isec++){
534 nclsectors0[isec]=0;
535 nclsectors1[isec]=0;
536 }
537 for (Int_t i=0;i<160;i++){
538 AliTPCclusterMI *c0=seed0->GetClusterPointer(i);
539 AliTPCclusterMI *c1=seed1->GetClusterPointer(i);
540 if (c0) nclsectors0[c0->GetDetector()]+=1;
541 if (c1) nclsectors1[c1->GetDetector()]+=1;
542 }
543
544 for (Int_t isec0=0; isec0<72;isec0++){
545 if (nclsectors0[isec0]<kminCl) continue;
546 for (Int_t isec1=0; isec1<72;isec1++){
547 if (nclsectors1[isec1]<kminCl) continue;
548 Int_t s0 = isec0;
549 Int_t s1 = isec1;
550 Double_t parLine0[10];
551 Double_t parLine1[10];
552 TMatrixD par0(4,1),cov0(4,4),par1(4,1),cov1(4,4);
4de48bc7 553 Bool_t useInnerOuter = kFALSE;
554 if (s1%36!=s0%36) useInnerOuter = fUseInnerOuter; // for left - right alignment both sectors refit can be used if specified
555 Int_t nl0 = RefitLinear(seed0,s0, parLine0, s0,par0,cov0,fXIO,useInnerOuter);
556 Int_t nl1 = RefitLinear(seed1,s1, parLine1, s0,par1,cov1,fXIO,useInnerOuter);
774a5ee9 557 parLine0[0]=0; // reference frame in IO boundary
558 parLine1[0]=0;
559 // if (nl0<kminCl || nl1<kminCl) continue;
560 //
561 //
562 Bool_t isOK=kTRUE;
563 if (TMath::Min(nl0,nl1)<kminCl) isOK=kFALSE;
564 // apply selection criteria
565 //
566 Float_t dp0,dp1,dp3;
567 Float_t pp0,pp1,pp3;
568 dp0=par0(0,0)-par1(0,0);
569 dp1=par0(1,0)-par1(1,0);
570 dp3=par0(3,0)-par1(3,0);
571 pp0=dp0/TMath::Sqrt(cov0(0,0)+cov1(0,0)+0.1*0.1);
572 pp1=dp1/TMath::Sqrt(cov0(1,1)+cov1(1,1)+0.0015*0.0015);
573 pp3=dp3/TMath::Sqrt(cov0(3,3)+cov1(3,3)+0.0015*0.0015);
574 //
575 if (TMath::Abs(dp0)>1.0) isOK=kFALSE;
576 if (TMath::Abs(dp1)>0.02) isOK=kFALSE;
577 if (TMath::Abs(dp3)>0.02) isOK=kFALSE;
578 if (TMath::Abs(pp0)>6) isOK=kFALSE;
579 if (TMath::Abs(pp1)>6) isOK=kFALSE;
580 if (TMath::Abs(pp3)>6) isOK=kFALSE;
581 //
582 if (isOK){
583 FillHisto(parLine0,parLine1,s0,s1);
584 ProcessAlign(parLine0,parLine1,s0,s1);
585 UpdateKalman(s0,s1,par0, cov0, par1, cov1);
586 }
587 if (fStreamLevel>0){
588 TTreeSRedirector *cstream = GetDebugStreamer();
589 if (cstream){
590 (*cstream)<<"cosmic"<<
591 "isOK="<<isOK<<
592 "s0="<<s0<<
593 "s1="<<s1<<
594 "nl0="<<nl0<<
595 "nl1="<<nl1<<
596 "p0.="<<&par0<<
597 "p1.="<<&par1<<
598 "c0.="<<&cov0<<
599 "c1.="<<&cov1<<
600 "\n";
601 }
602 }
603 }
604 }
605 }
606 }
607}
608
4de48bc7 609void AliTPCcalibAlign::ExportTrackPoints(AliESDEvent *event){
610 //
611 // Export track points for alignment - calibration
612 // export space points for pairs of tracks if possible
613 //
3326b323 614 AliESDfriend *eESDfriend=static_cast<AliESDfriend*>(event->FindListObject("AliESDfriend"));
615 if (!eESDfriend) return;
4de48bc7 616 Int_t ntracks=event->GetNumberOfTracks();
b842d904 617 Int_t kMaxTracks=4; // maximal number of tracks for cosmic pairs
618 Int_t kMinVertexTracks=5; // maximal number of tracks for vertex mesurement
619
4de48bc7 620 //cuts
621 const Int_t kminCl = 60;
622 const Int_t kminClSum = 120;
b842d904 623 //const Double_t kDistY = 5;
4de48bc7 624 // const Double_t kDistZ = 40;
625 const Double_t kDistTh = 0.05;
b842d904 626 const Double_t kDistThS = 0.002;
4de48bc7 627 const Double_t kDist1Pt = 0.1;
b842d904 628 const Double_t kMaxD0 =3; // max distance to the primary vertex
629 const Double_t kMaxD1 =5; // max distance to the primary vertex
630 const AliESDVertex *tpcVertex = 0;
631 // get the primary vertex TPC
632 if (ntracks>kMinVertexTracks) {
633 tpcVertex = event->GetPrimaryVertexSPD();
634 if (tpcVertex->GetNContributors()<kMinVertexTracks) tpcVertex=0;
635 }
4de48bc7 636 //
637 Float_t dca0[2];
b842d904 638 // Float_t dca1[2];
4de48bc7 639 Int_t index0=0,index1=0;
640 //
641 for (Int_t i0=0;i0<ntracks;++i0) {
642 AliESDtrack *track0 = event->GetTrack(i0);
643 if (!track0) continue;
644 if ((track0->GetStatus() & AliESDtrack::kTPCrefit)==0) continue;
645 if (track0->GetOuterParam()==0) continue;
b842d904 646 if (track0->GetInnerParam()==0) continue;
647 if (TMath::Abs(track0->GetInnerParam()->GetSigned1Pt()-track0->GetOuterParam()->GetSigned1Pt())>kDist1Pt) continue;
648 if (TMath::Abs(track0->GetInnerParam()->GetSigned1Pt())>kDist1Pt) continue;
649 if (TMath::Abs(track0->GetInnerParam()->GetTgl()-track0->GetOuterParam()->GetTgl())>kDistThS) continue;
4de48bc7 650 AliESDtrack *track1P = 0;
651 if (track0->GetTPCNcls()<kminCl) continue;
652 track0->GetImpactParameters(dca0[0],dca0[1]);
653 index0=i0;
654 index1=-1;
655 //
b842d904 656 if (ntracks<kMaxTracks) for (Int_t i1=i0+1;i1<ntracks;++i1) {
4de48bc7 657 if (i0==i1) continue;
658 AliESDtrack *track1 = event->GetTrack(i1);
659 if (!track1) continue;
660 if ((track1->GetStatus() & AliESDtrack::kTPCrefit)==0) continue;
661 if (track1->GetOuterParam()==0) continue;
b842d904 662 if (track1->GetInnerParam()==0) continue;
4de48bc7 663 if (track1->GetTPCNcls()<kminCl) continue;
b842d904 664 if (TMath::Abs(track1->GetInnerParam()->GetSigned1Pt()-track1->GetOuterParam()->GetSigned1Pt())>kDist1Pt) continue;
665 if (TMath::Abs(track1->GetInnerParam()->GetTgl()-track1->GetOuterParam()->GetTgl())>kDistThS) continue;
666 if (TMath::Abs(track1->GetInnerParam()->GetSigned1Pt())>kDist1Pt) continue;
667 //track1->GetImpactParameters(dca1[0],dca1[1]);
4de48bc7 668 //if (TMath::Abs(dca1[0]-dca0[0])>kDistY) continue;
669 //if (TMath::Abs(dca1[1]-dca0[1])>kDistZ) continue;
670 if (TMath::Abs(track0->GetTgl()+track1->GetTgl())>kDistTh) continue;
671 if (TMath::Abs(track0->GetSigned1Pt()+track1->GetSigned1Pt())>kDist1Pt) continue;
672 track1P = track1;
673 index1=i1;
674 }
675 AliESDfriendTrack *friendTrack = 0;
676 TObject *calibObject=0;
677 AliTPCseed *seed0 = 0,*seed1=0;
678 //
3326b323 679 friendTrack = (AliESDfriendTrack *)eESDfriend->GetTrack(index0);;
b9908d0b 680 if (!friendTrack) continue;
4de48bc7 681 for (Int_t l=0;(calibObject=friendTrack->GetCalibObject(l));++l) {
682 if ((seed0=dynamic_cast<AliTPCseed*>(calibObject))) break;
683 }
684 if (index1>0){
3326b323 685 friendTrack = (AliESDfriendTrack *)eESDfriend->GetTrack(index1);;
b9908d0b 686 if (!friendTrack) continue;
4de48bc7 687 for (Int_t l=0;(calibObject=friendTrack->GetCalibObject(l));++l) {
688 if ((seed1=dynamic_cast<AliTPCseed*>(calibObject))) break;
689 }
690 }
691 //
692 Int_t npoints=0, ncont=0;
693 if (seed0) {npoints+=seed0->GetNumberOfClusters(); ncont++;}
694 if (seed1) {npoints+=seed1->GetNumberOfClusters(); ncont++;}
695 if (npoints<kminClSum) continue;
696 Int_t cpoint=0;
697 AliTrackPointArray array(npoints);
b842d904 698 if (tpcVertex){
699 Double_t dxyz[3]={0,0,0};
700 Double_t dc[6]={0,0,0};
701 tpcVertex->GetXYZ(dxyz);
702 tpcVertex->GetCovarianceMatrix(dc);
2942f542 703 Float_t xyz[3]={static_cast<Float_t>(dxyz[0]),static_cast<Float_t>(dxyz[1]),static_cast<Float_t>(dxyz[2])};
704 Float_t cov[6]={static_cast<Float_t>(dc[0]+1),static_cast<Float_t>(dc[1]),static_cast<Float_t>(dc[2]+1),static_cast<Float_t>(dc[3]),static_cast<Float_t>(dc[4]),static_cast<Float_t>(dc[5]+100.)};
b842d904 705 AliTrackPoint point(xyz,cov,73); // add point to not existing volume
706 Float_t dtpc[2],dcov[3];
707 track0->GetImpactParametersTPC(dtpc,dcov);
708 if (TMath::Abs(dtpc[0])>kMaxD0) continue;
709 if (TMath::Abs(dtpc[1])>kMaxD1) continue;
710 }
711
4de48bc7 712 if (seed0) for (Int_t icl = 0; icl<160; icl++){
713 AliTPCclusterMI *cluster=seed0->GetClusterPointer(icl);
714 if (!cluster) continue;
715 Float_t xyz[3];
716 Float_t cov[6];
717 cluster->GetGlobalXYZ(xyz);
718 cluster->GetGlobalCov(cov);
719 AliTrackPoint point(xyz,cov,cluster->GetDetector());
b842d904 720 array.AddPoint(npoints, &point);
4de48bc7 721 if (cpoint>=npoints) continue; //shoul not happen
722 array.AddPoint(cpoint, &point);
723 cpoint++;
724 }
725 if (seed1) for (Int_t icl = 0; icl<160; icl++){
726 AliTPCclusterMI *cluster=seed1->GetClusterPointer(icl);
727 if (!cluster) continue;
728 Float_t xyz[3];
729 Float_t cov[6];
730 cluster->GetGlobalXYZ(xyz);
731 cluster->GetGlobalCov(cov);
732 AliTrackPoint point(xyz,cov,cluster->GetDetector());
733 array.AddPoint(npoints, &point);
734 if (cpoint>=npoints) continue; //shoul not happen
735 array.AddPoint(cpoint, &point);
736 cpoint++;
737 }
738 //
739 //
740 //
741 TTreeSRedirector *cstream = GetDebugStreamer();
742 if (cstream){
b842d904 743 Bool_t isVertex=(tpcVertex)? kTRUE:kFALSE;
744 Double_t tof0=track0->GetTOFsignal();
745 Double_t tof1=(track1P) ? track1P->GetTOFsignal(): 0;
4de48bc7 746 static AliExternalTrackParam dummy;
747 AliExternalTrackParam *p0In = &dummy;
748 AliExternalTrackParam *p1In = &dummy;
749 AliExternalTrackParam *p0Out = &dummy;
750 AliExternalTrackParam *p1Out = &dummy;
b842d904 751 AliESDVertex vdummy;
752 AliESDVertex *pvertex= (tpcVertex)? (AliESDVertex *)tpcVertex: &vdummy;
4de48bc7 753 if (track0) {
754 p0In= new AliExternalTrackParam(*track0);
755 p0Out=new AliExternalTrackParam(*(track0->GetOuterParam()));
756 }
757 if (track1P) {
758 p1In= new AliExternalTrackParam(*track1P);
759 p1Out=new AliExternalTrackParam(*(track1P->GetOuterParam()));
760 }
761
762 (*cstream)<<"trackPoints"<<
763 "run="<<fRun<< // run number
764 "event="<<fEvent<< // event number
765 "time="<<fTime<< // time stamp of event
766 "trigger="<<fTrigger<< // trigger
767 "triggerClass="<<&fTriggerClass<< // trigger
768 "mag="<<fMagF<< // magnetic field
b842d904 769 "pvertex.="<<pvertex<< // vertex
4de48bc7 770 //
b842d904 771 "isVertex="<<isVertex<< // flag is with prim vertex
772 "tof0="<<tof0<< // tof signal 0
773 "tof1="<<tof1<< // tof signal 1
774 "seed0.="<<seed0<< // track info
4de48bc7 775 "ntracks="<<ntracks<< // number of tracks
776 "ncont="<<ncont<< // number of contributors
777 "p0In.="<<p0In<< // track parameters0
778 "p1In.="<<p1In<< // track parameters1
779 "p0Out.="<<p0Out<< // track parameters0
780 "p1Out.="<<p1Out<< // track parameters0
781 "p.="<<&array<<
782 "\n";
783 }
784 }
785}
786
774a5ee9 787
788
789
b842d904 790void AliTPCcalibAlign::ProcessSeed(AliTPCseed *seed) {
175d237b 791 //
792 //
793 //
774a5ee9 794 // make a kalman tracklets out of seed
795 //
5b7417d2 796 UpdateClusterDeltaField(seed);
e4042305 797 TObjArray tracklets=
798 AliTPCTracklet::CreateTracklets(seed,AliTPCTracklet::kKalman,
774a5ee9 799 kFALSE,20,4);
e4042305 800 tracklets.SetOwner();
774a5ee9 801 Int_t ntracklets = tracklets.GetEntries();
802 if (ntracklets<2) return;
803 //
804 //
805 for (Int_t i1=0;i1<ntracklets;i1++)
806 for (Int_t i2=0;i2<ntracklets;i2++){
807 if (i1==i2) continue;
808 AliTPCTracklet *t1=static_cast<AliTPCTracklet*>(tracklets[i1]);
809 AliTPCTracklet *t2=static_cast<AliTPCTracklet*>(tracklets[i2]);
810 AliExternalTrackParam *common1=0,*common2=0;
811 if (AliTPCTracklet::PropagateToMeanX(*t1,*t2,common1,common2)){
4486a91f 812 ProcessTracklets(*common1,*common2,seed, t1->GetSector(),t2->GetSector());
774a5ee9 813 UpdateAlignSector(seed,t1->GetSector());
814 }
815 delete common1;
816 delete common2;
817 }
e4042305 818}
819
7eaa723e 820void AliTPCcalibAlign::Analyze(){
821 //
822 // Analyze function
823 //
824 EvalFitters();
825}
826
827
828void AliTPCcalibAlign::Terminate(){
829 //
830 // Terminate function
831 // call base terminate + Eval of fitters
832 //
108953e9 833 Info("AliTPCcalibAlign","Terminate");
7eaa723e 834 EvalFitters();
835 AliTPCcalibBase::Terminate();
836}
837
838
774a5ee9 839void AliTPCcalibAlign::UpdatePointCorrection(AliTPCPointCorrection * correction){
840 //
841 // Update point correction with alignment coefficients
842 //
843 for (Int_t isec=0;isec<36;isec++){
844 TMatrixD * matCorr = (TMatrixD*)(correction->fArraySectorIntParam.At(isec));
845 TMatrixD * matAlign = (TMatrixD*)(fArraySectorIntParam.At(isec));
846 TMatrixD * matAlignCovar = (TMatrixD*)(fArraySectorIntCovar.At(isec));
847 if (!matAlign) continue;
848 if (!matCorr) {
849 correction->fArraySectorIntParam.AddAt(matAlign->Clone(),isec);
850 correction->fArraySectorIntCovar.AddAt(matAlignCovar->Clone(),isec);
851 continue;
852 }
853 (*matCorr)+=(*matAlign);
854 correction->fArraySectorIntCovar.AddAt(matAlignCovar->Clone(),isec);
855 }
856 //
857
858}
7eaa723e 859
860
e4042305 861void AliTPCcalibAlign::ProcessTracklets(const AliExternalTrackParam &tp1,
862 const AliExternalTrackParam &tp2,
967eae0d 863 const AliTPCseed * seed,
e4042305 864 Int_t s1,Int_t s2) {
9318a5b4 865 //
866 // Process function to fill fitters
867 //
ad746939 868 if (!seed) return;
1d82fc56 869 Double_t t1[10],t2[10];
774a5ee9 870 Double_t &x1=t1[0], &y1=t1[1], &z1=t1[3], &dydx1=t1[2], &dzdx1=t1[4];
871 Double_t &x2=t2[0], &y2=t2[1], &z2=t2[3], &dydx2=t2[2], &dzdx2=t2[4];
9318a5b4 872 x1 =tp1.GetX();
873 y1 =tp1.GetY();
874 z1 =tp1.GetZ();
875 Double_t snp1=tp1.GetSnp();
60e55aee 876 dydx1=snp1/TMath::Sqrt((1.-snp1)*(1.+snp1));
9318a5b4 877 Double_t tgl1=tp1.GetTgl();
878 // dz/dx = 1/(cos(theta)*cos(phi))
60e55aee 879 dzdx1=tgl1/TMath::Sqrt((1.-snp1)*(1.+snp1));
7eaa723e 880 x2 =tp2.GetX();
9318a5b4 881 y2 =tp2.GetY();
882 z2 =tp2.GetZ();
883 Double_t snp2=tp2.GetSnp();
60e55aee 884 dydx2=snp2/TMath::Sqrt((1.-snp2)*(1.+snp2));
9318a5b4 885 Double_t tgl2=tp2.GetTgl();
60e55aee 886 dzdx2=tgl2/TMath::Sqrt((1.-snp2)*(1.+snp2));
774a5ee9 887
7eaa723e 888 //
774a5ee9 889 // Kalman parameters
7eaa723e 890 //
774a5ee9 891 t1[0]-=fXIO;
892 t2[0]-=fXIO;
893 // errors
894 t1[5]=0; t2[5]=0;
895 t1[6]=TMath::Sqrt(tp1.GetSigmaY2());
896 t1[7]=TMath::Sqrt(tp1.GetSigmaSnp2());
897 t1[8]=TMath::Sqrt(tp1.GetSigmaZ2());
898 t1[9]=TMath::Sqrt(tp1.GetSigmaTgl2());
899
900 t2[6]=TMath::Sqrt(tp2.GetSigmaY2());
901 t2[7]=TMath::Sqrt(tp2.GetSigmaSnp2());
902 t2[8]=TMath::Sqrt(tp2.GetSigmaZ2());
903 t2[9]=TMath::Sqrt(tp2.GetSigmaTgl2());
7eaa723e 904 //
774a5ee9 905 // linear parameters
906 //
907 Double_t parLine1[10];
908 Double_t parLine2[10];
909 TMatrixD par1(4,1),cov1(4,4),par2(4,1),cov2(4,4);
4de48bc7 910 Bool_t useInnerOuter = kFALSE;
911 if (s1%36!=s2%36) useInnerOuter = fUseInnerOuter; // for left - right alignment bot sectors refit can be used if specified
912 Int_t nl1 = RefitLinear(seed,s1, parLine1, s1,par1,cov1,tp1.GetX(), useInnerOuter);
913 Int_t nl2 = RefitLinear(seed,s2, parLine2, s1,par2,cov2,tp1.GetX(), useInnerOuter);
774a5ee9 914 parLine1[0]=tp1.GetX()-fXIO; // parameters in IROC-OROC boundary
915 parLine2[0]=tp1.GetX()-fXIO; // parameters in IROC-OROC boundary
916 //
917 //
918 //
919 Int_t accept = AcceptTracklet(tp1,tp2);
920 Int_t acceptLinear = AcceptTracklet(parLine1,parLine2);
60721370 921
922
ad746939 923 if (fStreamLevel>1){
7eaa723e 924 TTreeSRedirector *cstream = GetDebugStreamer();
925 if (cstream){
926 static TVectorD vec1(5);
927 static TVectorD vec2(5);
774a5ee9 928 static TVectorD vecL1(9);
929 static TVectorD vecL2(9);
7eaa723e 930 vec1.SetElements(t1);
931 vec2.SetElements(t2);
774a5ee9 932 vecL1.SetElements(parLine1);
933 vecL2.SetElements(parLine2);
7eaa723e 934 AliExternalTrackParam *p1 = &((AliExternalTrackParam&)tp1);
935 AliExternalTrackParam *p2 = &((AliExternalTrackParam&)tp2);
936 (*cstream)<<"Tracklet"<<
1d82fc56 937 "accept="<<accept<<
774a5ee9 938 "acceptLinear="<<acceptLinear<< // accept linear tracklets
108953e9 939 "run="<<fRun<< // run number
940 "event="<<fEvent<< // event number
941 "time="<<fTime<< // time stamp of event
942 "trigger="<<fTrigger<< // trigger
774a5ee9 943 "triggerClass="<<&fTriggerClass<< // trigger
108953e9 944 "mag="<<fMagF<< // magnetic field
6f387311 945 "isOK="<<accept<< // flag - used for alignment
7eaa723e 946 "tp1.="<<p1<<
947 "tp2.="<<p2<<
948 "v1.="<<&vec1<<
949 "v2.="<<&vec2<<
950 "s1="<<s1<<
951 "s2="<<s2<<
774a5ee9 952 "nl1="<<nl1<< // linear fit - n points
953 "nl2="<<nl2<< // linear fit - n points
954 "vl1.="<<&vecL1<< // linear fits
955 "vl2.="<<&vecL2<< // linear fits
7eaa723e 956 "\n";
957 }
958 }
774a5ee9 959 if (TMath::Abs(fMagF)<0.005){
960 //
961 // use Linear fit
962 //
963 if (nl1>10 && nl2>10 &&(acceptLinear==0)){
ad746939 964 ProcessDiff(tp1,tp2, seed,s1,s2);
774a5ee9 965 if (TMath::Abs(parLine1[2])<0.8 &&TMath::Abs(parLine1[2])<0.8 ){ //angular cut
966 FillHisto(parLine1,parLine2,s1,s2);
967 ProcessAlign(parLine1,parLine2,s1,s2);
76c58ee2 968 FillHisto((AliExternalTrackParam*)&tp1,(AliExternalTrackParam*)&tp2,s1,s2);
969 FillHisto((AliExternalTrackParam*)&tp2,(AliExternalTrackParam*)&tp1,s2,s1);
4486a91f 970 //UpdateKalman(s1,s2,par1, cov1, par2, cov2); - OBSOLETE to be removed - 50 % of time here
774a5ee9 971 }
972 }
973 }
1d82fc56 974 if (accept>0) return;
8b3c60d8 975 //
976 // fill resolution histograms - previous cut included
774a5ee9 977 if (TMath::Abs(fMagF)>0.005){
978 //
979 // use Kalman if mag field
980 //
ad746939 981 ProcessDiff(tp1,tp2, seed,s1,s2);
982 FillHisto((AliExternalTrackParam*)&tp1,(AliExternalTrackParam*)&tp2,s1,s2);
983 FillHisto((AliExternalTrackParam*)&tp2,(AliExternalTrackParam*)&tp1,s2,s1);
774a5ee9 984 FillHisto(t1,t2,s1,s2);
985 ProcessAlign(t1,t2,s1,s2);
986 }
6f387311 987}
988
989void AliTPCcalibAlign::ProcessAlign(Double_t * t1,
990 Double_t * t2,
991 Int_t s1,Int_t s2){
992 //
993 // Do intersector alignment
8b3c60d8 994 //
b322e06a 995 //Process12(t1,t2,GetOrMakeFitter12(s1,s2));
996 //Process9(t1,t2,GetOrMakeFitter9(s1,s2));
7eaa723e 997 Process6(t1,t2,GetOrMakeFitter6(s1,s2));
e81dc112 998 ++fPoints[GetIndex(s1,s2)];
9318a5b4 999}
1000
6f387311 1001
1002
1d82fc56 1003Int_t AliTPCcalibAlign::AcceptTracklet(const AliExternalTrackParam &p1,
3326b323 1004 const AliExternalTrackParam &p2) const
1005{
6f387311 1006
1007 //
1008 // Accept pair of tracklets?
1009 //
1010 /*
1011 // resolution cuts
1d82fc56 1012 TCut cutS0("sqrt(tp2.fC[0]+tp1.fC[0])<0.2");
1013 TCut cutS1("sqrt(tp2.fC[2]+tp1.fC[2])<0.2");
1014 TCut cutS2("sqrt(tp2.fC[5]+tp1.fC[5])<0.01");
1015 TCut cutS3("sqrt(tp2.fC[9]+tp1.fC[9])<0.01");
1016 TCut cutS4("sqrt(tp2.fC[14]+tp1.fC[14])<0.25");
6f387311 1017 TCut cutS=cutS0+cutS1+cutS2+cutS3+cutS4;
1018 //
1019 // parameters matching cuts
1020 TCut cutP0("abs(tp1.fP[0]-tp2.fP[0])<0.6");
1021 TCut cutP1("abs(tp1.fP[1]-tp2.fP[1])<0.6");
1022 TCut cutP2("abs(tp1.fP[2]-tp2.fP[2])<0.03");
1023 TCut cutP3("abs(tp1.fP[3]-tp2.fP[3])<0.03");
1d82fc56 1024 TCut cutP4("abs(tp1.fP[4]-tp2.fP[4])<0.5");
1025 TCut cutPP4("abs(tp1.fP[4]-tp2.fP[4])/sqrt(tp2.fC[14]+tp1.fC[14])<3");
1026 TCut cutP=cutP0+cutP1+cutP2+cutP3+cutP4+cutPP4;
6f387311 1027 */
1028 //
1029 // resolution cuts
1d82fc56 1030 Int_t reject=0;
6f387311 1031 const Double_t *cp1 = p1.GetCovariance();
1032 const Double_t *cp2 = p2.GetCovariance();
1d82fc56 1033 if (TMath::Sqrt(cp1[0]+cp2[0])>0.2) reject|=1;;
1034 if (TMath::Sqrt(cp1[2]+cp2[2])>0.2) reject|=2;
1035 if (TMath::Sqrt(cp1[5]+cp2[5])>0.01) reject|=4;
1036 if (TMath::Sqrt(cp1[9]+cp2[9])>0.01) reject|=8;
1037 if (TMath::Sqrt(cp1[14]+cp2[14])>0.2) reject|=16;
6f387311 1038
1039 //parameters difference
1040 const Double_t *tp1 = p1.GetParameter();
1041 const Double_t *tp2 = p2.GetParameter();
1d82fc56 1042 if (TMath::Abs(tp1[0]-tp2[0])>0.6) reject|=32;
1043 if (TMath::Abs(tp1[1]-tp2[1])>0.6) reject|=64;
1044 if (TMath::Abs(tp1[2]-tp2[2])>0.03) reject|=128;
1045 if (TMath::Abs(tp1[3]-tp2[3])>0.03) reject|=526;
1046 if (TMath::Abs(tp1[4]-tp2[4])>0.4) reject|=1024;
1047 if (TMath::Abs(tp1[4]-tp2[4])/TMath::Sqrt(cp1[14]+cp2[14])>4) reject|=2048;
1048
6f387311 1049 //
1d82fc56 1050 if (TMath::Abs(tp2[1])>235) reject|=2*4096;
1051
1052 if (fNoField){
1053
1054 }
1055
1056 return reject;
6f387311 1057}
1058
1059
3326b323 1060Int_t AliTPCcalibAlign::AcceptTracklet(const Double_t *t1, const Double_t *t2) const
1061{
774a5ee9 1062 //
1063 // accept tracklet -
1064 // dist cut + 6 sigma cut
1065 //
1066 Double_t dy = t2[1]-t1[1];
1067 Double_t dphi = t2[2]-t1[2];
1068 Double_t dz = t2[3]-t1[3];
1069 Double_t dtheta = t2[4]-t1[4];
1070 //
1071 Double_t sy = TMath::Sqrt(t1[6]*t1[6]+t2[6]*t2[6]+0.05*0.05);
1072 Double_t sdydx = TMath::Sqrt(t1[7]*t1[7]+t2[7]*t2[7]+0.001*0.001);
1073 Double_t sz = TMath::Sqrt(t1[8]*t1[8]+t2[8]*t2[8]+0.05*0.05);
1074 Double_t sdzdx = TMath::Sqrt(t1[9]*t1[9]+t2[9]*t2[9]+0.001*0.001);
1075 //
1076 Int_t reject=0;
1077 if (TMath::Abs(dy)>1.) reject|=2;
1078 if (TMath::Abs(dphi)>0.1) reject|=4;
1079 if (TMath::Abs(dz)>1.) reject|=8;
1080 if (TMath::Abs(dtheta)>0.1) reject|=16;
1081 //
1082 if (TMath::Abs(dy/sy)>6) reject|=32;
1083 if (TMath::Abs(dphi/sdydx)>6) reject|=64;
1084 if (TMath::Abs(dz/sz)>6) reject|=128;
1085 if (TMath::Abs(dtheta/sdzdx)>6) reject|=256;
1086 return reject;
1087}
1088
6f387311 1089
967eae0d 1090void AliTPCcalibAlign::ProcessDiff(const AliExternalTrackParam &t1,
1091 const AliExternalTrackParam &t2,
1092 const AliTPCseed *seed,
1093 Int_t s1,Int_t s2)
1094{
1095 //
1096 // Process local residuals function
1097 //
1098 TVectorD vecX(160);
1099 TVectorD vecY(160);
1100 TVectorD vecZ(160);
1101 TVectorD vecClY(160);
1102 TVectorD vecClZ(160);
1103 TClonesArray arrCl("AliTPCclusterMI",160);
1104 arrCl.ExpandCreateFast(160);
1105 Int_t count1=0, count2=0;
1d82fc56 1106
967eae0d 1107 for (Int_t i=0;i<160;++i) {
1108 AliTPCclusterMI *c=seed->GetClusterPointer(i);
1109 vecX[i]=0;
1110 vecY[i]=0;
1111 vecZ[i]=0;
1112 if (!c) continue;
1113 AliTPCclusterMI & cl = (AliTPCclusterMI&) (*arrCl[i]);
1114 if (c->GetDetector()!=s1 && c->GetDetector()!=s2) continue;
1115 vecClY[i] = c->GetY();
1116 vecClZ[i] = c->GetZ();
1117 cl=*c;
1118 const AliExternalTrackParam *par = (c->GetDetector()==s1)? &t1:&t2;
1119 if (c->GetDetector()==s1) ++count1;
1120 if (c->GetDetector()==s2) ++count2;
1121 Double_t gxyz[3],xyz[3];
1122 t1.GetXYZ(gxyz);
1123 Float_t bz = AliTracker::GetBz(gxyz);
1124 par->GetYAt(c->GetX(), bz, xyz[1]);
1125 par->GetZAt(c->GetX(), bz, xyz[2]);
1126 vecX[i] = c->GetX();
1127 vecY[i]= xyz[1];
1128 vecZ[i]= xyz[2];
1129 }
1130 //
1131 //
774a5ee9 1132 if (fStreamLevel>5 && count1>10 && count2>10){
967eae0d 1133 //
1134 // huge output - cluster residuals to be investigated
1135 //
1136 TTreeSRedirector *cstream = GetDebugStreamer();
967eae0d 1137 AliExternalTrackParam *p1 = &((AliExternalTrackParam&)t1);
1138 AliExternalTrackParam *p2 = &((AliExternalTrackParam&)t2);
1c1a1176 1139 /*
1140
1141 Track->Draw("Cl[].fY-vtY.fElements:vtY.fElements-vtX.fElements*tan(pi/18.)>>his(100,-10,0)","Cl.fY!=0&&abs(Cl.fY-vtY.fElements)<1","prof");
1142
1143 */
1144
967eae0d 1145 if (cstream){
1146 (*cstream)<<"Track"<<
108953e9 1147 "run="<<fRun<< // run number
1148 "event="<<fEvent<< // event number
1149 "time="<<fTime<< // time stamp of event
1150 "trigger="<<fTrigger<< // trigger
774a5ee9 1151 "triggerClass="<<&fTriggerClass<< // trigger
108953e9 1152 "mag="<<fMagF<< // magnetic field
967eae0d 1153 "Cl.="<<&arrCl<<
1154 //"tp0.="<<p0<<
1155 "tp1.="<<p1<<
1156 "tp2.="<<p2<<
1157 "vtX.="<<&vecX<<
1158 "vtY.="<<&vecY<<
1159 "vtZ.="<<&vecZ<<
1160 "vcY.="<<&vecClY<<
1161 "vcZ.="<<&vecClZ<<
1162 "s1="<<s1<<
1163 "s2="<<s2<<
1164 "c1="<<count1<<
1165 "c2="<<count2<<
1166 "\n";
1167 }
1168 }
1169}
1170
1171
1172
1173
7eaa723e 1174void AliTPCcalibAlign::Process12(const Double_t *t1,
1175 const Double_t *t2,
3326b323 1176 TLinearFitter *fitter) const
1177{
9318a5b4 1178 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
1179 // y2 = a10*x1 + a11*y1 + a12*z1 + a13
1180 // z2 = a20*x1 + a21*y1 + a22*z1 + a23
1181 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
1182 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
1183 //
f8a2dcfb 1184 // a00 a01 a02 a03 p[0] p[1] p[2] p[9]
1185 // a10 a11 a12 a13 ==> p[3] p[4] p[5] p[10]
1186 // a20 a21 a22 a23 p[6] p[7] p[8] p[11]
1187
1188
1189
774a5ee9 1190 const Double_t &x1=t1[0], &y1=t1[1], &z1=t1[3], &dydx1=t1[2], &dzdx1=t1[4];
1191 const Double_t /*&x2=t2[0],*/ &y2=t2[1], &z2=t2[3], &dydx2=t2[2], &dzdx2=t2[4];
9318a5b4 1192
1d82fc56 1193 //
774a5ee9 1194 Double_t sy = TMath::Sqrt(t1[6]*t1[6]+t2[6]*t2[6]);
1195 Double_t sdydx = TMath::Sqrt(t1[7]*t1[7]+t2[7]*t2[7]);
1196 Double_t sz = TMath::Sqrt(t1[8]*t1[8]+t2[8]*t2[8]);
1197 Double_t sdzdx = TMath::Sqrt(t1[9]*t1[9]+t2[9]*t2[9]);
9318a5b4 1198
1199 Double_t p[12];
1200 Double_t value;
1201
1202 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
1203 // y2 = a10*x1 + a11*y1 + a12*z1 + a13
1204 // y2' = a10*x1 + a11*y1 + a12*z1 + a13 + (a01*y1 + a02*z1 + a03)*dydx2
1205 for (Int_t i=0; i<12;i++) p[i]=0.;
1206 p[3+0] = x1; // a10
1207 p[3+1] = y1; // a11
1208 p[3+2] = z1; // a12
1209 p[9+1] = 1.; // a13
1210 p[0+1] = y1*dydx2; // a01
1211 p[0+2] = z1*dydx2; // a02
1212 p[9+0] = dydx2; // a03
1213 value = y2;
1214 fitter->AddPoint(p,value,sy);
1215
1216 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
1217 // z2 = a20*x1 + a21*y1 + a22*z1 + a23
1218 // z2' = a20*x1 + a21*y1 + a22*z1 + a23 + (a01*y1 + a02*z1 + a03)*dzdx2;
1219 for (Int_t i=0; i<12;i++) p[i]=0.;
1220 p[6+0] = x1; // a20
1221 p[6+1] = y1; // a21
1222 p[6+2] = z1; // a22
1223 p[9+2] = 1.; // a23
1224 p[0+1] = y1*dzdx2; // a01
1225 p[0+2] = z1*dzdx2; // a02
1226 p[9+0] = dzdx2; // a03
1227 value = z2;
1228 fitter->AddPoint(p,value,sz);
1229
1230 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/( a00 + a01*dydx1 + a02*dzdx1)
1231 // (a10 + a11*dydx1 + a12*dzdx1) - (a00 + a01*dydx1 + a02*dzdx1)*dydx2 = 0
1232 for (Int_t i=0; i<12;i++) p[i]=0.;
1233 p[3+0] = 1.; // a10
1234 p[3+1] = dydx1; // a11
1235 p[3+2] = dzdx1; // a12
1236 p[0+0] = -dydx2; // a00
1237 p[0+1] = -dydx1*dydx2; // a01
1238 p[0+2] = -dzdx1*dydx2; // a02
1239 value = 0.;
1240 fitter->AddPoint(p,value,sdydx);
1241
1242 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/( a00 + a01*dydx1 + a02*dzdx1)
1243 // (a20 + a21*dydx1 + a22*dzdx1) - (a00 + a01*dydx1 + a02*dzdx1)*dzdx2 = 0
1244 for (Int_t i=0; i<12;i++) p[i]=0.;
1245 p[6+0] = 1; // a20
1246 p[6+1] = dydx1; // a21
1247 p[6+2] = dzdx1; // a22
1248 p[0+0] = -dzdx2; // a00
1249 p[0+1] = -dydx1*dzdx2; // a01
1250 p[0+2] = -dzdx1*dzdx2; // a02
1251 value = 0.;
1252 fitter->AddPoint(p,value,sdzdx);
1253}
1254
3326b323 1255void AliTPCcalibAlign::Process9(const Double_t * const t1,
1256 const Double_t * const t2,
1257 TLinearFitter *fitter) const
1258{
9318a5b4 1259 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
1260 // y2 = a10*x1 + a11*y1 + a12*z1 + a13
1261 // z2 = a20*x1 + a21*y1 + a22*z1 + a23
1262 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
1263 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
1264 //
f8a2dcfb 1265 // a00 a01 a02 a03 1 p[0] p[1] p[6]
1266 // a10 a11 a12 a13 ==> p[2] 1 p[3] p[7]
1267 // a20 a21 a21 a23 p[4] p[5] 1 p[8]
1268
1269
3326b323 1270 const Double_t &x1=t1[0], &y1=t1[1], &z1=t1[3], &dydx1=t1[2], &dzdx1=t1[4];
1271 const Double_t /*&x2=t2[0],*/ &y2=t2[1], &z2=t2[3], &dydx2=t2[2], &dzdx2=t2[4];
1d82fc56 1272 //
774a5ee9 1273 Double_t sy = TMath::Sqrt(t1[6]*t1[6]+t2[6]*t2[6]);
1274 Double_t sdydx = TMath::Sqrt(t1[7]*t1[7]+t2[7]*t2[7]);
1275 Double_t sz = TMath::Sqrt(t1[8]*t1[8]+t2[8]*t2[8]);
1276 Double_t sdzdx = TMath::Sqrt(t1[9]*t1[9]+t2[9]*t2[9]);
1277
f8a2dcfb 1278 //
9318a5b4 1279 Double_t p[12];
1280 Double_t value;
1281
1282 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
1283 // y2 = a10*x1 + a11*y1 + a12*z1 + a13
f8a2dcfb 1284 // y2' = a10*x1 + a11*y1 + a12*z1 + a13 + (a01*y1 + a02*z1 + a03)*dydx2
9318a5b4 1285 for (Int_t i=0; i<12;i++) p[i]=0.;
f8a2dcfb 1286 p[2] += x1; // a10
1287 //p[] +=1; // a11
1288 p[3] += z1; // a12
1289 p[7] += 1; // a13
1290 p[0] += y1*dydx2; // a01
1291 p[1] += z1*dydx2; // a02
1292 p[6] += dydx2; // a03
1293 value = y2-y1; //-a11
9318a5b4 1294 fitter->AddPoint(p,value,sy);
f8a2dcfb 1295 //
9318a5b4 1296 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
1297 // z2 = a20*x1 + a21*y1 + a22*z1 + a23
f8a2dcfb 1298 // z2' = a20*x1 + a21*y1 + a22*z1 + a23 + (a01*y1 + a02*z1 + a03)*dzdx2;
9318a5b4 1299 for (Int_t i=0; i<12;i++) p[i]=0.;
f8a2dcfb 1300 p[4] += x1; // a20
1301 p[5] += y1; // a21
1302 //p[] += z1; // a22
1303 p[8] += 1.; // a23
1304 p[0] += y1*dzdx2; // a01
1305 p[1] += z1*dzdx2; // a02
1306 p[6] += dzdx2; // a03
1307 value = z2-z1; //-a22
9318a5b4 1308 fitter->AddPoint(p,value,sz);
1309
1310 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/( a00 + a01*dydx1 + a02*dzdx1)
1311 // (a10 + a11*dydx1 + a12*dzdx1) - (a00 + a01*dydx1 + a02*dzdx1)*dydx2 = 0
1312 for (Int_t i=0; i<12;i++) p[i]=0.;
f8a2dcfb 1313 p[2] += 1.; // a10
1314 //p[] += dydx1; // a11
1315 p[3] += dzdx1; // a12
1316 //p[] += -dydx2; // a00
1317 p[0] += -dydx1*dydx2; // a01
1318 p[1] += -dzdx1*dydx2; // a02
1319 value = -dydx1+dydx2; // -a11 + a00
9318a5b4 1320 fitter->AddPoint(p,value,sdydx);
1321
1322 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/( a00 + a01*dydx1 + a02*dzdx1)
1323 // (a20 + a21*dydx1 + a22*dzdx1) - (a00 + a01*dydx1 + a02*dzdx1)*dzdx2 = 0
1324 for (Int_t i=0; i<12;i++) p[i]=0.;
f8a2dcfb 1325 p[4] += 1; // a20
1326 p[5] += dydx1; // a21
1327 //p[] += dzdx1; // a22
1328 //p[] += -dzdx2; // a00
1329 p[0] += -dydx1*dzdx2; // a01
1330 p[1] += -dzdx1*dzdx2; // a02
1331 value = -dzdx1+dzdx2; // -a22 + a00
9318a5b4 1332 fitter->AddPoint(p,value,sdzdx);
1333}
1334
3326b323 1335void AliTPCcalibAlign::Process6(const Double_t *const t1,
1336 const Double_t *const t2,
1337 TLinearFitter *fitter) const
1338{
9318a5b4 1339 // x2 = 1 *x1 +-a01*y1 + 0 +a03
1340 // y2 = a01*x1 + 1 *y1 + 0 +a13
1341 // z2 = a20*x1 + a21*y1 + 1 *z1 +a23
1342 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
1343 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
1344 //
f8a2dcfb 1345 // a00 a01 a02 a03 1 -p[0] 0 p[3]
1346 // a10 a11 a12 a13 ==> p[0] 1 0 p[4]
1347 // a20 a21 a21 a23 p[1] p[2] 1 p[5]
1348
3326b323 1349 const Double_t &x1=t1[0], &y1=t1[1], &z1=t1[3], &dydx1=t1[2], &dzdx1=t1[4];
1350 const Double_t /*&x2=t2[0],*/ &y2=t2[1], &z2=t2[3], &dydx2=t2[2], &dzdx2=t2[4];
9318a5b4 1351
1d82fc56 1352 //
774a5ee9 1353 Double_t sy = TMath::Sqrt(t1[6]*t1[6]+t2[6]*t2[6]);
1354 Double_t sdydx = TMath::Sqrt(t1[7]*t1[7]+t2[7]*t2[7]);
1355 Double_t sz = TMath::Sqrt(t1[8]*t1[8]+t2[8]*t2[8]);
1356 Double_t sdzdx = TMath::Sqrt(t1[9]*t1[9]+t2[9]*t2[9]);
9318a5b4 1357
774a5ee9 1358
9318a5b4 1359 Double_t p[12];
1360 Double_t value;
f8a2dcfb 1361 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
1362 // y2 = a10*x1 + a11*y1 + a12*z1 + a13
9318a5b4 1363 // y2' = a10*x1 + a11*y1 + a12*z1 + a13 + (a01*y1 + a02*z1 + a03)*dydx2
1364 for (Int_t i=0; i<12;i++) p[i]=0.;
f8a2dcfb 1365 p[0] += x1; // a10
1366 //p[] +=1; // a11
1367 //p[] += z1; // a12
1368 p[4] += 1; // a13
1369 p[0] += -y1*dydx2; // a01
1370 //p[] += z1*dydx2; // a02
1371 p[3] += dydx2; // a03
1372 value = y2-y1; //-a11
9318a5b4 1373 fitter->AddPoint(p,value,sy);
f8a2dcfb 1374 //
1375 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
1376 // z2 = a20*x1 + a21*y1 + a22*z1 + a23
1377 // z2' = a20*x1 + a21*y1 + a22*z1 + a23 + (a01*y1 + a02*z1 + a03)*dzdx2;
9318a5b4 1378 for (Int_t i=0; i<12;i++) p[i]=0.;
f8a2dcfb 1379 p[1] += x1; // a20
1380 p[2] += y1; // a21
1381 //p[] += z1; // a22
1382 p[5] += 1.; // a23
1383 p[0] += -y1*dzdx2; // a01
1384 //p[] += z1*dzdx2; // a02
1385 p[3] += dzdx2; // a03
1386 value = z2-z1; //-a22
9318a5b4 1387 fitter->AddPoint(p,value,sz);
1388
1389 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/( a00 + a01*dydx1 + a02*dzdx1)
1390 // (a10 + a11*dydx1 + a12*dzdx1) - (a00 + a01*dydx1 + a02*dzdx1)*dydx2 = 0
1391 for (Int_t i=0; i<12;i++) p[i]=0.;
f8a2dcfb 1392 p[0] += 1.; // a10
1d82fc56 1393 //p[] += dydx1; // a11
f8a2dcfb 1394 //p[] += dzdx1; // a12
1395 //p[] += -dydx2; // a00
1d82fc56 1396 //p[0] += dydx1*dydx2; // a01 FIXME- 0912 MI
f8a2dcfb 1397 //p[] += -dzdx1*dydx2; // a02
1398 value = -dydx1+dydx2; // -a11 + a00
9318a5b4 1399 fitter->AddPoint(p,value,sdydx);
1400
1401 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/( a00 + a01*dydx1 + a02*dzdx1)
1402 // (a20 + a21*dydx1 + a22*dzdx1) - (a00 + a01*dydx1 + a02*dzdx1)*dzdx2 = 0
1403 for (Int_t i=0; i<12;i++) p[i]=0.;
f8a2dcfb 1404 p[1] += 1; // a20
1d82fc56 1405 // p[2] += dydx1; // a21 FIXME- 0912 MI
f8a2dcfb 1406 //p[] += dzdx1; // a22
1407 //p[] += -dzdx2; // a00
1d82fc56 1408 //p[0] += dydx1*dzdx2; // a01 FIXME- 0912 MI
f8a2dcfb 1409 //p[] += -dzdx1*dzdx2; // a02
1410 value = -dzdx1+dzdx2; // -a22 + a00
9318a5b4 1411 fitter->AddPoint(p,value,sdzdx);
1412}
1413
7eaa723e 1414
1415
1416
774a5ee9 1417void AliTPCcalibAlign::EvalFitters(Int_t minPoints) {
7eaa723e 1418 //
1419 // Analyze function
1420 //
1421 // Perform the fitting using linear fitters
1422 //
9318a5b4 1423 TLinearFitter *f;
7eaa723e 1424 TFile fff("alignDebug.root","recreate");
9318a5b4 1425 for (Int_t s1=0;s1<72;++s1)
7eaa723e 1426 for (Int_t s2=0;s2<72;++s2){
774a5ee9 1427 if ((f=GetFitter12(s1,s2))&&fPoints[GetIndex(s1,s2)]>minPoints) {
e81dc112 1428 // cerr<<s1<<","<<s2<<": "<<fPoints[GetIndex(s1,s2)]<<endl;
0ebabeb6 1429 if (f->Eval()!=0) {
9318a5b4 1430 cerr<<"Evaluation failed for "<<s1<<","<<s2<<endl;
7eaa723e 1431 f->Write(Form("f12_%d_%d",s1,s2));
1432 }else{
1433 f->Write(Form("f12_%d_%d",s1,s2));
9318a5b4 1434 }
1435 }
774a5ee9 1436 if ((f=GetFitter9(s1,s2))&&fPoints[GetIndex(s1,s2)]>minPoints) {
e81dc112 1437 // cerr<<s1<<","<<s2<<": "<<fPoints[GetIndex(s1,s2)]<<endl;
0ebabeb6 1438 if (f->Eval()!=0) {
7eaa723e 1439 cerr<<"Evaluation failed for "<<s1<<","<<s2<<endl;
1440 }else{
1441 f->Write(Form("f9_%d_%d",s1,s2));
1442 }
1443 }
774a5ee9 1444 if ((f=GetFitter6(s1,s2))&&fPoints[GetIndex(s1,s2)]>minPoints) {
e81dc112 1445 // cerr<<s1<<","<<s2<<": "<<fPoints[GetIndex(s1,s2)]<<endl;
972cf6f2 1446 if (f->Eval()!=0) {
7eaa723e 1447 cerr<<"Evaluation failed for "<<s1<<","<<s2<<endl;
1448 }else{
1449 f->Write(Form("f6_%d_%d",s1,s2));
1450 }
1451 }
1452 }
6f387311 1453 TMatrixD mat(4,4);
1454 for (Int_t s1=0;s1<72;++s1)
1455 for (Int_t s2=0;s2<72;++s2){
1456 if (GetTransformation12(s1,s2,mat)){
1457 fMatrixArray12.AddAt(mat.Clone(), GetIndex(s1,s2));
1458 }
1459 if (GetTransformation9(s1,s2,mat)){
1460 fMatrixArray9.AddAt(mat.Clone(), GetIndex(s1,s2));
1461 }
1462 if (GetTransformation6(s1,s2,mat)){
1463 fMatrixArray6.AddAt(mat.Clone(), GetIndex(s1,s2));
1464 }
9318a5b4 1465 }
6f387311 1466 //this->Write("align");
1467
9318a5b4 1468}
1469
972cf6f2 1470TLinearFitter* AliTPCcalibAlign::GetOrMakeFitter12(Int_t s1,Int_t s2) {
1471 //
1472 // get or make fitter - general linear transformation
1473 //
e81dc112 1474 static Int_t counter12=0;
1475 static TF1 f12("f12","x[0]++x[1]++x[2]++x[3]++x[4]++x[5]++x[6]++x[7]++x[8]++x[9]++x[10]++x[11]");
972cf6f2 1476 TLinearFitter * fitter = GetFitter12(s1,s2);
1477 if (fitter) return fitter;
e81dc112 1478 // fitter =new TLinearFitter(12,"x[0]++x[1]++x[2]++x[3]++x[4]++x[5]++x[6]++x[7]++x[8]++x[9]++x[10]++x[11]");
1479 fitter =new TLinearFitter(&f12,"");
6f387311 1480 fitter->StoreData(kFALSE);
e81dc112 1481 fFitterArray12.AddAt(fitter,GetIndex(s1,s2));
1482 counter12++;
b322e06a 1483 // if (GetDebugLevel()>0) cerr<<"Creating fitter12 "<<s1<<","<<s2<<" : "<<counter12<<endl;
972cf6f2 1484 return fitter;
1485}
1486
1487TLinearFitter* AliTPCcalibAlign::GetOrMakeFitter9(Int_t s1,Int_t s2) {
1488 //
1489 //get or make fitter - general linear transformation - no scaling
1490 //
e81dc112 1491 static Int_t counter9=0;
1492 static TF1 f9("f9","x[0]++x[1]++x[2]++x[3]++x[4]++x[5]++x[6]++x[7]++x[8]");
972cf6f2 1493 TLinearFitter * fitter = GetFitter9(s1,s2);
1494 if (fitter) return fitter;
e81dc112 1495 // fitter =new TLinearFitter(9,"x[0]++x[1]++x[2]++x[3]++x[4]++x[5]++x[6]++x[7]++x[8]");
1496 fitter =new TLinearFitter(&f9,"");
6f387311 1497 fitter->StoreData(kFALSE);
972cf6f2 1498 fFitterArray9.AddAt(fitter,GetIndex(s1,s2));
e81dc112 1499 counter9++;
b322e06a 1500 // if (GetDebugLevel()>0) cerr<<"Creating fitter12 "<<s1<<","<<s2<<" : "<<counter9<<endl;
972cf6f2 1501 return fitter;
1502}
1503
1504TLinearFitter* AliTPCcalibAlign::GetOrMakeFitter6(Int_t s1,Int_t s2) {
1505 //
1506 // get or make fitter - 6 paramater linear tranformation
1507 // - no scaling
1508 // - rotation x-y
1509 // - tilting x-z, y-z
e81dc112 1510 static Int_t counter6=0;
a8a52809 1511 //static TF1 f6("f6","x[0]++x[1]++x[2]++x[3]++x[4]++x[5]"); // change in the back compatibility in root -
972cf6f2 1512 TLinearFitter * fitter = GetFitter6(s1,s2);
1513 if (fitter) return fitter;
a8a52809 1514 fitter=new TLinearFitter(6,"x[0]++x[1]++x[2]++x[3]++x[4]++x[5]");
1515 //fitter=new TLinearFitter(&f6,"");
4de48bc7 1516 fitter->StoreData(kFALSE);
972cf6f2 1517 fFitterArray6.AddAt(fitter,GetIndex(s1,s2));
e81dc112 1518 counter6++;
b322e06a 1519 // if (GetDebugLevel()>0) cerr<<"Creating fitter6 "<<s1<<","<<s2<<" : "<<counter6<<endl;
972cf6f2 1520 return fitter;
a8a52809 1521 /*
1522 // as root changed interface at some moment I put here also the test - which should be unit test in future:
1523 TLinearFitter fitter(6,"x[0]++x[1]++x[2]++x[3]++x[4]++x[5]");
1524 for (Int_t i=0; i<10000; i++) {
1525 x[0]=i;
1526 x[1]=i*i;
1527 x[2]=i*i*i;
1528 x[3]=TMath::Power(i,1/2.);
1529 x[4]=TMath::Power(i,1/3.);
1530 x[5]=TMath::Power(i,1/4.);
1531 fitter.AddPoint(x,i*i*i);
1532 }
1533 fitter.Eval();
1534 fitter.GetParameters(vec);
1535 vec.Print();
1536 => result of the fit should = for all vector elements except of element 2; - it was the case with root v5-34-09
1537 */
972cf6f2 1538}
1539
1540
1541
1542
1543
9318a5b4 1544Bool_t AliTPCcalibAlign::GetTransformation12(Int_t s1,Int_t s2,TMatrixD &a) {
972cf6f2 1545 //
1546 // GetTransformation matrix - 12 paramaters - generael linear transformation
1547 //
9318a5b4 1548 if (!GetFitter12(s1,s2))
1549 return false;
1550 else {
1551 TVectorD p(12);
9318a5b4 1552 GetFitter12(s1,s2)->GetParameters(p);
9318a5b4 1553 a.ResizeTo(4,4);
972cf6f2 1554 a[0][0]=p[0]; a[0][1]=p[1]; a[0][2]=p[2]; a[0][3]=p[9];
1555 a[1][0]=p[3]; a[1][1]=p[4]; a[1][2]=p[5]; a[1][3]=p[10];
1556 a[2][0]=p[6]; a[2][1]=p[7]; a[2][2]=p[8]; a[2][3]=p[11];
1557 a[3][0]=0.; a[3][1]=0.; a[3][2]=0.; a[3][3]=1.;
9318a5b4 1558 return true;
1559 }
1560}
1561
1562Bool_t AliTPCcalibAlign::GetTransformation9(Int_t s1,Int_t s2,TMatrixD &a) {
972cf6f2 1563 //
1564 // GetTransformation matrix - 9 paramaters - general linear transformation
1565 // No scaling
1566 //
9318a5b4 1567 if (!GetFitter9(s1,s2))
1568 return false;
1569 else {
1570 TVectorD p(9);
1571 GetFitter9(s1,s2)->GetParameters(p);
1572 a.ResizeTo(4,4);
f8a2dcfb 1573 a[0][0]=1; a[0][1]=p[0]; a[0][2]=p[1]; a[0][3]=p[6];
1574 a[1][0]=p[2]; a[1][1]=1; a[1][2]=p[3]; a[1][3]=p[7];
1575 a[2][0]=p[4]; a[2][1]=p[5]; a[2][2]=1; a[2][3]=p[8];
972cf6f2 1576 a[3][0]=0.; a[3][1]=0.; a[3][2]=0.; a[3][3]=1.;
9318a5b4 1577 return true;
1578 }
1579}
1580
1581Bool_t AliTPCcalibAlign::GetTransformation6(Int_t s1,Int_t s2,TMatrixD &a) {
972cf6f2 1582 //
1583 // GetTransformation matrix - 6 paramaters
1584 // 3 translation
1585 // 1 rotation -x-y
1586 // 2 tilting x-z y-z
9318a5b4 1587 if (!GetFitter6(s1,s2))
1588 return false;
1589 else {
1590 TVectorD p(6);
9318a5b4 1591 GetFitter6(s1,s2)->GetParameters(p);
9318a5b4 1592 a.ResizeTo(4,4);
f8a2dcfb 1593 a[0][0]=1; a[0][1]=-p[0];a[0][2]=0; a[0][3]=p[3];
1594 a[1][0]=p[0]; a[1][1]=1; a[1][2]=0; a[1][3]=p[4];
1595 a[2][0]=p[1]; a[2][1]=p[2]; a[2][2]=1; a[2][3]=p[5];
972cf6f2 1596 a[3][0]=0.; a[3][1]=0.; a[3][2]=0.; a[3][3]=1.;
9318a5b4 1597 return true;
1598 }
1599}
972cf6f2 1600
b842d904 1601void AliTPCcalibAlign::MakeResidualHistos(){
1602 //
1603 // Make cluster residual histograms
1604 //
1605 Double_t xminTrack[9], xmaxTrack[9];
1606 Int_t binsTrack[9];
1607 TString axisName[9],axisTitle[9];
1608 //
1609 // 0 - delta of interest
1610 // 1 - global phi in sector number as float
1611 // 2 - local x
1612 // 3 - local ky
1613 // 4 - local kz
1614 //
1615 axisName[0]="delta"; axisTitle[0]="#Delta (cm)";
76c58ee2 1616 if (TMath::Abs(AliTracker::GetBz())<0.01){
1617 binsTrack[0]=60; xminTrack[0]=-1.2; xmaxTrack[0]=1.2;
1618 }else{
1619 binsTrack[0]=60; xminTrack[0]=-0.6; xmaxTrack[0]=0.6;
1620 }
b842d904 1621 //
1622 axisName[1]="sector"; axisTitle[1]="Sector Number";
0b736a46 1623 binsTrack[1]=180; xminTrack[1]=0; xmaxTrack[1]=18;
b842d904 1624 //
287fbdfa 1625 axisName[2]="R"; axisTitle[2]="r (cm)";
b842d904 1626 binsTrack[2]=53; xminTrack[2]=85.; xmaxTrack[2]=245.;
1627 //
b842d904 1628 //
5b7417d2 1629 axisName[3]="kZ"; axisTitle[3]="dz/dx";
1630 binsTrack[3]=36; xminTrack[3]=-1.8; xmaxTrack[3]=1.8;
b842d904 1631 //
034e5c8c 1632 fClusterDelta[0] = new THnF("#Delta_{Y} (cm)","#Delta_{Y} (cm)", 4, binsTrack,xminTrack, xmaxTrack);
1633 fClusterDelta[1] = new THnF("#Delta_{Z} (cm)","#Delta_{Z} (cm)", 4, binsTrack,xminTrack, xmaxTrack);
b842d904 1634 //
1635 //
1636 //
5b7417d2 1637 for (Int_t ivar=0;ivar<2;ivar++){
1638 for (Int_t ivar2=0;ivar2<4;ivar2++){
b842d904 1639 fClusterDelta[ivar]->GetAxis(ivar2)->SetName(axisName[ivar2].Data());
1640 fClusterDelta[ivar]->GetAxis(ivar2)->SetTitle(axisName[ivar2].Data());
1641 }
1642 }
1643
1644}
1645
60721370 1646
1647void AliTPCcalibAlign::MakeResidualHistosTracklet(){
1648 //
1649 // Make tracklet residual histograms
1650 //
1651 Double_t xminTrack[9], xmaxTrack[9];
1652 Int_t binsTrack[9];
1653 TString axisName[9],axisTitle[9];
1654 //
1655 // 0 - delta of interest
1656 // 1 - global phi in sector number as float
1657 // 2 - local x
1658 // 3 - local ky
1659 // 4 - local kz
1660 // 5 - sector 1
76c58ee2 1661 // 6 - sector 0
1662 // 7 - z position 0
60721370 1663
1664 axisName[0]="delta"; axisTitle[0]="#Delta (cm)";
034e5c8c 1665 binsTrack[0]=60; xminTrack[0]=-0.5; xmaxTrack[0]=0.5;
60721370 1666 //
1667 axisName[1]="phi"; axisTitle[1]="#phi";
034e5c8c 1668 binsTrack[1]=90; xminTrack[1]=-TMath::Pi(); xmaxTrack[1]=TMath::Pi();
60721370 1669 //
1670 axisName[2]="localX"; axisTitle[2]="x (cm)";
1671 binsTrack[2]=10; xminTrack[2]=120.; xmaxTrack[2]=200.;
1672 //
1673 axisName[3]="kY"; axisTitle[3]="dy/dx";
1674 binsTrack[3]=10; xminTrack[3]=-0.5; xmaxTrack[3]=0.5;
1675 //
1676 axisName[4]="kZ"; axisTitle[4]="dz/dx";
034e5c8c 1677 binsTrack[4]=11; xminTrack[4]=-1.1; xmaxTrack[4]=1.1;
60721370 1678 //
1679 axisName[5]="is1"; axisTitle[5]="is1";
1680 binsTrack[5]=72; xminTrack[5]=0; xmaxTrack[5]=72;
1681 //
1682 axisName[6]="is0"; axisTitle[6]="is0";
1683 binsTrack[6]=72; xminTrack[6]=0; xmaxTrack[6]=72;
76c58ee2 1684 //
1685 axisName[7]="z"; axisTitle[7]="z(cm)";
1686 binsTrack[7]=12; xminTrack[7]=-240; xmaxTrack[7]=240;
1687 //
1688 axisName[8]="IsPrimary"; axisTitle[8]="Is Primary";
1689 binsTrack[8]=2; xminTrack[8]=-0.1; xmaxTrack[8]=1.1;
60721370 1690
1691 //
76c58ee2 1692 xminTrack[0]=-0.25; xmaxTrack[0]=0.25;
1693 fTrackletDelta[0] = new THnSparseF("#Delta_{Y} (cm)","#Delta_{Y} (cm)", 9, binsTrack,xminTrack, xmaxTrack);
60721370 1694 xminTrack[0]=-0.5; xmaxTrack[0]=0.5;
76c58ee2 1695 fTrackletDelta[1] = new THnSparseF("#Delta_{Z} (cm)","#Delta_{Z} (cm)", 9, binsTrack,xminTrack, xmaxTrack);
60721370 1696 xminTrack[0]=-0.005; xmaxTrack[0]=0.005;
76c58ee2 1697 fTrackletDelta[2] = new THnSparseF("#Delta_{kY}","#Delta_{kY}", 9, binsTrack,xminTrack, xmaxTrack);
1698 xminTrack[0]=-0.008; xmaxTrack[0]=0.008;
1699 fTrackletDelta[3] = new THnSparseF("#Delta_{kZ}","#Delta_{kZ}", 9, binsTrack,xminTrack, xmaxTrack);
60721370 1700 //
1701 //
1702 //
1703 for (Int_t ivar=0;ivar<4;ivar++){
76c58ee2 1704 for (Int_t ivar2=0;ivar2<9;ivar2++){
60721370 1705 fTrackletDelta[ivar]->GetAxis(ivar2)->SetName(axisName[ivar2].Data());
1706 fTrackletDelta[ivar]->GetAxis(ivar2)->SetTitle(axisName[ivar2].Data());
1707 }
1708 }
1709
1710}
1711
1712
1713
774a5ee9 1714void AliTPCcalibAlign::FillHisto(const Double_t *t1,
1715 const Double_t *t2,
1716 Int_t s1,Int_t s2) {
972cf6f2 1717 //
1718 // Fill residual histograms
4de48bc7 1719 // Track2-Track1
8b3c60d8 1720 // Innner-Outer
1721 // Left right - x-y
1722 // A-C side
774a5ee9 1723 if (1) {
1724 Double_t dy = t2[1]-t1[1];
1725 Double_t dphi = t2[2]-t1[2];
1726 Double_t dz = t2[3]-t1[3];
1727 Double_t dtheta = t2[4]-t1[4];
1728 Double_t zmean = (t2[3]+t1[3])*0.5;
bb6bc8f6 1729 //
774a5ee9 1730 GetHisto(kPhi,s1,s2,kTRUE)->Fill(dphi);
1731 GetHisto(kTheta,s1,s2,kTRUE)->Fill(dtheta);
1732 GetHisto(kY,s1,s2,kTRUE)->Fill(dy);
1733 GetHisto(kZ,s1,s2,kTRUE)->Fill(dz);
bb6bc8f6 1734 //
774a5ee9 1735 GetHisto(kPhiZ,s1,s2,kTRUE)->Fill(zmean,dphi);
1736 GetHisto(kThetaZ,s1,s2,kTRUE)->Fill(zmean,dtheta);
1737 GetHisto(kYz,s1,s2,kTRUE)->Fill(zmean,dy);
1738 GetHisto(kZz,s1,s2,kTRUE)->Fill(zmean,dz);
1739 //
1740 GetHisto(kYPhi,s1,s2,kTRUE)->Fill(t2[2],dy);
1741 GetHisto(kZTheta,s1,s2,kTRUE)->Fill(t2[4],dz);
1742 }
972cf6f2 1743}
1744
1745
5b7417d2 1746void AliTPCcalibAlign::FillHisto(AliExternalTrackParam *tp1,
1747 AliExternalTrackParam *tp2,
60721370 1748 Int_t s1,Int_t s2) {
1749 //
1750 // Fill residual histograms
1751 // Track2-Track1
76c58ee2 1752 if (s2<s1) return;//
5b7417d2 1753 const Double_t kEpsilon=0.001;
ad746939 1754 Double_t x[9]={0,0,0,0,0,0,0,0,0};
60721370 1755 AliExternalTrackParam p1(*tp1);
1756 AliExternalTrackParam p2(*tp2);
1757 if (s1%18==s2%18) {
1758 // inner outer - match at the IROC-OROC boundary
5b7417d2 1759 if (!p1.PropagateTo(fXIO, AliTrackerBase::GetBz())) return;
60721370 1760 }
5b7417d2 1761 if (!p2.Rotate(p1.GetAlpha())) return;
1762 if (!p2.PropagateTo(p1.GetX(),AliTrackerBase::GetBz())) return;
1763 if (TMath::Abs(p1.GetX()-p2.GetX())>kEpsilon) return;
60721370 1764 Double_t xyz[3];
1765 p1.GetXYZ(xyz);
1766 x[1]=TMath::ATan2(xyz[1],xyz[0]);
1767 x[2]=p1.GetX();
1768 x[3]=0.5*(p1.GetSnp()+p2.GetSnp()); // mean snp
1769 x[4]=0.5*(p1.GetTgl()+p2.GetTgl()); // mean tgl
1770 x[5]=s2;
1771 x[6]=s1;
76c58ee2 1772 x[7]=0.5*(p1.GetZ()+p2.GetZ());
1773 // is primary ?
1774 Int_t isPrimary = (TMath::Abs(p1.GetTgl()-p1.GetZ()/p1.GetX())<0.1) ? 1:0;
1775 x[8]= isPrimary;
1776 //
60721370 1777 x[0]=p2.GetY()-p1.GetY();
1778 fTrackletDelta[0]->Fill(x);
1779 x[0]=p2.GetZ()-p1.GetZ();
1780 fTrackletDelta[1]->Fill(x);
1781 x[0]=p2.GetSnp()-p1.GetSnp();
1782 fTrackletDelta[2]->Fill(x);
1783 x[0]=p2.GetTgl()-p1.GetTgl();
1784 fTrackletDelta[3]->Fill(x);
5b7417d2 1785 TTreeSRedirector *cstream = GetDebugStreamer();
1786 if (cstream){
1787 (*cstream)<<"trackletMatch"<<
1788 "tp1.="<<tp1<< // input tracklet
1789 "tp2.="<<tp2<<
1790 "p1.="<<&p1<< // tracklet in the ref frame
1791 "p2.="<<&p2<<
1792 "s1="<<s1<<
1793 "s2="<<s2<<
1794 "\n";
1795 }
1796
60721370 1797}
1798
1799
972cf6f2 1800
1801TH1 * AliTPCcalibAlign::GetHisto(HistoType type, Int_t s1, Int_t s2, Bool_t force)
1802{
1803 //
1804 // return specified residual histogram - it is only QA
1805 // if force specified the histogram and given histogram is not existing
1806 // new histogram is created
1807 //
1808 if (GetIndex(s1,s2)>=72*72) return 0;
1809 TObjArray *histoArray=0;
1810 switch (type) {
1811 case kY:
1812 histoArray = &fDyHistArray; break;
1813 case kZ:
1814 histoArray = &fDzHistArray; break;
1815 case kPhi:
1816 histoArray = &fDphiHistArray; break;
1817 case kTheta:
1818 histoArray = &fDthetaHistArray; break;
bb6bc8f6 1819 case kYPhi:
1820 histoArray = &fDyPhiHistArray; break;
1821 case kZTheta:
1822 histoArray = &fDzThetaHistArray; break;
1823 case kYz:
1824 histoArray = &fDyZHistArray; break;
1825 case kZz:
1826 histoArray = &fDzZHistArray; break;
1827 case kPhiZ:
1828 histoArray = &fDphiZHistArray; break;
1829 case kThetaZ:
1830 histoArray = &fDthetaZHistArray; break;
972cf6f2 1831 }
1832 TH1 * histo= (TH1*)histoArray->At(GetIndex(s1,s2));
1833 if (histo) return histo;
1834 if (force==kFALSE) return 0;
1835 //
1836 stringstream name;
1837 stringstream title;
1838 switch (type) {
1839 case kY:
1840 name<<"hist_y_"<<s1<<"_"<<s2;
1841 title<<"Y Missalignment for sectors "<<s1<<" and "<<s2;
774a5ee9 1842 histo =new TH1D(name.str().c_str(),title.str().c_str(),100,-0.5,0.5); // +/- 5 mm
972cf6f2 1843 break;
1844 case kZ:
1845 name<<"hist_z_"<<s1<<"_"<<s2;
1846 title<<"Z Missalignment for sectors "<<s1<<" and "<<s2;
774a5ee9 1847 histo = new TH1D(name.str().c_str(),title.str().c_str(),100,-0.3,0.3); // +/- 3 mm
972cf6f2 1848 break;
1849 case kPhi:
1850 name<<"hist_phi_"<<s1<<"_"<<s2;
1851 title<<"Phi Missalignment for sectors "<<s1<<" and "<<s2;
774a5ee9 1852 histo =new TH1D(name.str().c_str(),title.str().c_str(),100,-0.01,0.01); // +/- 10 mrad
972cf6f2 1853 break;
1854 case kTheta:
1855 name<<"hist_theta_"<<s1<<"_"<<s2;
1856 title<<"Theta Missalignment for sectors "<<s1<<" and "<<s2;
774a5ee9 1857 histo =new TH1D(name.str().c_str(),title.str().c_str(),100,-0.01,0.01); // +/- 10 mrad
972cf6f2 1858 break;
bb6bc8f6 1859 //
1860 //
1861 case kYPhi:
1862 name<<"hist_yphi_"<<s1<<"_"<<s2;
1863 title<<"Y Missalignment for sectors Phi"<<s1<<" and "<<s2;
774a5ee9 1864 histo =new TH2F(name.str().c_str(),title.str().c_str(),20,-1,1,100,-0.5,0.5); // +/- 5 mm
bb6bc8f6 1865 break;
1866 case kZTheta:
1867 name<<"hist_ztheta_"<<s1<<"_"<<s2;
1868 title<<"Z Missalignment for sectors Theta"<<s1<<" and "<<s2;
774a5ee9 1869 histo = new TH2F(name.str().c_str(),title.str().c_str(),20,-1,1,100,-0.3,0.3); // +/- 3 mm
bb6bc8f6 1870 break;
1871 //
1872 //
1873 //
1874 case kYz:
1875 name<<"hist_yz_"<<s1<<"_"<<s2;
1876 title<<"Y Missalignment for sectors Z"<<s1<<" and "<<s2;
774a5ee9 1877 histo =new TH2F(name.str().c_str(),title.str().c_str(),20,-250,250,100,-0.5,0.5); // +/- 5 mm
bb6bc8f6 1878 break;
1879 case kZz:
1880 name<<"hist_zz_"<<s1<<"_"<<s2;
1881 title<<"Z Missalignment for sectors Z"<<s1<<" and "<<s2;
774a5ee9 1882 histo = new TH2F(name.str().c_str(),title.str().c_str(),20,-250,250,100,-0.3,0.3); // +/- 3 mm
bb6bc8f6 1883 break;
1884 case kPhiZ:
1885 name<<"hist_phiz_"<<s1<<"_"<<s2;
1886 title<<"Phi Missalignment for sectors Z"<<s1<<" and "<<s2;
774a5ee9 1887 histo =new TH2F(name.str().c_str(),title.str().c_str(),20,-250,250,100,-0.01,0.01); // +/- 10 mrad
bb6bc8f6 1888 break;
1889 case kThetaZ:
1890 name<<"hist_thetaz_"<<s1<<"_"<<s2;
1891 title<<"Theta Missalignment for sectors Z"<<s1<<" and "<<s2;
774a5ee9 1892 histo =new TH2F(name.str().c_str(),title.str().c_str(),20,-250,250,100,-0.01,0.01); // +/- 10 mrad
bb6bc8f6 1893 break;
1894
1895
972cf6f2 1896 }
1897 histo->SetDirectory(0);
1898 histoArray->AddAt(histo,GetIndex(s1,s2));
1899 return histo;
1900}
8b3c60d8 1901
1902TGraphErrors * AliTPCcalibAlign::MakeGraph(Int_t sec0, Int_t sec1, Int_t dsec,
1903 Int_t i0, Int_t i1, FitType type)
1904{
1905 //
1906 //
1907 //
1908 TMatrixD mat;
6a77c9f1 1909 //TObjArray *fitArray=0;
8b3c60d8 1910 Double_t xsec[1000];
1911 Double_t ysec[1000];
1912 Int_t npoints=0;
1913 for (Int_t isec = sec0; isec<=sec1; isec++){
1914 Int_t isec2 = (isec+dsec)%72;
1915 switch (type) {
1916 case k6:
1917 GetTransformation6(isec,isec2,mat);break;
1918 case k9:
1919 GetTransformation9(isec,isec2,mat);break;
1920 case k12:
1921 GetTransformation12(isec,isec2,mat);break;
1922 }
1923 xsec[npoints]=isec;
1924 ysec[npoints]=mat(i0,i1);
1925 ++npoints;
1926 }
1927 TGraphErrors *gr = new TGraphErrors(npoints,xsec,ysec,0,0);
1928 Char_t name[1000];
ad746939 1929 snprintf(name,100,"Mat[%d,%d] Type=%d",i0,i1,type);
8b3c60d8 1930 gr->SetName(name);
1931 return gr;
1932}
1933
774a5ee9 1934void AliTPCcalibAlign::MakeTree(const char *fname, Int_t minPoints){
8b3c60d8 1935 //
1936 // make tree with alignment cosntant -
1937 // For QA visualization
1938 //
ae0ac7be 1939 /*
774a5ee9 1940 TFile fcalib("CalibObjects.root");
1941 TObjArray * array = (TObjArray*)fcalib.Get("TPCCalib");
1942 AliTPCcalibAlign * align = ( AliTPCcalibAlign *)array->FindObject("alignTPC");
1943 align->EvalFitters();
1944 align->MakeTree("alignTree.root");
1945 TFile falignTree("alignTree.root");
1946 TTree * treeAlign = (TTree*)falignTree.Get("Align");
ae0ac7be 1947 */
8b3c60d8 1948 TTreeSRedirector cstream(fname);
1949 for (Int_t s1=0;s1<72;++s1)
1950 for (Int_t s2=0;s2<72;++s2){
8b3c60d8 1951 TMatrixD m6;
1d82fc56 1952 TMatrixD m6FX;
8b3c60d8 1953 TMatrixD m9;
1954 TMatrixD m12;
774a5ee9 1955 TVectorD param6Diff; // align parameters diff
1956 TVectorD param6s1(6); // align parameters sector1
1957 TVectorD param6s2(6); // align parameters sector2
1958
1959 //
1960 //
5647625c 1961 if (fSectorParamA){
1962 TMatrixD * kpar = fSectorParamA;
1963 TMatrixD * kcov = fSectorCovarA;
1964 if (s1%36>=18){
1965 kpar = fSectorParamC;
1966 kcov = fSectorCovarC;
1967 }
1968 for (Int_t ipar=0;ipar<6;ipar++){
1969 Int_t isec1 = s1%18;
1970 Int_t isec2 = s2%18;
1971 if (s1>35) isec1+=18;
1972 if (s2>35) isec2+=18;
1973 param6s1(ipar)=(*kpar)(6*isec1+ipar,0);
1974 param6s2(ipar)=(*kpar)(6*isec2+ipar,0);
1975 }
774a5ee9 1976 }
5647625c 1977
8b3c60d8 1978 Double_t dy=0, dz=0, dphi=0,dtheta=0;
1979 Double_t sy=0, sz=0, sphi=0,stheta=0;
1980 Double_t ny=0, nz=0, nphi=0,ntheta=0;
6f387311 1981 Double_t chi2v12=0, chi2v9=0, chi2v6=0;
0b736a46 1982 // Int_t npoints=0;
1983 // TLinearFitter * fitter = 0;
774a5ee9 1984 if (fPoints[GetIndex(s1,s2)]>minPoints){
6f387311 1985 //
1986 //
1987 //
0b736a46 1988// fitter = GetFitter12(s1,s2);
1989// npoints = fitter->GetNpoints();
1990// chi2v12 = TMath::Sqrt(fitter->GetChisquare()/npoints);
774a5ee9 1991
0b736a46 1992// //
1993// fitter = GetFitter9(s1,s2);
1994// npoints = fitter->GetNpoints();
1995// chi2v9 = TMath::Sqrt(fitter->GetChisquare()/npoints);
1996// //
1997// fitter = GetFitter6(s1,s2);
1998// npoints = fitter->GetNpoints();
1999// chi2v6 = TMath::Sqrt(fitter->GetChisquare()/npoints);
2000// fitter->GetParameters(param6Diff);
2001// //
2002// GetTransformation6(s1,s2,m6);
2003// GetTransformation9(s1,s2,m9);
2004// GetTransformation12(s1,s2,m12);
2005// //
2006// fitter = GetFitter6(s1,s2);
2007// //fitter->FixParameter(3,0);
2008// //fitter->Eval();
2009// GetTransformation6(s1,s2,m6FX);
1d82fc56 2010 //
6f387311 2011 TH1 * his=0;
2012 his = GetHisto(kY,s1,s2);
2013 if (his) { dy = his->GetMean(); sy = his->GetRMS(); ny = his->GetEntries();}
2014 his = GetHisto(kZ,s1,s2);
2015 if (his) { dz = his->GetMean(); sz = his->GetRMS(); nz = his->GetEntries();}
2016 his = GetHisto(kPhi,s1,s2);
2017 if (his) { dphi = his->GetMean(); sphi = his->GetRMS(); nphi = his->GetEntries();}
2018 his = GetHisto(kTheta,s1,s2);
2019 if (his) { dtheta = his->GetMean(); stheta = his->GetRMS(); ntheta = his->GetEntries();}
2020 //
1d82fc56 2021
6f387311 2022 }
0b736a46 2023 AliMagF* magF= (AliMagF*)TGeoGlobalMagField::Instance()->GetField();
2024 if (!magF) AliError("Magneticd field - not initialized");
2025 Double_t bz = magF->SolenoidField()/10.; //field in T
6f387311 2026
8b3c60d8 2027 cstream<<"Align"<<
0b736a46 2028 "run="<<fRun<< // run
2029 "bz="<<bz<<
8b3c60d8 2030 "s1="<<s1<< // reference sector
2031 "s2="<<s2<< // sector to align
1d82fc56 2032 "m6FX.="<<&m6FX<< // tranformation matrix
8b3c60d8 2033 "m6.="<<&m6<< // tranformation matrix
2034 "m9.="<<&m9<< //
2035 "m12.="<<&m12<<
6f387311 2036 "chi2v12="<<chi2v12<<
2037 "chi2v9="<<chi2v9<<
2038 "chi2v6="<<chi2v6<<
774a5ee9 2039 //
2040 "p6.="<<&param6Diff<<
2041 "p6s1.="<<&param6s1<<
2042 "p6s2.="<<&param6s2<<
967eae0d 2043 // histograms mean RMS and entries
2044 "dy="<<dy<<
8b3c60d8 2045 "sy="<<sy<<
2046 "ny="<<ny<<
2047 "dz="<<dz<<
2048 "sz="<<sz<<
2049 "nz="<<nz<<
2050 "dphi="<<dphi<<
2051 "sphi="<<sphi<<
2052 "nphi="<<nphi<<
2053 "dtheta="<<dtheta<<
2054 "stheta="<<stheta<<
2055 "ntheta="<<ntheta<<
2056 "\n";
2057 }
2058
2059}
ae0ac7be 2060
2061
2062//_____________________________________________________________________
3326b323 2063Long64_t AliTPCcalibAlign::Merge(TCollection* const list) {
ae0ac7be 2064 //
2065 // merge function
2066 //
2067 if (GetDebugLevel()>0) Info("AliTPCcalibAlign","Merge");
2068 if (!list)
2069 return 0;
2070 if (list->IsEmpty())
2071 return 1;
2072
2073 TIterator* iter = list->MakeIterator();
2074 TObject* obj = 0;
2075 iter->Reset();
2076 Int_t count=0;
6f387311 2077 //
2078 TString str1(GetName());
ae0ac7be 2079 while((obj = iter->Next()) != 0)
2080 {
2081 AliTPCcalibAlign* entry = dynamic_cast<AliTPCcalibAlign*>(obj);
2082 if (entry == 0) continue;
6f387311 2083 if (str1.CompareTo(entry->GetName())!=0) continue;
ae0ac7be 2084 Add(entry);
2085 count++;
2086 }
2087 return count;
2088}
2089
2090
2091void AliTPCcalibAlign::Add(AliTPCcalibAlign * align){
2092 //
bb6bc8f6 2093 // Add entry - used for merging of compoents
ae0ac7be 2094 //
ae0ac7be 2095 for (Int_t i=0; i<72;i++){
2096 for (Int_t j=0; j<72;j++){
774a5ee9 2097 if (align->fPoints[GetIndex(i,j)]<1) continue;
ae0ac7be 2098 fPoints[GetIndex(i,j)]+=align->fPoints[GetIndex(i,j)];
ae0ac7be 2099 //
ae0ac7be 2100 //
ae0ac7be 2101 //
bb6bc8f6 2102 for (Int_t itype=0; itype<10; itype++){
2103 TH1 * his0=0, *his1=0;
2104 his0 = GetHisto((HistoType)itype,i,j);
2105 his1 = align->GetHisto((HistoType)itype,i,j);
2106 if (his1){
2107 if (his0) his0->Add(his1);
2108 else {
774a5ee9 2109 his0 = GetHisto((HistoType)itype,i,j,kTRUE);
bb6bc8f6 2110 his0->Add(his1);
2111 }
2112 }
6f387311 2113 }
ae0ac7be 2114 }
2115 }
2116 TLinearFitter *f0=0;
2117 TLinearFitter *f1=0;
2118 for (Int_t i=0; i<72;i++){
6f387311 2119 for (Int_t j=0; j<72;j++){
774a5ee9 2120 if (align->fPoints[GetIndex(i,j)]<1) continue;
6f387311 2121 //
ae0ac7be 2122 //
2123 // fitter12
2124 f0 = GetFitter12(i,j);
bb6bc8f6 2125 f1 = align->GetFitter12(i,j);
774a5ee9 2126 if (f1){
2127 if (f0) f0->Add(f1);
ae0ac7be 2128 else {
6f387311 2129 fFitterArray12.AddAt(f1->Clone(),GetIndex(i,j));
ae0ac7be 2130 }
2131 }
2132 //
2133 // fitter9
2134 f0 = GetFitter9(i,j);
bb6bc8f6 2135 f1 = align->GetFitter9(i,j);
774a5ee9 2136 if (f1){
2137 if (f0) f0->Add(f1);
6f387311 2138 else {
2139 fFitterArray9.AddAt(f1->Clone(),GetIndex(i,j));
ae0ac7be 2140 }
2141 }
2142 f0 = GetFitter6(i,j);
bb6bc8f6 2143 f1 = align->GetFitter6(i,j);
774a5ee9 2144 if (f1){
2145 if (f0) f0->Add(f1);
ae0ac7be 2146 else {
6f387311 2147 fFitterArray6.AddAt(f1->Clone(),GetIndex(i,j));
ae0ac7be 2148 }
2149 }
2150 }
2151 }
774a5ee9 2152 //
2153 // Add Kalman filter
2154 //
2155 for (Int_t i=0;i<36;i++){
2156 TMatrixD *par0 = (TMatrixD*)fArraySectorIntParam.At(i);
2157 if (!par0){
2158 MakeSectorKalman();
2159 par0 = (TMatrixD*)fArraySectorIntParam.At(i);
2160 }
2161 TMatrixD *par1 = (TMatrixD*)align->fArraySectorIntParam.At(i);
2162 if (!par1) continue;
2163 //
2164 TMatrixD *cov0 = (TMatrixD*)fArraySectorIntCovar.At(i);
2165 TMatrixD *cov1 = (TMatrixD*)align->fArraySectorIntCovar.At(i);
2166 UpdateSectorKalman(*par0,*cov0,*par1,*cov1);
2167 }
2168 if (!fSectorParamA){
2169 MakeKalman();
2170 }
2171 if (align->fSectorParamA){
2172 UpdateKalman(*fSectorParamA,*fSectorCovarA,*align->fSectorParamA,*align->fSectorCovarA);
2173 UpdateKalman(*fSectorParamC,*fSectorCovarC,*align->fSectorParamC,*align->fSectorCovarC);
2174 }
5b7417d2 2175 if (!fClusterDelta[0]) MakeResidualHistos();
2176
2177 for (Int_t i=0; i<2; i++){
76c58ee2 2178 if (align->fClusterDelta[i]){
2179 fClusterDelta[i]->Add(align->fClusterDelta[i]);
76c58ee2 2180 }
b842d904 2181 }
3828da48 2182
76c58ee2 2183
60721370 2184 for (Int_t i=0; i<4; i++){
2185 if (!fTrackletDelta[i] && align->fTrackletDelta[i]) {
2186 fTrackletDelta[i]= (THnSparse*)(align->fTrackletDelta[i]->Clone());
2187 continue;
2188 }
76c58ee2 2189 if (align->fTrackletDelta[i]) {
3828da48 2190 if (fTrackletDelta[i]->GetEntries()<fgkMergeEntriesCut){
2191 fTrackletDelta[i]->Add(align->fTrackletDelta[i]);
2192 }
76c58ee2 2193 }
60721370 2194 }
2195
ae0ac7be 2196}
108953e9 2197
6f387311 2198Double_t AliTPCcalibAlign::Correct(Int_t type, Int_t value, Int_t s1, Int_t s2, Double_t x1, Double_t y1, Double_t z1, Double_t dydx1,Double_t dzdx1){
2199 //
2200 // GetTransformed value
2201 //
2202 //
2203 // x2 = a00*x1 + a01*y1 + a02*z1 + a03
2204 // y2 = a10*x1 + a11*y1 + a12*z1 + a13
2205 // z2 = a20*x1 + a21*y1 + a22*z1 + a23
2206 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
2207 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
2208
2209
2210 const TMatrixD * mat = GetTransformation(s1,s2,type);
2211 if (!mat) {
2212 if (value==0) return x1;
2213 if (value==1) return y1;
2214 if (value==2) return z1;
2215 if (value==3) return dydx1;
2216 if (value==4) return dzdx1;
2217 //
2218 if (value==5) return dydx1;
2219 if (value==6) return dzdx1;
2220 return 0;
2221 }
2222 Double_t valT=0;
108953e9 2223
6f387311 2224 if (value==0){
2225 valT = (*mat)(0,0)*x1+(*mat)(0,1)*y1+(*mat)(0,2)*z1+(*mat)(0,3);
2226 }
2227
2228 if (value==1){
2229 valT = (*mat)(1,0)*x1+(*mat)(1,1)*y1+(*mat)(1,2)*z1+(*mat)(1,3);
2230 }
2231 if (value==2){
2232 valT = (*mat)(2,0)*x1+(*mat)(2,1)*y1+(*mat)(2,2)*z1+(*mat)(2,3);
2233 }
2234 if (value==3){
2235 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
2236 valT = (*mat)(1,0) +(*mat)(1,1)*dydx1 +(*mat)(1,2)*dzdx1;
2237 valT/= ((*mat)(0,0) +(*mat)(0,1)*dydx1 +(*mat)(0,2)*dzdx1);
2238 }
2239
2240 if (value==4){
2241 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
2242 valT = (*mat)(2,0) +(*mat)(2,1)*dydx1 +(*mat)(2,2)*dzdx1;
2243 valT/= ((*mat)(0,0) +(*mat)(0,1)*dydx1 +(*mat)(0,2)*dzdx1);
2244 }
2245 //
2246 if (value==5){
2247 // onlys shift in angle
2248 // dydx2 = (a10 + a11*dydx1 + a12*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
2249 valT = (*mat)(1,0) +(*mat)(1,1)*dydx1;
2250 }
2251
2252 if (value==6){
2253 // only shift in angle
2254 // dzdx2 = (a20 + a21*dydx1 + a22*dzdx1)/(a00 + a01*dydx1 + a02*dzdx1)
2255 valT = (*mat)(2,0) +(*mat)(2,1)*dydx1;
2256 }
2257 //
2258 return valT;
2259}
108953e9 2260
2261
1d82fc56 2262void AliTPCcalibAlign::Constrain1Pt(AliExternalTrackParam &track1, const AliExternalTrackParam &track2, Bool_t noField){
2263 //
2264 // Update track parameters t1
2265 //
2266 TMatrixD vecXk(5,1); // X vector
2267 TMatrixD covXk(5,5); // X covariance
2268 TMatrixD matHk(1,5); // vector to mesurement
2269 TMatrixD measR(1,1); // measurement error
2270 //TMatrixD matQk(5,5); // prediction noise vector
2271 TMatrixD vecZk(1,1); // measurement
2272 //
2273 TMatrixD vecYk(1,1); // Innovation or measurement residual
2274 TMatrixD matHkT(5,1);
2275 TMatrixD matSk(1,1); // Innovation (or residual) covariance
2276 TMatrixD matKk(5,1); // Optimal Kalman gain
2277 TMatrixD mat1(5,5); // update covariance matrix
2278 TMatrixD covXk2(5,5); //
2279 TMatrixD covOut(5,5);
2280 //
2281 Double_t *param1=(Double_t*) track1.GetParameter();
2282 Double_t *covar1=(Double_t*) track1.GetCovariance();
2283
2284 //
2285 // copy data to the matrix
2286 for (Int_t ipar=0; ipar<5; ipar++){
2287 vecXk(ipar,0) = param1[ipar];
2288 for (Int_t jpar=0; jpar<5; jpar++){
2289 covXk(ipar,jpar) = covar1[track1.GetIndex(ipar, jpar)];
2290 }
2291 }
2292 //
2293 //
2294 //
2295 vecZk(0,0) = track2.GetParameter()[4]; // 1/pt measurement from track 2
2296 measR(0,0) = track2.GetCovariance()[14]; // 1/pt measurement error
2297 if (noField) {
2298 measR(0,0)*=0.000000001;
2299 vecZk(0,0)=0.;
2300 }
2301 //
2302 matHk(0,0)=0; matHk(0,1)= 0; matHk(0,2)= 0;
2303 matHk(0,3)= 0; matHk(0,4)= 1; // vector to measurement
2304 //
2305 //
2306 //
2307 vecYk = vecZk-matHk*vecXk; // Innovation or measurement residual
2308 matHkT=matHk.T(); matHk.T();
2309 matSk = (matHk*(covXk*matHkT))+measR; // Innovation (or residual) covariance
2310 matSk.Invert();
2311 matKk = (covXk*matHkT)*matSk; // Optimal Kalman gain
2312 vecXk += matKk*vecYk; // updated vector
2313 mat1(0,0)=1; mat1(1,1)=1; mat1(2,2)=1; mat1(3,3)=1; mat1(4,4)=1;
2314 covXk2 = (mat1-(matKk*matHk));
2315 covOut = covXk2*covXk;
2316 //
2317 //
2318 //
2319 // copy from matrix to parameters
2320 if (0) {
2321 covOut.Print();
2322 vecXk.Print();
2323 covXk.Print();
2324 track1.Print();
2325 track2.Print();
2326 }
2327
2328 for (Int_t ipar=0; ipar<5; ipar++){
2329 param1[ipar]= vecXk(ipar,0) ;
2330 for (Int_t jpar=0; jpar<5; jpar++){
2331 covar1[track1.GetIndex(ipar, jpar)]=covOut(ipar,jpar);
2332 }
2333 }
2334
2335}
2336
2337void AliTPCcalibAlign::GlobalAlign6(Int_t minPoints, Float_t sysError, Int_t niter){
2338 //
2339 // Global Align -combine the partial alignment of pair of sectors
2340 // minPoints - minimal number of points - don't use sector alignment wit smaller number
2341 // sysError - error added to the alignemnt error
2342 //
2343 AliTPCcalibAlign * align = this;
2344 TMatrixD * arrayAlign[72];
2345 TMatrixD * arrayAlignDiff[72];
2346 //
2347 for (Int_t i=0;i<72; i++) {
2348 TMatrixD * mat = new TMatrixD(4,4);
2349 mat->UnitMatrix();
2350 arrayAlign[i]=mat;
2351 arrayAlignDiff[i]=(TMatrixD*)(mat->Clone());
2352 }
2353
2354 TTreeSRedirector *cstream = new TTreeSRedirector("galign6.root");
2355 for (Int_t iter=0; iter<niter;iter++){
2356 printf("Iter=\t%d\n",iter);
2357 for (Int_t is0=0;is0<72; is0++) {
2358 //
2359 //TMatrixD *mati0 = arrayAlign[is0];
2360 TMatrixD matDiff(4,4);
2361 Double_t sumw=0;
2362 for (Int_t is1=0;is1<72; is1++) {
2363 Bool_t invers=kFALSE;
2364 Int_t npoints=0;
2365 TMatrixD covar;
2366 TVectorD errors;
2367 const TMatrixD *mat = align->GetTransformation(is0,is1,0);
2368 if (mat){
2369 npoints = align->GetFitter6(is0,is1)->GetNpoints();
2370 if (npoints>minPoints){
2371 align->GetFitter6(is0,is1)->GetCovarianceMatrix(covar);
2372 align->GetFitter6(is0,is1)->GetErrors(errors);
2373 }
2374 }
2375 else{
2376 invers=kTRUE;
2377 mat = align->GetTransformation(is1,is0,0);
2378 if (mat) {
2379 npoints = align->GetFitter6(is1,is0)->GetNpoints();
2380 if (npoints>minPoints){
2381 align->GetFitter6(is1,is0)->GetCovarianceMatrix(covar);
2382 align->GetFitter6(is1,is0)->GetErrors(errors);
2383 }
2384 }
2385 }
2386 if (!mat) continue;
2387 if (npoints<minPoints) continue;
2388 //
2389 Double_t weight=1;
2390 if (is1/36>is0/36) weight*=2./3.; //IROC-OROC
2391 if (is1/36<is0/36) weight*=1./3.; //OROC-IROC
2392 if (is1/36==is0/36) weight*=1/3.; //OROC-OROC
2393 if (is1%36!=is0%36) weight*=1/2.; //Not up-down
774a5ee9 2394 weight/=(errors[4]*errors[4]+sysError*sysError); // wieghting with error in Y
1d82fc56 2395 //
2396 //
2397 TMatrixD matT = *mat;
2398 if (invers) matT.Invert();
2399 TMatrixD diffMat= (*(arrayAlign[is1]))*matT;
2400 diffMat-=(*arrayAlign[is0]);
2401 matDiff+=weight*diffMat;
2402 sumw+=weight;
2403
2404 (*cstream)<<"LAlign"<<
2405 "iter="<<iter<<
2406 "s0="<<is0<<
2407 "s1="<<is1<<
2408 "npoints="<<npoints<<
2409 "m60.="<<arrayAlign[is0]<<
2410 "m61.="<<arrayAlign[is1]<<
2411 "m01.="<<&matT<<
2412 "diff.="<<&diffMat<<
2413 "cov.="<<&covar<<
2414 "err.="<<&errors<<
2415 "\n";
2416 }
2417 if (sumw>0){
2418 matDiff*=1/sumw;
2419 matDiff(0,0)=0;
2420 matDiff(1,1)=0;
2421 matDiff(1,1)=0;
2422 matDiff(1,1)=0;
2423 (*arrayAlignDiff[is0]) = matDiff;
2424 }
2425 }
2426 for (Int_t is0=0;is0<72; is0++) {
2427 if (is0<36) (*arrayAlign[is0]) += 0.4*(*arrayAlignDiff[is0]);
2428 if (is0>=36) (*arrayAlign[is0]) += 0.2*(*arrayAlignDiff[is0]);
2429 //
2430 (*cstream)<<"GAlign"<<
2431 "iter="<<iter<<
2432 "s0="<<is0<<
2433 "m6.="<<arrayAlign[is0]<<
2434 "\n";
2435 }
2436 }
774a5ee9 2437
1d82fc56 2438 delete cstream;
2439 for (Int_t isec=0;isec<72;isec++){
2440 fCombinedMatrixArray6.AddAt(arrayAlign[isec],isec);
2441 delete arrayAlignDiff[isec];
2442 }
2443}
2444
108953e9 2445
774a5ee9 2446 Int_t AliTPCcalibAlign::RefitLinear(const AliTPCseed * track, Int_t isec, Double_t *fitParam, Int_t refSector, TMatrixD &tparam, TMatrixD&tcovar, Double_t xRef, Bool_t both){
2447 //
2448 // Refit tracklet linearly using clusters at given sector isec
2449 // Clusters are rotated to the reference frame of sector refSector
2450 //
2451 // fit parameters and errors retruning in the fitParam
2452 //
2453 // seed - acces to the original clusters
2454 // isec - sector to be refited
2455 // fitParam -
2456 // 0 lx
2457 // 1 ly
2458 // 2 dy/dz
2459 // 3 lz
2460 // 4 dz/dx
2461 // 5 sx
2462 // 6 sy
2463 // 7 sdydx
2464 // 8 sz
2465 // 9 sdzdx
2466 // ref sector is the sector defining ref frame - rotation
2467 // return value - number of used clusters
2468
2469 const Int_t kMinClusterF=15;
2470 const Int_t kdrow1 =10; // rows to skip at the end
2471 const Int_t kdrow0 =3; // rows to skip at beginning
2472 const Float_t kedgeyIn=2.5;
2473 const Float_t kedgeyOut=4.0;
2474 const Float_t kMaxDist=5; // max distance -in sigma
2475 const Float_t kMaxCorrY=0.05; // max correction
2476 //
2477 Double_t dalpha = 0;
2478 if ((refSector%18)!=(isec%18)){
2479 dalpha = -((refSector%18)-(isec%18))*TMath::TwoPi()/18.;
2480 }
2481 Double_t ca = TMath::Cos(dalpha);
2482 Double_t sa = TMath::Sin(dalpha);
2483 //
2484 //
2485 AliTPCPointCorrection * corr = AliTPCPointCorrection::Instance();
2486 //
2487 // full track fit parameters
2488 //
4486a91f 2489 static TLinearFitter fyf(2,"pol1"); // change to static - suggestion of calgrind - 30 % of time
2490 static TLinearFitter fzf(2,"pol1"); // relative to time of given class
774a5ee9 2491 TVectorD pyf(2), peyf(2),pzf(2), pezf(2);
2492 TMatrixD covY(4,4),covZ(4,4);
2493 Double_t chi2FacY =1;
2494 Double_t chi2FacZ =1;
2495 Int_t nf=0;
2496 //
2497 //
2498 //
2499 Float_t erry=0.1; // initial cluster error estimate
2500 Float_t errz=0.1; // initial cluster error estimate
2501 for (Int_t iter=0; iter<2; iter++){
2502 fyf.ClearPoints();
2503 fzf.ClearPoints();
2504 for (Int_t irow=kdrow0;irow<159-kdrow1;irow++) {
2505 AliTPCclusterMI *c=track->GetClusterPointer(irow);
2506 if (!c) continue;
2507 //
2508 if (c->GetDetector()%36!=(isec%36)) continue;
2509 if (!both && c->GetDetector()!=isec) continue;
108953e9 2510
774a5ee9 2511 if (c->GetRow()<kdrow0) continue;
2512 //cluster position in reference frame
2513 Double_t lxR = ca*c->GetX()-sa*c->GetY();
2514 Double_t lyR = +sa*c->GetX()+ca*c->GetY();
2515 Double_t lzR = c->GetZ();
6f387311 2516
774a5ee9 2517 Double_t dx = lxR -xRef; // distance to reference X
2518 Double_t x[2]={dx, dx*dx};
6f387311 2519
774a5ee9 2520 Double_t yfitR = pyf[0]+pyf[1]*dx; // fit value Y in ref frame
2521 Double_t zfitR = pzf[0]+pzf[1]*dx; // fit value Z in ref frame
2522 //
2523 Double_t yfit = -sa*lxR + ca*yfitR; // fit value Y in local frame
2524 //
2525 if (iter==0 &&c->GetType()<0) continue;
2526 if (iter>0){
2527 if (TMath::Abs(lyR-yfitR)>kMaxDist*erry) continue;
2528 if (TMath::Abs(lzR-zfitR)>kMaxDist*errz) continue;
2529 Double_t dedge = c->GetX()*TMath::Tan(TMath::Pi()/18.)-TMath::Abs(yfit);
2530 if (isec<36 && dedge<kedgeyIn) continue;
2531 if (isec>35 && dedge<kedgeyOut) continue;
2532 Double_t corrtrY =
2533 corr->RPhiCOGCorrection(isec,c->GetRow(), c->GetPad(),
2534 c->GetY(),yfit, c->GetZ(), pyf[1], c->GetMax(),2.5);
2535 Double_t corrclY =
2536 corr->RPhiCOGCorrection(isec,c->GetRow(), c->GetPad(),
2537 c->GetY(),c->GetY(), c->GetZ(), pyf[1], c->GetMax(),2.5);
2538 if (TMath::Abs((corrtrY+corrclY)*0.5)>kMaxCorrY) continue;
2539 if (TMath::Abs(corrtrY)>kMaxCorrY) continue;
2540 }
2541 fyf.AddPoint(x,lyR,erry);
2542 fzf.AddPoint(x,lzR,errz);
2543 }
2544 nf = fyf.GetNpoints();
2545 if (nf<kMinClusterF) return 0; // not enough points - skip
2546 fyf.Eval();
2547 fyf.GetParameters(pyf);
2548 fyf.GetErrors(peyf);
2549 fzf.Eval();
2550 fzf.GetParameters(pzf);
2551 fzf.GetErrors(pezf);
2552 chi2FacY = TMath::Sqrt(fyf.GetChisquare()/(fyf.GetNpoints()-2.));
2553 chi2FacZ = TMath::Sqrt(fzf.GetChisquare()/(fzf.GetNpoints()-2.));
2554 peyf[0]*=chi2FacY;
2555 peyf[1]*=chi2FacY;
2556 pezf[0]*=chi2FacZ;
2557 pezf[1]*=chi2FacZ;
2558 erry*=chi2FacY;
2559 errz*=chi2FacZ;
2560 fyf.GetCovarianceMatrix(covY);
2561 fzf.GetCovarianceMatrix(covZ);
2562 for (Int_t i0=0;i0<2;i0++)
2563 for (Int_t i1=0;i1<2;i1++){
2564 covY(i0,i1)*=chi2FacY*chi2FacY;
2565 covZ(i0,i1)*=chi2FacZ*chi2FacZ;
2566 }
2567 }
2568 fitParam[0] = xRef;
2569 //
2570 fitParam[1] = pyf[0];
2571 fitParam[2] = pyf[1];
2572 fitParam[3] = pzf[0];
2573 fitParam[4] = pzf[1];
2574 //
2575 fitParam[5] = 0;
2576 fitParam[6] = peyf[0];
2577 fitParam[7] = peyf[1];
2578 fitParam[8] = pezf[0];
2579 fitParam[9] = pezf[1];
2580 //
2581 //
2582 tparam(0,0) = pyf[0];
2583 tparam(1,0) = pyf[1];
2584 tparam(2,0) = pzf[0];
2585 tparam(3,0) = pzf[1];
2586 //
2587 tcovar(0,0) = covY(0,0);
2588 tcovar(1,1) = covY(1,1);
2589 tcovar(1,0) = covY(1,0);
2590 tcovar(0,1) = covY(0,1);
2591 tcovar(2,2) = covZ(0,0);
2592 tcovar(3,3) = covZ(1,1);
2593 tcovar(3,2) = covZ(1,0);
2594 tcovar(2,3) = covZ(0,1);
2595 return nf;
2596}
6f387311 2597
5b7417d2 2598void AliTPCcalibAlign::UpdateClusterDeltaField(const AliTPCseed * seed){
2599 //
2600 // Update the cluster residula histograms for setup with field
2601 // Kalman track fitting is used
2602 // Only high momenta primary tracks used
2603 //
2604 // 1. Apply selection
2605 // 2. Refit the track - in-out
5b7417d2 2606 // 3. Refit the track - out-in
76c58ee2 2607 // 4. Combine In and Out track - - fil cluster residuals
5b7417d2 2608 //
034e5c8c 2609 if (!fCurrentFriendTrack) return;
2610 if (!fCurrentFriendTrack->GetTPCOut()) return;
5647625c 2611 const Double_t kPtCut=1.0; // pt
5b7417d2 2612 const Double_t kSnpCut=0.2; // snp cut
2613 const Double_t kNclCut=120; //
2614 const Double_t kVertexCut=1;
2615 const Double_t kMaxDist=0.5; // max distance between tracks and cluster
5647625c 2616 const Double_t kEdgeCut = 2.5;
76c58ee2 2617 const Double_t kDelta2=0.2*0.2; // initial increase in covar matrix
2618 const Double_t kSigma=0.3; // error increase towards edges of TPC
2619 const Double_t kSkipBoundary=7.5; // skip track updates in the boundary IFC,OFC, IO
2620 //
5b7417d2 2621 if (!fCurrentTrack) return;
2622 if (!fCurrentFriendTrack) return;
2623 Float_t vertexXY=0,vertexZ=0;
2624 fCurrentTrack->GetImpactParameters(vertexXY,vertexZ);
2625 if (TMath::Abs(vertexXY)>kVertexCut) return;
2626 if (TMath::Abs(vertexZ)>kVertexCut) return;
2627 if (TMath::Abs(seed->Pt())<kPtCut) return;
2628 if (seed->GetNumberOfClusters()<kNclCut) return;
2629 if (TMath::Abs(seed->GetSnp())>kSnpCut) return;
2630 if (!fClusterDelta[0]) MakeResidualHistos();
76c58ee2 2631 //
2632 AliExternalTrackParam fitIn[160];
2633 AliExternalTrackParam fitOut[160];
2634 AliTPCROC * roc = AliTPCROC::Instance();
2635 Double_t xmiddle = ( roc->GetPadRowRadii(0,0)+roc->GetPadRowRadii(36,roc->GetNRows(36)-1))*0.5;
2636 Double_t xDiff = ( -roc->GetPadRowRadii(0,0)+roc->GetPadRowRadii(36,roc->GetNRows(36)-1))*0.5;
2637 Double_t xIFC = ( roc->GetPadRowRadii(0,0));
2638 Double_t xOFC = ( roc->GetPadRowRadii(36,roc->GetNRows(36)-1));
2639 //
5b7417d2 2640 Int_t detector=-1;
2641 //
2642 //
2643 AliExternalTrackParam trackIn = *(fCurrentTrack->GetInnerParam());
2644 AliExternalTrackParam trackOut = *(fCurrentFriendTrack->GetTPCOut());
76c58ee2 2645 trackIn.ResetCovariance(10);
2646 trackOut.ResetCovariance(10);
2647 Double_t *covarIn = (Double_t*)trackIn.GetCovariance();
2648 Double_t *covarOut = (Double_t*)trackOut.GetCovariance();
2649 covarIn[0]+=kDelta2; covarIn[2]+=kDelta2;
2650 covarIn[5]+=kDelta2/(100.*100.); covarIn[9]=kDelta2/(100.*100.);
2651 covarIn[14]+=kDelta2/(5.*5.);
2652 covarOut[0]+=kDelta2; covarOut[2]+=kDelta2;
2653 covarOut[5]+=kDelta2/(100.*100.); covarOut[9]=kDelta2/(100.*100.);
2654 covarOut[14]+=kDelta2/(5.*5.);
2655 //
5647625c 2656 static Double_t mass = TDatabasePDG::Instance()->GetParticle("pi+")->Mass();
5b7417d2 2657 //
5647625c 2658 Int_t ncl=0;
2659 for (Int_t irow=0; irow<160; irow++){
2660 AliTPCclusterMI *cl=seed->GetClusterPointer(irow);
2661 if (!cl) continue;
2662 if (cl->GetX()<80) continue;
2663 if (detector<0) detector=cl->GetDetector()%36;
2664 if (detector!=cl->GetDetector()%36) return; // cluster from different sectors
2665 // skip such tracks
2666 ncl++;
2667 }
2668 if (ncl<kNclCut) return;
5b7417d2 2669 Int_t nclIn=0,nclOut=0;
2670 Double_t xyz[3];
2671 //
2672 // Refit out - store residual maps
2673 //
2674 for (Int_t irow=0; irow<160; irow++){
2675 AliTPCclusterMI *cl=seed->GetClusterPointer(irow);
2676 if (!cl) continue;
2677 if (cl->GetX()<80) continue;
2678 if (detector<0) detector=cl->GetDetector()%36;
2679 Int_t sector = cl->GetDetector();
2680 Float_t dalpha = TMath::DegToRad()*(sector%18*20.+10.)-trackOut.GetAlpha();
76c58ee2 2681 if (cl->GetDetector()%36!=detector) continue;
5b7417d2 2682 if (TMath::Abs(dalpha)>0.01){
2683 if (!trackOut.Rotate(TMath::DegToRad()*(sector%18*20.+10.))) break;
2684 }
2685 Double_t r[3]={cl->GetX(),cl->GetY(),cl->GetZ()};
76c58ee2 2686 Double_t cov[3]={0.1,0.,0.1};
5647625c 2687 Double_t dedge = cl->GetX()*TMath::Tan(TMath::Pi()/18.)-TMath::Abs(trackOut.GetY());
76c58ee2 2688 Double_t dmiddle = TMath::Abs(cl->GetX()-xmiddle)/xDiff;
2689 dmiddle*=dmiddle;
2690 //
2691 cov[0]+=kSigma*dmiddle; // bigger error at boundary
2692 cov[0]+=kSigma*dmiddle; // bigger error at boundary
2693 cov[2]+=kSigma*dmiddle; // bigger error at boundary
2694 cov[2]+=kSigma*dmiddle; // bigger error at boundary
2695 cov[0]+=kSigma/dedge; // bigger error close to the boundary
2696 cov[2]+=kSigma/dedge; // bigger error close to the boundary
5b7417d2 2697 cov[0]*=cov[0];
2698 cov[2]*=cov[2];
76c58ee2 2699 if (!AliTracker::PropagateTrackToBxByBz(&trackOut, r[0],mass,1.,kFALSE)) continue;
5647625c 2700 if (TMath::Abs(dedge)<kEdgeCut) continue;
76c58ee2 2701 //
2702 Bool_t doUpdate=kTRUE;
2703 if (TMath::Abs(cl->GetX()-xIFC)<kSkipBoundary) doUpdate=kFALSE;
2704 if (TMath::Abs(cl->GetX()-xOFC)<kSkipBoundary) doUpdate=kFALSE;
2705 if (TMath::Abs(cl->GetX()-fXIO)<kSkipBoundary) doUpdate=kFALSE;
2706 //
5b7417d2 2707 if (TMath::Abs(cl->GetY()-trackOut.GetY())<kMaxDist){
2708 nclOut++;
76c58ee2 2709 if (doUpdate) trackOut.Update(&r[1],cov);
5b7417d2 2710 }
76c58ee2 2711 fitOut[irow]=trackOut;
5b7417d2 2712 }
76c58ee2 2713
5b7417d2 2714 //
76c58ee2 2715 // Refit In - store residual maps
5b7417d2 2716 //
2717 for (Int_t irow=159; irow>=0; irow--){
2718 AliTPCclusterMI *cl=seed->GetClusterPointer(irow);
2719 if (!cl) continue;
2720 if (cl->GetX()<80) continue;
2721 if (detector<0) detector=cl->GetDetector()%36;
2722 Int_t sector = cl->GetDetector();
2723 Float_t dalpha = TMath::DegToRad()*(sector%18*20.+10.)-trackIn.GetAlpha();
76c58ee2 2724 if (cl->GetDetector()%36!=detector) continue;
5b7417d2 2725 if (TMath::Abs(dalpha)>0.01){
2726 if (!trackIn.Rotate(TMath::DegToRad()*(sector%18*20.+10.))) break;
2727 }
2728 Double_t r[3]={cl->GetX(),cl->GetY(),cl->GetZ()};
76c58ee2 2729 Double_t cov[3]={0.1,0.,0.1};
5647625c 2730 Double_t dedge = cl->GetX()*TMath::Tan(TMath::Pi()/18.)-TMath::Abs(trackIn.GetY());
76c58ee2 2731 Double_t dmiddle = TMath::Abs(cl->GetX()-xmiddle)/xDiff;
2732 dmiddle*=dmiddle;
2733 //
2734 cov[0]+=kSigma*dmiddle; // bigger error at boundary
2735 cov[0]+=kSigma*dmiddle; // bigger error at boundary
2736 cov[2]+=kSigma*dmiddle; // bigger error at boundary
2737 cov[2]+=kSigma*dmiddle; // bigger error at boundary
2738 cov[0]+=kSigma/dedge; // bigger error close to the boundary
2739 cov[2]+=kSigma/dedge; // bigger error close to the boundary
5b7417d2 2740 cov[0]*=cov[0];
2741 cov[2]*=cov[2];
76c58ee2 2742 if (!AliTracker::PropagateTrackToBxByBz(&trackIn, r[0],mass,1.,kFALSE)) continue;
5647625c 2743 if (TMath::Abs(dedge)<kEdgeCut) continue;
76c58ee2 2744 Bool_t doUpdate=kTRUE;
2745 if (TMath::Abs(cl->GetX()-xIFC)<kSkipBoundary) doUpdate=kFALSE;
2746 if (TMath::Abs(cl->GetX()-xOFC)<kSkipBoundary) doUpdate=kFALSE;
2747 if (TMath::Abs(cl->GetX()-fXIO)<kSkipBoundary) doUpdate=kFALSE;
5b7417d2 2748 if (TMath::Abs(cl->GetY()-trackIn.GetY())<kMaxDist){
2749 nclIn++;
76c58ee2 2750 if (doUpdate) trackIn.Update(&r[1],cov);
5b7417d2 2751 }
76c58ee2 2752 fitIn[irow]=trackIn;
2753 }
2754 //
2755 //
2756 for (Int_t irow=159; irow>=0; irow--){
5b7417d2 2757 //
76c58ee2 2758 // Update kalman - +- direction
2759 // Store cluster residuals
2760 AliTPCclusterMI *cl=seed->GetClusterPointer(irow);
2761 if (!cl) continue;
2762 if (cl->GetX()<80) continue;
2763 if (detector<0) detector=cl->GetDetector()%36;
2764 if (cl->GetDetector()%36!=detector) continue;
034e5c8c 2765 if (fitIn[irow].GetX()<80) continue;
2766 if (fitOut[irow].GetX()<80) continue;
76c58ee2 2767 AliExternalTrackParam trackSmooth = fitIn[irow];
2768 AliTrackerBase::UpdateTrack(trackSmooth, fitOut[irow]);
5b7417d2 2769 //
2770 Double_t resVector[5];
76c58ee2 2771 trackSmooth.GetXYZ(xyz);
5b7417d2 2772 resVector[1]= 9.*TMath::ATan2(xyz[1],xyz[0])/TMath::Pi();
2773 if (resVector[1]<0) resVector[1]+=18;
287fbdfa 2774 resVector[2]= TMath::Sqrt(cl->GetX()*cl->GetX()+cl->GetY()*cl->GetY());
8847ede1 2775 resVector[3]= cl->GetZ()/resVector[2];
5b7417d2 2776 //
76c58ee2 2777 resVector[0]= cl->GetY()-trackSmooth.GetY();
5b7417d2 2778 fClusterDelta[0]->Fill(resVector);
76c58ee2 2779 resVector[0]= cl->GetZ()-trackSmooth.GetZ();
5b7417d2 2780 fClusterDelta[1]->Fill(resVector);
2781 }
2782
5b7417d2 2783}
2784
2785
774a5ee9 2786void AliTPCcalibAlign::UpdateAlignSector(const AliTPCseed * track,Int_t isec){
2787 //
5b7417d2 2788 // Update Kalman filter of Alignment - only setup without filed
774a5ee9 2789 // IROC - OROC quadrants
2790 //
5b7417d2 2791 if (TMath::Abs(AliTracker::GetBz())>0.5) return;
b842d904 2792 if (!fClusterDelta[0]) MakeResidualHistos();
76c58ee2 2793 // const Int_t kMinClusterF=40;
5b7417d2 2794 const Int_t kMinClusterFit=10;
774a5ee9 2795 const Int_t kMinClusterQ=10;
2796 //
b842d904 2797 const Int_t kdrow1Fit =5; // rows to skip from fit at the end
2798 const Int_t kdrow0Fit =10; // rows to skip from fit at beginning
774a5ee9 2799 const Float_t kedgey=3.0;
b842d904 2800 const Float_t kMaxDist=1;
774a5ee9 2801 const Float_t kMaxCorrY=0.05;
2802 const Float_t kPRFWidth = 0.6; //cut 2 sigma of PRF
2803 isec = isec%36; // use the hardware numbering
2804 //
2805 //
2806 AliTPCPointCorrection * corr = AliTPCPointCorrection::Instance();
2807 //
2808 // full track fit parameters
2809 //
4486a91f 2810 static TLinearFitter fyf(2,"pol1"); // make it static - too much time for comiling of formula
2811 static TLinearFitter fzf(2,"pol1"); // calgrind recomendation
774a5ee9 2812 TVectorD pyf(2), peyf(2),pzf(2), pezf(2);
b842d904 2813 TVectorD pyfc(2),pzfc(2);
774a5ee9 2814 Int_t nf=0;
2815 //
2816 // make full fit as reference
2817 //
2818 for (Int_t iter=0; iter<2; iter++){
2819 fyf.ClearPoints();
4486a91f 2820 fzf.ClearPoints();
b842d904 2821 for (Int_t irow=kdrow0Fit;irow<159-kdrow1Fit;irow++) {
774a5ee9 2822 AliTPCclusterMI *c=track->GetClusterPointer(irow);
2823 if (!c) continue;
2824 if ((c->GetDetector()%36)!=isec) continue;
b842d904 2825 if (c->GetRow()<kdrow0Fit) continue;
774a5ee9 2826 Double_t dx = c->GetX()-fXmiddle;
2827 Double_t x[2]={dx, dx*dx};
2828 if (iter==0 &&c->GetType()<0) continue;
2829 if (iter==1){
2830 Double_t yfit = pyf[0]+pyf[1]*dx;
b842d904 2831 Double_t zfit = pzf[0]+pzf[1]*dx;
774a5ee9 2832 Double_t dedge = c->GetX()*TMath::Tan(TMath::Pi()/18.)-TMath::Abs(yfit);
2833 if (TMath::Abs(c->GetY()-yfit)>kMaxDist) continue;
b842d904 2834 if (TMath::Abs(c->GetZ()-zfit)>kMaxDist) continue;
774a5ee9 2835 if (dedge<kedgey) continue;
2836 Double_t corrtrY =
2837 corr->RPhiCOGCorrection(c->GetDetector(),c->GetRow(), c->GetPad(),
2838 c->GetY(),yfit, c->GetZ(), pyf[1], c->GetMax(),2.5);
2839 if (TMath::Abs(corrtrY)>kMaxCorrY) continue;
2840 }
5b7417d2 2841 if (TMath::Abs(x[0])<10){
2842 fyf.AddPoint(x,c->GetY(),0.1); //use only middle rows+-10cm
76c58ee2 2843 fzf.AddPoint(x,c->GetZ(),0.1);
5b7417d2 2844 }
774a5ee9 2845 }
2846 nf = fyf.GetNpoints();
5b7417d2 2847 if (fyf.GetNpoints()<kMinClusterFit) return; // not enough points - skip
76c58ee2 2848 if (fzf.GetNpoints()<kMinClusterFit) return; // not enough points - skip
774a5ee9 2849 fyf.Eval();
2850 fyf.GetParameters(pyf);
2851 fyf.GetErrors(peyf);
2852 fzf.Eval();
2853 fzf.GetParameters(pzf);
2854 fzf.GetErrors(pezf);
2855 }
2856 //
b842d904 2857 //
2858 //
5b7417d2 2859 TVectorD vecX(160); // x vector
2860 TVectorD vecY(160); // residuals vector
2861 TVectorD vecZ(160); // residuals vector
b842d904 2862 TVectorD vPosG(3); //vertex position
2863 TVectorD vPosL(3); // vertex position in the TPC local system
2864 TVectorF vImpact(2); //track impact parameter
c9cbd2f2 2865 // Double_t tofSignal= fCurrentTrack->GetTOFsignal(); // tof signal
b842d904 2866 TVectorF tpcPosG(3); // global position of track at the middle of fXmiddle
2867 Double_t lphi = TMath::ATan2(pyf[0],fXmiddle); // expected local phi angle - if vertex at 0
2868 Double_t gphi = 2.*TMath::Pi()*(isec%18+0.5)/18.+lphi; // expected global phi if vertex at 0
2869 Double_t ky = pyf[0]/fXmiddle;
2870 Double_t kyE =0, kzE=0; // ky and kz expected
2871 Double_t alpha =2.*TMath::Pi()*(isec%18+0.5)/18.;
2872 Double_t scos=TMath::Cos(alpha);
2873 Double_t ssin=TMath::Sin(alpha);
2874 const AliESDVertex* vertex = fCurrentEvent->GetPrimaryVertexTracks();
2875 vertex->GetXYZ(vPosG.GetMatrixArray());
2876 fCurrentTrack->GetImpactParameters(vImpact[0],vImpact[1]); // track impact parameters
2877 //
2878 tpcPosG[0]= scos*fXmiddle-ssin*pyf[0];
2879 tpcPosG[1]=+ssin*fXmiddle+scos*pyf[0];
2880 tpcPosG[2]=pzf[0];
2881 vPosL[0]= scos*vPosG[0]+ssin*vPosG[1];
2882 vPosL[1]=-ssin*vPosG[0]+scos*vPosG[1];
2883 vPosL[2]= vPosG[2];
2884 kyE = (pyf[0]-vPosL[1])/(fXmiddle-vPosL[0]);
2885 kzE = (pzf[0]-vPosL[2])/(fXmiddle-vPosL[0]);
2886 //
2887 // get constrained parameters
2888 //
2889 Double_t xvertex=vPosL[0]-fXmiddle;
5b7417d2 2890 fyf.AddPoint(&xvertex,vPosL[1], 0.00001);
2891 fzf.AddPoint(&xvertex,vPosL[2], 2.);
b842d904 2892 fyf.Eval();
2893 fyf.GetParameters(pyfc);
2894 fzf.Eval();
2895 fzf.GetParameters(pzfc);
2896 //
2897 //
774a5ee9 2898 // Make Fitters and params for 5 fitters
2899 // 1-4 OROC quadrants
2900 // 0 IROC
2901 //
4486a91f 2902 static TLinearFitter *fittersY[5]={0,0,0,0,0}; // calgrind recomendation - fater to clear points
2903 static TLinearFitter *fittersZ[5]={0,0,0,0,0}; // than create the fitter
2904 if (fittersY[0]==0){
2905 for (Int_t i=0;i<5;i++) {
2906 fittersY[i] = new TLinearFitter(2,"pol1");
2907 fittersZ[i] = new TLinearFitter(2,"pol1");
2908 }
2909 }
2910 //
774a5ee9 2911 Int_t npoints[5];
2912 TVectorD paramsY[5];
2913 TVectorD errorsY[5];
2914 TMatrixD covY[5];
2915 Double_t chi2CY[5];
2916 TVectorD paramsZ[5];
2917 TVectorD errorsZ[5];
2918 TMatrixD covZ[5];
2919 Double_t chi2CZ[5];
2920 for (Int_t i=0;i<5;i++) {
2921 npoints[i]=0;
774a5ee9 2922 paramsY[i].ResizeTo(2);
2923 errorsY[i].ResizeTo(2);
2924 covY[i].ResizeTo(2,2);
774a5ee9 2925 paramsZ[i].ResizeTo(2);
2926 errorsZ[i].ResizeTo(2);
2927 covZ[i].ResizeTo(2,2);
4486a91f 2928 fittersY[i]->ClearPoints();
2929 fittersZ[i]->ClearPoints();
774a5ee9 2930 }
2931 //
2932 // Update fitters
2933 //
b842d904 2934 Int_t countRes=0;
2935 for (Int_t irow=0;irow<159;irow++) {
774a5ee9 2936 AliTPCclusterMI *c=track->GetClusterPointer(irow);
2937 if (!c) continue;
2938 if ((c->GetDetector()%36)!=isec) continue;
774a5ee9 2939 Double_t dx = c->GetX()-fXmiddle;
2940 Double_t x[2]={dx, dx*dx};
2941 Double_t yfit = pyf[0]+pyf[1]*dx;
b842d904 2942 Double_t zfit = pzf[0]+pzf[1]*dx;
2943 Double_t yfitC = pyfc[0]+pyfc[1]*dx;
2944 Double_t zfitC = pzfc[0]+pzfc[1]*dx;
774a5ee9 2945 Double_t dedge = c->GetX()*TMath::Tan(TMath::Pi()/18.)-TMath::Abs(yfit);
2946 if (TMath::Abs(c->GetY()-yfit)>kMaxDist) continue;
b842d904 2947 if (TMath::Abs(c->GetZ()-zfit)>kMaxDist) continue;
774a5ee9 2948 if (dedge<kedgey) continue;
2949 Double_t corrtrY =
2950 corr->RPhiCOGCorrection(c->GetDetector(),c->GetRow(), c->GetPad(),
2951 c->GetY(),yfit, c->GetZ(), pyf[1], c->GetMax(),2.5);
2952 if (TMath::Abs(corrtrY)>kMaxCorrY) continue;
b842d904 2953 //
2954 vecX[countRes]=c->GetX();
2955 vecY[countRes]=c->GetY()-yfit;
2956 vecZ[countRes]=c->GetZ()-zfit;
2957 countRes++;
2958 //
2959 // Fill THnSparse cluster residuals
2960 // use only primary candidates with ITS signal
5b7417d2 2961 if (fCurrentTrack->IsOn(0x4)&&TMath::Abs(vImpact[0])<1&&TMath::Abs(vImpact[1])<1){
b842d904 2962 Double_t resVector[5];
2963 resVector[1]= 9.*gphi/TMath::Pi();
287fbdfa 2964 resVector[2]= TMath::Sqrt(c->GetX()*c->GetX()+c->GetY()*c->GetY());
8847ede1 2965 resVector[3]= c->GetZ()/resVector[2];
b842d904 2966 //
b842d904 2967 //
2968 resVector[0]= c->GetY()-yfitC;
5b7417d2 2969 fClusterDelta[0]->Fill(resVector);
b842d904 2970 resVector[0]= c->GetZ()-zfitC;
5b7417d2 2971 fClusterDelta[1]->Fill(resVector);
b842d904 2972 }
2973 if (c->GetRow()<kdrow0Fit) continue;
2974 if (c->GetRow()>159-kdrow1Fit) continue;
2975 //
2976
774a5ee9 2977 if (c->GetDetector()>35){
2978 if (c->GetX()<fXquadrant){
2979 if (yfit<-kPRFWidth) fittersY[1]->AddPoint(x,c->GetY(),0.1);
2980 if (yfit<-kPRFWidth) fittersZ[1]->AddPoint(x,c->GetZ(),0.1);
2981 if (yfit>kPRFWidth) fittersY[2]->AddPoint(x,c->GetY(),0.1);
2982 if (yfit>kPRFWidth) fittersZ[2]->AddPoint(x,c->GetZ(),0.1);
2983 }
2984 if (c->GetX()>fXquadrant){
2985 if (yfit<-kPRFWidth) fittersY[3]->AddPoint(x,c->GetY(),0.1);
2986 if (yfit<-kPRFWidth) fittersZ[3]->AddPoint(x,c->GetZ(),0.1);
2987 if (yfit>kPRFWidth) fittersY[4]->AddPoint(x,c->GetY(),0.1);
2988 if (yfit>kPRFWidth) fittersZ[4]->AddPoint(x,c->GetZ(),0.1);
2989 }
2990 }
2991 if (c->GetDetector()<36){
2992 fittersY[0]->AddPoint(x,c->GetY(),0.1);
2993 fittersZ[0]->AddPoint(x,c->GetZ(),0.1);
2994 }
2995 }
2996 //
2997 //
2998 //
2999 for (Int_t i=0;i<5;i++) {
3000 npoints[i] = fittersY[i]->GetNpoints();
3001 if (npoints[i]>=kMinClusterQ){
3002 // Y fit
3003 fittersY[i]->Eval();
3004 Double_t chi2FacY = TMath::Sqrt(fittersY[i]->GetChisquare()/(fittersY[i]->GetNpoints()-2));
3005 chi2CY[i]=chi2FacY;
3006 fittersY[i]->GetParameters(paramsY[i]);
3007 fittersY[i]->GetErrors(errorsY[i]);
3008 fittersY[i]->GetCovarianceMatrix(covY[i]);
3009 // renormalize errors
3010 errorsY[i][0]*=chi2FacY;
3011 errorsY[i][1]*=chi2FacY;
3012 covY[i](0,0)*=chi2FacY*chi2FacY;
3013 covY[i](0,1)*=chi2FacY*chi2FacY;
3014 covY[i](1,0)*=chi2FacY*chi2FacY;
3015 covY[i](1,1)*=chi2FacY*chi2FacY;
3016 // Z fit
3017 fittersZ[i]->Eval();
3018 Double_t chi2FacZ = TMath::Sqrt(fittersZ[i]->GetChisquare()/(fittersZ[i]->GetNpoints()-2));
3019 chi2CZ[i]=chi2FacZ;
3020 fittersZ[i]->GetParameters(paramsZ[i]);
3021 fittersZ[i]->GetErrors(errorsZ[i]);
3022 fittersZ[i]->GetCovarianceMatrix(covZ[i]);
3023 // renormalize errors
3024 errorsZ[i][0]*=chi2FacZ;
3025 errorsZ[i][1]*=chi2FacZ;
3026 covZ[i](0,0)*=chi2FacZ*chi2FacZ;
3027 covZ[i](0,1)*=chi2FacZ*chi2FacZ;
3028 covZ[i](1,0)*=chi2FacZ*chi2FacZ;
3029 covZ[i](1,1)*=chi2FacZ*chi2FacZ;
3030 }
3031 }
774a5ee9 3032 //
3033 // void UpdateSectorKalman
3034 //
3035 for (Int_t i0=0;i0<5;i0++){
3036 for (Int_t i1=i0+1;i1<5;i1++){
3037 if(npoints[i0]<kMinClusterQ) continue;
3038 if(npoints[i1]<kMinClusterQ) continue;
3039 TMatrixD v0(4,1),v1(4,1); // measurement
3040 TMatrixD cov0(4,4),cov1(4,4); // covariance
3041 //
3042 v0(0,0)= paramsY[i0][0]; v1(0,0)= paramsY[i1][0];
3043 v0(1,0)= paramsY[i0][1]; v1(1,0)= paramsY[i1][1];
3044 v0(2,0)= paramsZ[i0][0]; v1(2,0)= paramsZ[i1][0];
3045 v0(3,0)= paramsZ[i0][1]; v1(3,0)= paramsZ[i1][1];
3046 //covariance i0
3047 cov0(0,0) = covY[i0](0,0);
3048 cov0(1,1) = covY[i0](1,1);
3049 cov0(1,0) = covY[i0](1,0);
3050 cov0(0,1) = covY[i0](0,1);
3051 cov0(2,2) = covZ[i0](0,0);
3052 cov0(3,3) = covZ[i0](1,1);
3053 cov0(3,2) = covZ[i0](1,0);
3054 cov0(2,3) = covZ[i0](0,1);
3055 //covariance i1
3056 cov1(0,0) = covY[i1](0,0);
3057 cov1(1,1) = covY[i1](1,1);
3058 cov1(1,0) = covY[i1](1,0);
3059 cov1(0,1) = covY[i1](0,1);
3060 cov1(2,2) = covZ[i1](0,0);
3061 cov1(3,3) = covZ[i1](1,1);
3062 cov1(3,2) = covZ[i1](1,0);
3063 cov1(2,3) = covZ[i1](0,1);
3064 //
3065 // And now update
3066 //
3067 if (TMath::Abs(pyf[1])<0.8){ //angular cut
3068 UpdateSectorKalman(isec, i0,i1, &v0,&cov0,&v1,&cov1);
3069 }
3070 }
3071 }
108953e9 3072
774a5ee9 3073 //
3074 // Dump debug information
3075 //
b842d904 3076 if (fStreamLevel>0){
3077 // get vertex position
3078 //
3079 TTreeSRedirector *cstream = GetDebugStreamer();
3080
3081
774a5ee9 3082 if (cstream){
3083 for (Int_t i0=0;i0<5;i0++){
3084 for (Int_t i1=i0;i1<5;i1++){
3085 if (i0==i1) continue;
3086 if(npoints[i0]<kMinClusterQ) continue;
3087 if(npoints[i1]<kMinClusterQ) continue;
3088 (*cstream)<<"sectorAlign"<<
3089 "run="<<fRun<< // run number
3090 "event="<<fEvent<< // event number
3091 "time="<<fTime<< // time stamp of event
3092 "trigger="<<fTrigger<< // trigger
3093 "triggerClass="<<&fTriggerClass<< // trigger
3094 "mag="<<fMagF<< // magnetic field
3095 "isec="<<isec<< // current sector
b842d904 3096 //
3097 "xref="<<fXmiddle<< // reference X
3098 "vPosG.="<<&vPosG<< // vertex position in global system
3099 "vPosL.="<<&vPosL<< // vertex position in local system
3100 "vImpact.="<<&vImpact<< // track impact parameter
5647625c 3101 //"tofSignal="<<tofSignal<< // tof signal
b842d904 3102 "tpcPosG.="<<&tpcPosG<< // global position of track at the middle of fXmiddle
3103 "lphi="<<lphi<< // expected local phi angle - if vertex at 0
3104 "gphi="<<gphi<< // expected global phi if vertex at 0
3105 "ky="<<ky<<
3106 "kyE="<<kyE<< // expect ky - assiming pirmary track
3107 "kzE="<<kzE<< // expected kz - assuming primary tracks
3108 "salpha="<<alpha<< // sector alpha
3109 "scos="<<scos<< // tracking cosinus
3110 "ssin="<<ssin<< // tracking sinus
3111 //
774a5ee9 3112 // full fit
b842d904 3113 //
774a5ee9 3114 "nf="<<nf<< // total number of points
3115 "pyf.="<<&pyf<< // full OROC fit y
3116 "pzf.="<<&pzf<< // full OROC fit z
b842d904 3117 "vX.="<<&vecX<< // x cluster
3118 "vY.="<<&vecY<< // y residual cluster
3119 "vZ.="<<&vecZ<< // z residual cluster
774a5ee9 3120 // quadrant and IROC fit
3121 "i0="<<i0<< // quadrant number
3122 "i1="<<i1<<
3123 "n0="<<npoints[i0]<< // number of points
3124 "n1="<<npoints[i1]<<
3125 //
3126 "py0.="<<&paramsY[i0]<< // parameters
3127 "py1.="<<&paramsY[i1]<<
3128 "ey0.="<<&errorsY[i0]<< // errors
3129 "ey1.="<<&errorsY[i1]<<
3130 "chiy0="<<chi2CY[i0]<< // chi2s
3131 "chiy1="<<chi2CY[i1]<<
3132 //
3133 "pz0.="<<&paramsZ[i0]<< // parameters
3134 "pz1.="<<&paramsZ[i1]<<
3135 "ez0.="<<&errorsZ[i0]<< // errors
3136 "ez1.="<<&errorsZ[i1]<<
3137 "chiz0="<<chi2CZ[i0]<< // chi2s
3138 "chiz1="<<chi2CZ[i1]<<
3139 "\n";
3140 }
3141 }
3142 }
3143 }
3144}
bb6bc8f6 3145
3326b323 3146void AliTPCcalibAlign::UpdateSectorKalman(Int_t sector, Int_t quadrant0, Int_t quadrant1, TMatrixD *const p0, TMatrixD *const c0, TMatrixD *const p1, TMatrixD *const c1 ){
774a5ee9 3147 //
3148 //
3149 // tracks are refitted at sector middle
3150 //
3151 if (fArraySectorIntParam.At(0)==NULL) MakeSectorKalman();
3152 //
3153 //
3154 static TMatrixD matHk(4,30); // vector to mesurement
3155 static TMatrixD measR(4,4); // measurement error
3156 // static TMatrixD matQk(2,2); // prediction noise vector
3157 static TMatrixD vecZk(4,1); // measurement
3158 //
3159 static TMatrixD vecYk(4,1); // Innovation or measurement residual
3160 static TMatrixD matHkT(30,4); // helper matrix Hk transpose
3161 static TMatrixD matSk(4,4); // Innovation (or residual) covariance
3162 static TMatrixD matKk(30,4); // Optimal Kalman gain
3163 static TMatrixD mat1(30,30); // update covariance matrix
3164 static TMatrixD covXk2(30,30); // helper matrix
3165 //
3166 TMatrixD *vOrig = (TMatrixD*)(fArraySectorIntParam.At(sector));
3167 TMatrixD *cOrig = (TMatrixD*)(fArraySectorIntCovar.At(sector));
3168 //
3169 TMatrixD vecXk(*vOrig); // X vector
3170 TMatrixD covXk(*cOrig); // X covariance
3171 //
3172 //Unit matrix
3173 //
3174 for (Int_t i=0;i<30;i++)
3175 for (Int_t j=0;j<30;j++){
3176 mat1(i,j)=0;
3177 if (i==j) mat1(i,j)=1;
3178 }
3179 //
3180 //
3181 // matHk - vector to measurement
3182 //
3183 for (Int_t i=0;i<4;i++)
3184 for (Int_t j=0;j<30;j++){
3185 matHk(i,j)=0;
3186 }
3187 //
3188 // Measurement
3189 // 0 - y
3190 // 1 - ky
3191 // 2 - z
3192 // 3 - kz
3193
3194 matHk(0,6*quadrant1+4) = 1.; // delta y
3195 matHk(1,6*quadrant1+0) = 1.; // delta ky
3196 matHk(2,6*quadrant1+5) = 1.; // delta z
3197 matHk(3,6*quadrant1+1) = 1.; // delta kz
3198 // bug fix 24.02 - aware of sign in dx
3199 matHk(0,6*quadrant1+3) = -(*p0)(1,0); // delta x to delta y - through ky
3200 matHk(2,6*quadrant1+3) = -(*p0)(3,0); // delta x to delta z - thorugh kz
3201 matHk(2,6*quadrant1+2) = ((*p0)(0,0)); // y to delta z - through psiz
3202 //
3203 matHk(0,6*quadrant0+4) = -1.; // delta y
3204 matHk(1,6*quadrant0+0) = -1.; // delta ky
3205 matHk(2,6*quadrant0+5) = -1.; // delta z
3206 matHk(3,6*quadrant0+1) = -1.; // delta kz
3207 // bug fix 24.02 be aware of sign in dx
3208 matHk(0,6*quadrant0+3) = ((*p0)(1,0)); // delta x to delta y - through ky
3209 matHk(2,6*quadrant0+3) = ((*p0)(3,0)); // delta x to delta z - thorugh kz
3210 matHk(2,6*quadrant0+2) = -((*p0)(0,0)); // y to delta z - through psiz
bb6bc8f6 3211
774a5ee9 3212 //
3213 //
3214
3215 vecZk =(*p1)-(*p0); // measurement
3216 measR =(*c1)+(*c0); // error of measurement
3217 vecYk = vecZk-matHk*vecXk; // Innovation or measurement residual
3218 //
3219 //
3220 matHkT=matHk.T(); matHk.T();
3221 matSk = (matHk*(covXk*matHkT))+measR; // Innovation (or residual) covariance
3222 matSk.Invert();
3223 matKk = (covXk*matHkT)*matSk; // Optimal Kalman gain
3224 vecXk += matKk*vecYk; // updated vector
3225 covXk2= (mat1-(matKk*matHk));
3226 covXk = covXk2*covXk;
3227 //
3228 //
3229 (*cOrig)=covXk;
3230 (*vOrig)=vecXk;
3231}
bb6bc8f6 3232
774a5ee9 3233void AliTPCcalibAlign::MakeSectorKalman(){
3234 //
3235 // Make a initial Kalman paramaters for IROC - Quadrants alignment
3236 //
3237 TMatrixD param(5*6,1);
3238 TMatrixD covar(5*6,5*6);
3239 //
3240 // Set inital parameters
3241 //
3242 for (Int_t ip=0;ip<5*6;ip++) param(ip,0)=0; // mean alignment to 0
3243 //
3244 for (Int_t iq=0;iq<5;iq++){
3245 // Initial uncertinty
3246 covar(iq*6+0,iq*6+0) = 0.002*0.002; // 2 mrad
3247 covar(iq*6+1,iq*6+1) = 0.002*0.002; // 2 mrad rotation
3248 covar(iq*6+2,iq*6+2) = 0.002*0.002; // 2 mrad
3249 //
3250 covar(iq*6+3,iq*6+3) = 0.02*0.02; // 0.2 mm
3251 covar(iq*6+4,iq*6+4) = 0.02*0.02; // 0.2 mm translation
3252 covar(iq*6+5,iq*6+5) = 0.02*0.02; // 0.2 mm
3253 }
bb6bc8f6 3254
774a5ee9 3255 for (Int_t isec=0;isec<36;isec++){
3256 fArraySectorIntParam.AddAt(param.Clone(),isec);
3257 fArraySectorIntCovar.AddAt(covar.Clone(),isec);
3258 }
3259}
108953e9 3260
774a5ee9 3261void AliTPCcalibAlign::UpdateSectorKalman(TMatrixD &par0, TMatrixD &cov0, TMatrixD &par1, TMatrixD &cov1){
3262 //
3263 // Update kalman vector para0 with vector par1
3264 // Used for merging
3265 //
3266 static TMatrixD matHk(30,30); // vector to mesurement
3267 static TMatrixD measR(30,30); // measurement error
3268 static TMatrixD vecZk(30,1); // measurement
3269 //
3270 static TMatrixD vecYk(30,1); // Innovation or measurement residual
3271 static TMatrixD matHkT(30,30); // helper matrix Hk transpose
3272 static TMatrixD matSk(30,30); // Innovation (or residual) covariance
3273 static TMatrixD matKk(30,30); // Optimal Kalman gain
3274 static TMatrixD mat1(30,30); // update covariance matrix
3275 static TMatrixD covXk2(30,30); // helper matrix
3276 //
3277 TMatrixD vecXk(par0); // X vector
3278 TMatrixD covXk(cov0); // X covariance
108953e9 3279
774a5ee9 3280 //
3281 //Unit matrix
3282 //
3283 for (Int_t i=0;i<30;i++)
3284 for (Int_t j=0;j<30;j++){
3285 mat1(i,j)=0;
3286 if (i==j) mat1(i,j)=1;
3287 }
3288 matHk = mat1; // unit matrix
3289 //
3290 vecZk = par1; // measurement
3291 measR = cov1; // error of measurement
3292 vecYk = vecZk-matHk*vecXk; // Innovation or measurement residual
3293 //
3294 matHkT=matHk.T(); matHk.T();
3295 matSk = (matHk*(covXk*matHkT))+measR; // Innovation (or residual) covariance
3296 matSk.Invert();
3297 matKk = (covXk*matHkT)*matSk; // Optimal Kalman gain
3298 //matKk.Print();
3299 vecXk += matKk*vecYk; // updated vector
3300 covXk2= (mat1-(matKk*matHk));
3301 covXk = covXk2*covXk;
3302 CheckCovariance(covXk);
3303 CheckCovariance(cov1);
3304 //
3305 par0 = vecXk; // update measurement param
3306 cov0 = covXk; // update measurement covar
3307}
108953e9 3308
774a5ee9 3309Double_t AliTPCcalibAlign::GetCorrectionSector(Int_t coord, Int_t sector, Double_t lx, Double_t ly, Double_t /*lz*/){
3310 //
3311 // Get position correction for given sector
3312 //
108953e9 3313
774a5ee9 3314 TMatrixD * param = (TMatrixD*)fArraySectorIntParam.At(sector%36);
3315 if (!param) return 0;
3316 Int_t quadrant=0;
3317 if(lx>fXIO){
3318 if (lx<fXquadrant) {
3319 if (ly<0) quadrant=1;
3320 if (ly>0) quadrant=2;
3321 }
3322 if (lx>fXquadrant) {
3323 if (ly<0) quadrant=3;
3324 if (ly>0) quadrant=4;
3325 }
3326 }
3327 Double_t a10 = (*param)(quadrant*6+0,0);
3328 Double_t a20 = (*param)(quadrant*6+1,0);
3329 Double_t a21 = (*param)(quadrant*6+2,0);
3330 Double_t dx = (*param)(quadrant*6+3,0);
3331 Double_t dy = (*param)(quadrant*6+4,0);
3332 Double_t dz = (*param)(quadrant*6+5,0);
3333 Double_t deltaX = lx-fXIO;
3334 if (coord==0) return dx;
3335 if (coord==1) return dy+deltaX*a10;
3336 if (coord==2) return dz+deltaX*a20+ly*a21;
3337 return 0;
3338}
108953e9 3339
774a5ee9 3340Double_t AliTPCcalibAlign::SGetCorrectionSector(Int_t coord, Int_t sector, Double_t lx, Double_t ly, Double_t lz){
3341 //
3342 //
3343 //
3344 if (!Instance()) return 0;
3345 return Instance()->GetCorrectionSector(coord,sector,lx,ly,lz);
3346}
108953e9 3347
774a5ee9 3348void AliTPCcalibAlign::MakeKalman(){
3349 //
3350 // Make a initial Kalman paramaters for sector Alignemnt
3351 //
3352 fSectorParamA = new TMatrixD(6*36+6,1);
3353 fSectorParamC = new TMatrixD(6*36+6,1);
3354 fSectorCovarA = new TMatrixD(6*36+6,6*36+6);
3355 fSectorCovarC = new TMatrixD(6*36+6,6*36+6);
3356 //
3357 // set starting parameters at 0
3358 //
3359 for (Int_t isec=0;isec<37;isec++)
3360 for (Int_t ipar=0;ipar<6;ipar++){
3361 (*fSectorParamA)(isec*6+ipar,0) =0;
3362 (*fSectorParamC)(isec*6+ipar,0) =0;
3363 }
3364 //
3365 // set starting covariance
3366 //
3367 for (Int_t isec=0;isec<36;isec++)
3368 for (Int_t ipar=0;ipar<6;ipar++){
3369 if (ipar<3){
3370 (*fSectorCovarA)(isec*6+ipar,isec*6+ipar) =0.002*0.002; // 2 mrad
3371 (*fSectorCovarC)(isec*6+ipar,isec*6+ipar) =0.002*0.002;
3372 }
3373 if (ipar>=3){
3374 (*fSectorCovarA)(isec*6+ipar,isec*6+ipar) =0.02*0.02; // 0.2 mm
3375 (*fSectorCovarC)(isec*6+ipar,isec*6+ipar) =0.02*0.02;
3376 }
3377 }
3378 (*fSectorCovarA)(36*6+0,36*6+0) =0.04; // common shift y up-up
3379 (*fSectorCovarA)(36*6+1,36*6+1) =0.04; // common shift y down-down
3380 (*fSectorCovarA)(36*6+2,36*6+2) =0.04; // common shift y up-down
3381 (*fSectorCovarA)(36*6+3,36*6+3) =0.004; // common shift phi up-up
3382 (*fSectorCovarA)(36*6+4,36*6+4) =0.004; // common shift phi down-down
3383 (*fSectorCovarA)(36*6+5,36*6+5) =0.004; // common shift phi up-down
3384 //
3385 (*fSectorCovarC)(36*6+0,36*6+0) =0.04; // common shift y up-up
3386 (*fSectorCovarC)(36*6+1,36*6+1) =0.04; // common shift y down-down
3387 (*fSectorCovarC)(36*6+2,36*6+2) =0.04; // common shift y up-down
3388 (*fSectorCovarC)(36*6+3,36*6+3) =0.004; // common shift phi up-up
3389 (*fSectorCovarC)(36*6+4,36*6+4) =0.004; // common shift phi down-down
3390 (*fSectorCovarC)(36*6+5,36*6+5) =0.004; // common shift phi up-down
3391}
108953e9 3392
774a5ee9 3393void AliTPCcalibAlign::UpdateKalman(Int_t sector0, Int_t sector1, TMatrixD &p0, TMatrixD &c0, TMatrixD &p1, TMatrixD &c1){
3394 //
3395 // Update Kalman parameters
3396 // Note numbering from 0..36 0..17 IROC 18..35 OROC
3397 //
3398 //
3399 if (fSectorParamA==NULL) MakeKalman();
3400 if (CheckCovariance(c0)>0) return;
3401 if (CheckCovariance(c1)>0) return;
3402 const Int_t nelem = 6*36+6;
3403 //
3404 //
3405 static TMatrixD matHk(4,nelem); // vector to mesurement
3406 static TMatrixD measR(4,4); // measurement error
3407 static TMatrixD vecZk(4,1); // measurement
3408 //
3409 static TMatrixD vecYk(4,1); // Innovation or measurement residual
3410 static TMatrixD matHkT(nelem,4); // helper matrix Hk transpose
3411 static TMatrixD matSk(4,4); // Innovation (or residual) covariance
3412 static TMatrixD matKk(nelem,4); // Optimal Kalman gain
3413 static TMatrixD mat1(nelem,nelem); // update covariance matrix
3414 static TMatrixD covXk2(nelem,nelem); // helper matrix
3415 //
3416 TMatrixD *vOrig = 0;
3417 TMatrixD *cOrig = 0;
3418 vOrig = (sector0%36>=18) ? fSectorParamA:fSectorParamC;
3419 cOrig = (sector0%36>=18) ? fSectorCovarA:fSectorCovarC;
3420 //
3421 Int_t sec0= sector0%18;
3422 Int_t sec1= sector1%18;
3423 if (sector0>35) sec0+=18;
3424 if (sector1>35) sec1+=18;
3425 //
3426 TMatrixD vecXk(*vOrig); // X vector
3427 TMatrixD covXk(*cOrig); // X covariance
3428 //
3429 //Unit matrix
3430 //
3431 for (Int_t i=0;i<nelem;i++)
3432 for (Int_t j=0;j<nelem;j++){
3433 mat1(i,j)=0;
3434 if (i==j) mat1(i,j)=1;
3435 }
3436 //
3437 //
3438 // matHk - vector to measurement
3439 //
3440 for (Int_t i=0;i<4;i++)
3441 for (Int_t j=0;j<nelem;j++){
3442 matHk(i,j)=0;
3443 }
3444 //
3445 // Measurement
3446 // 0 - y
3447 // 1 - ky
3448 // 2 - z
3449 // 3 - kz
3450
3451 matHk(0,6*sec1+4) = 1.; // delta y
3452 matHk(1,6*sec1+0) = 1.; // delta ky
3453 matHk(2,6*sec1+5) = 1.; // delta z
3454 matHk(3,6*sec1+1) = 1.; // delta kz
3455 matHk(0,6*sec1+3) = p0(1,0); // delta x to delta y - through ky
3456 matHk(2,6*sec1+3) = p0(3,0); // delta x to delta z - thorugh kz
3457 matHk(2,6*sec1+2) = p0(0,0); // y to delta z - through psiz
3458 //
3459 matHk(0,6*sec0+4) = -1.; // delta y
3460 matHk(1,6*sec0+0) = -1.; // delta ky
3461 matHk(2,6*sec0+5) = -1.; // delta z
3462 matHk(3,6*sec0+1) = -1.; // delta kz
3463 matHk(0,6*sec0+3) = -p0(1,0); // delta x to delta y - through ky
3464 matHk(2,6*sec0+3) = -p0(3,0); // delta x to delta z - thorugh kz
3465 matHk(2,6*sec0+2) = -p0(0,0); // y to delta z - through psiz
3466
3467 Int_t dsec = (sector1%18)-(sector0%18);
3468 if (dsec<-2) dsec+=18;
3469 if (TMath::Abs(dsec)==1){
3470 //
3471 // Left right systematic fit part
3472 //
3473 Double_t dir = 0;
3474 if (dsec>0) dir= 1.;
3475 if (dsec<0) dir=-1.;
3476 if (sector0>35&&sector1>35){
3477 matHk(0,36*6+0)=dir;
3478 matHk(1,36*6+3+0)=dir;
3479 }
3480 if (sector0<36&&sector1<36){
3481 matHk(0,36*6+1)=dir;
3482 matHk(1,36*6+3+1)=dir;
3483 }
3484 if (sector0<36&&sector1>35){
3485 matHk(0,36*6+2)=dir;
3486 matHk(1,36*6+3+2)=dir;
3487 }
3488 if (sector0>35&&sector1<36){
3489 matHk(0,36*6+2)=-dir;
3490 matHk(1,36*6+3+2)=-dir;
3491 }
3492 }
3493 //
3494 //
3495 vecZk =(p1)-(p0); // measurement
3496 measR =(c1)+(c0); // error of measurement
3497 vecYk = vecZk-matHk*vecXk; // Innovation or measurement residual
3498 //
3499 //
3500 matHkT=matHk.T(); matHk.T();
3501 matSk = (matHk*(covXk*matHkT))+measR; // Innovation (or residual) covariance
3502 matSk.Invert();
3503 matKk = (covXk*matHkT)*matSk; // Optimal Kalman gain
3504 vecXk += matKk*vecYk; // updated vector
3505 covXk2= (mat1-(matKk*matHk));
3506 covXk = covXk2*covXk;
108953e9 3507
774a5ee9 3508 if (CheckCovariance(covXk)>0) return;
6f387311 3509
774a5ee9 3510 //
3511 //
3512 (*cOrig)=covXk;
3513 (*vOrig)=vecXk;
3514}
6f387311 3515
3516
774a5ee9 3517void AliTPCcalibAlign::UpdateKalman(TMatrixD &par0, TMatrixD &cov0, TMatrixD &par1, TMatrixD &cov1){
3518 //
3519 // Update kalman vector para0 with vector par1
3520 // Used for merging
3521 //
3522 Int_t nelem = 6*36+6;
3523 static TMatrixD matHk(nelem,nelem); // vector to mesurement
3524 static TMatrixD measR(nelem,nelem); // measurement error
3525 static TMatrixD vecZk(nelem,1); // measurement
3526 //
3527 static TMatrixD vecYk(nelem,1); // Innovation or measurement residual
3528 static TMatrixD matHkT(nelem,nelem); // helper matrix Hk transpose
3529 static TMatrixD matSk(nelem,nelem); // Innovation (or residual) covariance
3530 static TMatrixD matKk(nelem,nelem); // Optimal Kalman gain
3531 static TMatrixD mat1(nelem,nelem); // update covariance matrix
3532 static TMatrixD covXk2(nelem,nelem); // helper matrix
3533 //
3534 TMatrixD vecXk(par0); // X vector
3535 TMatrixD covXk(cov0); // X covariance
3536
3537 //
3538 //Unit matrix
3539 //
3540 for (Int_t i=0;i<nelem;i++)
3541 for (Int_t j=0;j<nelem;j++){
3542 mat1(i,j)=0;
3543 if (i==j) mat1(i,j)=1;
3544 }
3545 matHk = mat1; // unit matrix
3546 //
3547 vecZk = par1; // measurement
3548 measR = cov1; // error of measurement
3549 vecYk = vecZk-matHk*vecXk; // Innovation or measurement residual
3550 //
3551 matHkT=matHk.T(); matHk.T();
3552 matSk = (matHk*(covXk*matHkT))+measR; // Innovation (or residual) covariance
3553 matSk.Invert();
3554 matKk = (covXk*matHkT)*matSk; // Optimal Kalman gain
3555 //matKk.Print();
3556 vecXk += matKk*vecYk; // updated vector
3557 covXk2= (mat1-(matKk*matHk));
3558 covXk = covXk2*covXk;
3559 //
3560 CheckCovariance(cov0);
3561 CheckCovariance(cov1);
3562 CheckCovariance(covXk);
3563 //
3564 par0 = vecXk; // update measurement param
3565 cov0 = covXk; // update measurement covar
3566}
6f387311 3567
3568
6f387311 3569
6f387311 3570
774a5ee9 3571Int_t AliTPCcalibAlign::CheckCovariance(TMatrixD &covar){
3572 //
3573 // check the consistency of covariance matrix
3574 //
3575 Int_t ncols = covar.GetNcols();
3576 Int_t nrows= covar.GetNrows();
3577 const Float_t kEpsilon = 0.0001;
3578 Int_t nerrors =0;
3579 //
3580 //
3581 //
3582 if (nrows!=ncols) {
3583 printf("Error 0 - wrong matrix\n");
3584 nerrors++;
3585 }
3586 //
3587 // 1. Check that the non diagonal elements
3588 //
3589 for (Int_t i0=0;i0<nrows;i0++)
3590 for (Int_t i1=i0+1;i1<ncols;i1++){
3591 Double_t r0 = covar(i0,i1)/TMath::Sqrt(covar(i0,i0)*covar(i1,i1));
3592 Double_t r1 = covar(i1,i0)/TMath::Sqrt(covar(i0,i0)*covar(i1,i1));
3593 if (TMath::Abs(r0-r1)>kEpsilon){
3594 printf("Error 1 - non symetric matrix %d\t%d\t%f",i0,i1,r1-r0);
3595 nerrors++;
3596 }
3597 if (TMath::Abs(r0)>=1){
3598 printf("Error 2 - Wrong correlation %d\t%d\t%f\n",i0,i1,r0);
3599 nerrors++;
3600 }
3601 if (TMath::Abs(r1)>=1){
3602 printf("Error 3 - Wrong correlation %d\t%d\t%f\n",i0,i1,r1);
3603 nerrors++;
3604 }
3605 }
3606 return nerrors;
3607}
6f387311 3608
3609
774a5ee9 3610
3611void AliTPCcalibAlign::MakeReportDy(TFile *output){
3612 //
3613 // Draw histogram of dY
3614 //
3615 Int_t kmicolors[10]={1,2,3,4,6,7,8,9,10,11};
3616 Int_t kmimarkers[10]={21,22,23,24,25,26,27,28,29,30};
3617
3618 AliTPCcalibAlign *align = this;
3619 TVectorD vecOOP(36);
3620 TVectorD vecOOM(36);
3621 TVectorD vecOIP(36);
3622 TVectorD vecOIM(36);
3623 TVectorD vecOIS(36);
3624 TVectorD vecSec(36);
3625 TCanvas * cOROCdy = new TCanvas("OROC dy","OROC dy",900,600);
3626 cOROCdy->Divide(6,6);
3627 TCanvas * cIROCdy = new TCanvas("IROC dy","IROC dy",900,600);
3628 cIROCdy->Divide(6,6);
3629 TCanvas * cDy = new TCanvas("Dy","Dy",600,700);
3630 cDy->Divide(1,2);
3631 for (Int_t isec=0;isec<36;isec++){
3632 Bool_t isDraw=kFALSE;
3633 vecSec(isec)=isec;
3634 cOROCdy->cd(isec+1);
3635 Int_t secPlus = (isec%18==17)? isec-17:isec+1;
3636 Int_t secMinus= (isec%18==0) ? isec+17:isec-1;
3637 printf("%d\t%d\t%d\n",isec,secPlus,secMinus);
3638 TH1 * hisOOP= align->GetHisto(AliTPCcalibAlign::kY,isec+36,secPlus+36);
3639 TH1 * hisOOM= align->GetHisto(AliTPCcalibAlign::kY,isec+36,secMinus+36);
3640 TH1 * hisOIS= align->GetHisto(AliTPCcalibAlign::kY,isec+36,isec);
3641
3642 if (hisOIS) {
3643 hisOIS = (TH1F*)(hisOIS->Clone());
3644 hisOIS->SetDirectory(0);
3645 hisOIS->Scale(1./(hisOIS->GetMaximum()+1));
3646 hisOIS->SetLineColor(kmicolors[0]);
3647 hisOIS->Draw();
3648 isDraw = kTRUE;
3649 vecOIS(isec)=10*hisOIS->GetMean();
3650 }
3651 if (hisOOP) {
3652 hisOOP = (TH1F*)(hisOOP->Clone());
3653 hisOOP->SetDirectory(0);
3654 hisOOP->Scale(1./(hisOOP->GetMaximum()+1));
3655 hisOOP->SetLineColor(kmicolors[1]);
3656 if (isDraw) hisOOP->Draw("same");
3657 if (!isDraw) {hisOOP->Draw(""); isDraw=kTRUE;}
3658 vecOOP(isec)=10*hisOOP->GetMean();
3659 }
3660 if (hisOOM) {
3661 hisOOM = (TH1F*)(hisOOM->Clone());
3662 hisOOM->SetDirectory(0);
3663 hisOOM->Scale(1/(hisOOM->GetMaximum()+1));
3664 hisOOM->SetLineColor(kmicolors[3]);
3665 if (isDraw) hisOOM->Draw("same");
3666 if (!isDraw) {hisOOM->Draw(""); isDraw=kTRUE;}
3667 vecOOM(isec)=10*hisOOM->GetMean();
3668 }
3669 }
3670 //
3671 //
3672 for (Int_t isec=0;isec<36;isec++){
3673 Bool_t isDraw=kFALSE;
3674 cIROCdy->cd(isec+1);
3675 Int_t secPlus = (isec%18==17)? isec-17:isec+1;
3676 Int_t secMinus= (isec%18==0) ? isec+17:isec-1;
3677 printf("%d\t%d\t%d\n",isec,secPlus,secMinus);
3678 TH1 * hisOIP= align->GetHisto(AliTPCcalibAlign::kY,isec+36,secPlus);
3679 TH1 * hisOIM= align->GetHisto(AliTPCcalibAlign::kY,isec+36,secMinus);
3680 TH1 * hisOIS= align->GetHisto(AliTPCcalibAlign::kY,isec+36,isec);
3681 if (hisOIS) {
3682 hisOIS = (TH1F*)(hisOIS->Clone());
3683 hisOIS->SetDirectory(0);
3684 hisOIS->Scale(1./(hisOIS->GetMaximum()+1));
3685 hisOIS->SetLineColor(kmicolors[0]);
3686 hisOIS->Draw();
3687 isDraw = kTRUE;
3688 vecOIS(isec)=10*hisOIS->GetMean();
3689 }
3690 if (hisOIP) {
3691 hisOIP = (TH1F*)(hisOIP->Clone());
3692 hisOIP->SetDirectory(0);
3693 hisOIP->Scale(1./(hisOIP->GetMaximum()+1));
3694 hisOIP->SetLineColor(kmicolors[1]);
3695 if (isDraw) hisOIP->Draw("same");
3696 if (!isDraw) {hisOIP->Draw(""); isDraw=kTRUE;}
3697 hisOIP->Draw("same");
3698 vecOIP(isec)=10*hisOIP->GetMean();
3699 }
3700 if (hisOIM) {
3701 hisOIM = (TH1F*)(hisOIM->Clone());
3702 hisOIM->SetDirectory(0);
3703 hisOIM->Scale(1/(hisOIM->GetMaximum()+1));
3704 hisOIM->SetLineColor(kmicolors[3]);
3705 if (isDraw) hisOIM->Draw("same");
3706 if (!isDraw) {hisOIM->Draw(""); isDraw=kTRUE;}
3707 vecOIM(isec)=10*hisOIM->GetMean();
3708 }
3709 }
3710 TGraph* grOIM = new TGraph(36,vecSec.GetMatrixArray(),vecOIM.GetMatrixArray());
3711 TGraph* grOIP = new TGraph(36,vecSec.GetMatrixArray(),vecOIP.GetMatrixArray());
3712 TGraph* grOIS = new TGraph(36,vecSec.GetMatrixArray(),vecOIS.GetMatrixArray());
3713 TGraph* grOOM = new TGraph(36,vecSec.GetMatrixArray(),vecOOM.GetMatrixArray());
3714 TGraph* grOOP = new TGraph(36,vecSec.GetMatrixArray(),vecOOP.GetMatrixArray());
3715 //
3716 grOIS->SetMarkerStyle(kmimarkers[0]);
3717 grOIP->SetMarkerStyle(kmimarkers[1]);
3718 grOIM->SetMarkerStyle(kmimarkers[3]);
3719 grOOP->SetMarkerStyle(kmimarkers[1]);
3720 grOOM->SetMarkerStyle(kmimarkers[3]);
3721 grOIS->SetMarkerColor(kmicolors[0]);
3722 grOIP->SetMarkerColor(kmicolors[1]);
3723 grOIM->SetMarkerColor(kmicolors[3]);
3724 grOOP->SetMarkerColor(kmicolors[1]);
3725 grOOM->SetMarkerColor(kmicolors[3]);
3726 grOIS->SetLineColor(kmicolors[0]);
3727 grOIP->SetLineColor(kmicolors[1]);
3728 grOIM->SetLineColor(kmicolors[3]);
3729 grOOP->SetLineColor(kmicolors[1]);
3730 grOOM->SetLineColor(kmicolors[3]);
3731 grOIS->SetMaximum(1.5);
3732 grOIS->SetMinimum(-1.5);
3733 grOIS->GetXaxis()->SetTitle("Sector number");
3734 grOIS->GetYaxis()->SetTitle("#Delta_{y} (mm)");
3735
3736 cDy->cd(1);
3737 grOIS->Draw("apl");
3738 grOIM->Draw("pl");
3739 grOIP->Draw("pl");
3740 cDy->cd(2);
3741 grOIS->Draw("apl");
3742 grOOM->Draw("pl");
3743 grOOP->Draw("pl");
3744 cOROCdy->SaveAs("picAlign/OROCOROCdy.eps");
3745 cOROCdy->SaveAs("picAlign/OROCOROCdy.gif");
3746 cOROCdy->SaveAs("picAlign/OROCOROCdy.root");
3747 //
3748 cIROCdy->SaveAs("picAlign/OROCIROCdy.eps");
3749 cIROCdy->SaveAs("picAlign/OROCIROCdy.gif");
3750 cIROCdy->SaveAs("picAlign/OROCIROCdy.root");
3751 //
3752 cDy->SaveAs("picAlign/Sectordy.eps");
3753 cDy->SaveAs("picAlign/Sectordy.gif");
3754 cDy->SaveAs("picAlign/Sectordy.root");
3755 if (output){
3756 output->cd();
3757 cOROCdy->Write("OROCOROCDy");
3758 cIROCdy->Write("OROCIROCDy");
3759 cDy->Write("SectorDy");
3760 }
6f387311 3761}
774a5ee9 3762
3763void AliTPCcalibAlign::MakeReportDyPhi(TFile */*output*/){
3764 //
3765 //
3766 //
3767 Int_t kmicolors[10]={1,2,3,4,6,7,8,9,10,11};
3768 Int_t kmimarkers[10]={21,22,23,24,25,26,27,28,29,30};
3769
3770 AliTPCcalibAlign *align = this;
3771 TCanvas * cOROCdyPhi = new TCanvas("OROC dyphi","OROC dyphi",900,600);
3772 cOROCdyPhi->Divide(6,6);
3773 for (Int_t isec=0;isec<36;isec++){
3774 cOROCdyPhi->cd(isec+1);
3775 Int_t secPlus = (isec%18==17)? isec-17:isec+1;
3776 Int_t secMinus= (isec%18==0) ? isec+17:isec-1;
3777 //printf("%d\t%d\t%d\n",isec,secPlus,secMinus);
3778 TH2F *htemp=0;
3779 TProfile * profdyphiOOP=0,*profdyphiOOM=0,*profdyphiOOS=0;
3780 htemp = (TH2F*) (align->GetHisto(AliTPCcalibAlign::kYPhi,isec+36,secPlus+36));
3781 if (htemp) profdyphiOOP= htemp->ProfileX();
3782 htemp = (TH2F*)(align->GetHisto(AliTPCcalibAlign::kYPhi,isec+36,secMinus+36));
3783 if (htemp) profdyphiOOM= htemp->ProfileX();
3784 htemp = (TH2F*)(align->GetHisto(AliTPCcalibAlign::kYPhi,isec+36,isec));
3785 if (htemp) profdyphiOOS= htemp->ProfileX();
3786
3787 if (profdyphiOOS){
3788 profdyphiOOS->SetLineColor(kmicolors[0]);
3789 profdyphiOOS->SetMarkerStyle(kmimarkers[0]);
3790 profdyphiOOS->SetMarkerSize(0.2);
3791 profdyphiOOS->SetMaximum(0.5);
3792 profdyphiOOS->SetMinimum(-0.5);
3793 profdyphiOOS->SetXTitle("tan(#phi)");
3794 profdyphiOOS->SetYTitle("#DeltaY (cm)");
3795 }
3796 if (profdyphiOOP){
3797 profdyphiOOP->SetLineColor(kmicolors[1]);
3798 profdyphiOOP->SetMarkerStyle(kmimarkers[1]);
3799 profdyphiOOP->SetMarkerSize(0.2);
3800 }
3801 if (profdyphiOOM){
3802 profdyphiOOM->SetLineColor(kmicolors[3]);
3803 profdyphiOOM->SetMarkerStyle(kmimarkers[3]);
3804 profdyphiOOM->SetMarkerSize(0.2);
3805 }
3806 if (profdyphiOOS){
3807 profdyphiOOS->Draw();
3808 }else{
3809 if (profdyphiOOM) profdyphiOOM->Draw("");
3810 if (profdyphiOOP) profdyphiOOP->Draw("");
3811 }
3812 if (profdyphiOOM) profdyphiOOM->Draw("same");
3813 if (profdyphiOOP) profdyphiOOP->Draw("same");
3814
3815 }
6f387311 3816}
3817
034e5c8c 3818