]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONAlignment.cxx
- Disentangle masks effect from trigger chamber efficiency estimation.
[u/mrichter/AliRoot.git] / MUON / AliMUONAlignment.cxx
CommitLineData
010eb601 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/* $Id$ */
17
18//-----------------------------------------------------------------------------
c25af45b 19/// \class AliMUONAlignment
56218672 20/// Alignment class for the ALICE DiMuon spectrometer
010eb601 21///
56218672 22/// MUON specific alignment class which interface to AliMillepede.
010eb601 23/// For each track ProcessTrack calculates the local and global derivatives
96ebe67e 24/// at each cluster and fill the corresponding local equations. Provide methods
56218672 25/// for fixing or constraining detection elements for best results.
010eb601 26///
27/// \author Bruce Becker, Javier Castillo
28//-----------------------------------------------------------------------------
29
30#include "AliMUONAlignment.h"
31#include "AliMUONTrack.h"
010eb601 32#include "AliMUONTrackParam.h"
96ebe67e 33#include "AliMUONVCluster.h"
010eb601 34#include "AliMUONGeometryTransformer.h"
35#include "AliMUONGeometryModuleTransformer.h"
36#include "AliMUONGeometryDetElement.h"
010eb601 37#include "AliMUONGeometryBuilder.h"
010eb601 38#include "AliMillepede.h"
39
8c95578a 40#include "AliMpExMap.h"
630711ed 41#include "AliMpExMapIterator.h"
8c95578a 42
4818a9b7 43#include "AliAlignObjMatrix.h"
8c95578a 44#include "AliLog.h"
45
2060b217 46#include "TMath.h"
4818a9b7 47#include "TMatrixDSym.h"
ce8cd162 48#include "TClonesArray.h"
8c95578a 49
78649106 50/// \cond CLASSIMP
010eb601 51ClassImp(AliMUONAlignment)
78649106 52/// \endcond
53
56218672 54//_____________________________________________________________________
55// static variables
56Int_t AliMUONAlignment::fgNDetElem = 4*2+4*2+18*2+26*2+26*2;
57Int_t AliMUONAlignment::fgNDetElemCh[10] = {4,4,4,4,18,18,26,26,26,26};
58Int_t AliMUONAlignment::fgSNDetElemCh[10] = {4,8,12,16,34,52,78,104,130,156};
59Int_t AliMUONAlignment::fgNParCh = 4;
60Int_t AliMUONAlignment::fgNTrkMod = 16;
61Int_t AliMUONAlignment::fgNCh = 10;
62Int_t AliMUONAlignment::fgNSt = 5;
63
64//_____________________________________________________________________
65AliMUONAlignment::AliMUONAlignment()
8395bff1 66 : TObject(),
67 fBFieldOn(kTRUE),
56218672 68 fStartFac(256.),
69 fResCutInitial(100.),
8395bff1 70 fResCut(100.),
71 fMillepede(0),
8395bff1 72 fTrack(0),
96ebe67e 73 fCluster(0),
8395bff1 74 fTrackParam(0),
75 fNGlobal(fgNDetElem*fgNParCh),
76 fNLocal(4),
77 fNStdDev(3),
78 fDetElemId(0),
79 fDetElemNumber(0),
80 fPhi(0.),
81 fCosPhi(1.),
82 fSinPhi(0.),
56218672 83 fTrackRecord(),
8395bff1 84 fTransform(0)
010eb601 85{
56218672 86
87 fSigma[0] = 1.5e-1;
010eb601 88 fSigma[1] = 1.0e-2;
010eb601 89
64e2c144 90 AliInfo(Form("fSigma[0]: %f\t fSigma[1]: %f",fSigma[0],fSigma[1]));
91
723b0b5b 92 fDoF[0] = kTRUE; fDoF[1] = kTRUE; fDoF[2] = kTRUE; fDoF[3] = kTRUE;
93 fAllowVar[0] = 0.05; fAllowVar[1] = 0.05; fAllowVar[2] = 0.001; fAllowVar[3] = 0.5;
56218672 94
010eb601 95 AliInfo(Form("fAllowVar[0]: %f\t fAllowVar[1]: %f\t fPhi: %f\t fgNDetElem: %i\t fNGlobal: %i\t fNLocal: %i",fAllowVar[0],fAllowVar[1],fPhi,fgNDetElem,fNGlobal,fNLocal));
96
97 fMillepede = new AliMillepede();
98
99 Init(fNGlobal, fNLocal, fNStdDev);
100
101 ResetLocalEquation();
102 AliInfo("Parameters initialized to zero");
103
104}
105
56218672 106//_____________________________________________________________________
107AliMUONAlignment::~AliMUONAlignment()
108{}
010eb601 109
56218672 110//_____________________________________________________________________
111void AliMUONAlignment::Init(
112 Int_t nGlobal, /* number of global paramers */
113 Int_t nLocal, /* number of local parameters */
114 Int_t nStdDev /* std dev cut */ )
010eb601 115{
116 /// Initialization of AliMillepede. Fix parameters, define constraints ...
117 fMillepede->InitMille(nGlobal,nLocal,nStdDev,fResCut,fResCutInitial);
118
56218672 119 // Bool_t bStOnOff[5] = {kTRUE,kTRUE,kTRUE,kTRUE,kTRUE};
120 // Bool_t bChOnOff[10] = {kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE};
121 // Bool_t bSpecLROnOff[2] = {kTRUE,kTRUE};
010eb601 122
56218672 123 // AllowVariations(bChOnOff);
010eb601 124
125 // Fix parameters or add constraints here
56218672 126 // for (Int_t iSt=0; iSt<5; iSt++)
127 // { if (!bStOnOff[iSt]) FixStation(iSt+1); }
128
129 // for (Int_t iCh=0; iCh<10; iCh++)
130 // { if (!bChOnOff[iCh]) FixChamber(iCh+1); }
010eb601 131
d8ad38e5 132// FixHalfSpectrometer(bChOnOff,bSpecLROnOff);
3b2890be 133
010eb601 134 ResetConstraints();
56218672 135
3b2890be 136 // Define global constrains to be applied
137 // X, Y, P, XvsZ, YvsZ, PvsZ, XvsY, YvsY, PvsY
138 Bool_t bVarXYT[9] = {kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE,kTRUE};
139 Bool_t bDetTLBR[4] = {kFALSE,kTRUE,kFALSE,kTRUE};
140 // AddConstraints(bStOnOff,bVarXYT,bDetTLBR,bSpecLROnOff);
141
142 // Other possible way to add constrains
010eb601 143 bVarXYT[0] = kFALSE; bVarXYT[1] = kFALSE; bVarXYT[2] = kTRUE;
144 bDetTLBR[0] = kFALSE; bDetTLBR[1] = kTRUE; bDetTLBR[2] = kFALSE; bDetTLBR[3] = kFALSE;
56218672 145 // AddConstraints(bStOnOff,bVarXYT,bDetTLBR);
3b2890be 146
147 bVarXYT[0] = kTRUE; bVarXYT[1] = kTRUE; bVarXYT[2] = kFALSE;
148 // AddConstraints(bStOnOff,bVarXYT);
56218672 149
010eb601 150 // Set iterations
56218672 151 if (fStartFac>1) fMillepede->SetIterations(fStartFac);
010eb601 152}
153
56218672 154//_____________________________________________________________________
155void AliMUONAlignment::FixStation(Int_t iSt)
156{
010eb601 157 /// Fix all detection elements of station iSt
56218672 158 Int_t iDetElemFirst = (iSt>1) ? fgSNDetElemCh[2*(iSt-1)-1] : 0;
159 Int_t iDetElemLast = fgSNDetElemCh[2*(iSt)-1];
160 for (Int_t i = iDetElemFirst; i < iDetElemLast; i++)
161 {
010eb601 162 FixParameter(i*fgNParCh+0, 0.0);
163 FixParameter(i*fgNParCh+1, 0.0);
164 FixParameter(i*fgNParCh+2, 0.0);
723b0b5b 165 FixParameter(i*fgNParCh+3, 0.0);
010eb601 166 }
56218672 167
010eb601 168}
169
56218672 170//_____________________________________________________________________
171void AliMUONAlignment::FixChamber(Int_t iCh)
172{
d8ad38e5 173 /// Fix all detection elements of chamber iCh
56218672 174 Int_t iDetElemFirst = (iCh>1) ? fgSNDetElemCh[iCh-2] : 0;
175 Int_t iDetElemLast = fgSNDetElemCh[iCh-1];
176 for (Int_t i = iDetElemFirst; i < iDetElemLast; i++)
177 {
d8ad38e5 178 FixParameter(i*fgNParCh+0, 0.0);
179 FixParameter(i*fgNParCh+1, 0.0);
180 FixParameter(i*fgNParCh+2, 0.0);
723b0b5b 181 FixParameter(i*fgNParCh+3, 0.0);
182 }
183}
184
56218672 185//_____________________________________________________________________
186void AliMUONAlignment::FixDetElem(Int_t iDetElemId, TString sVarXYT)
187{
188
723b0b5b 189 /// Fix a given detection element
190 Int_t iDetElemNumber = iDetElemId%100;
56218672 191 for (int iCh=0; iCh<iDetElemId/100-1; iCh++)
192 {
723b0b5b 193 iDetElemNumber += fgNDetElemCh[iCh];
194 }
56218672 195
196 if (sVarXYT.Contains("X"))
197 {
198 // X constraint
723b0b5b 199 FixParameter(iDetElemNumber*fgNParCh+0, 0.0);
200 }
56218672 201
202 if (sVarXYT.Contains("Y"))
203 {
204 // Y constraint
723b0b5b 205 FixParameter(iDetElemNumber*fgNParCh+1, 0.0);
206 }
56218672 207
208 if (sVarXYT.Contains("T"))
209 {
210 // T constraint
723b0b5b 211 FixParameter(iDetElemNumber*fgNParCh+2, 0.0);
212 }
56218672 213
214 if (sVarXYT.Contains("Z"))
215 {
216 // T constraint
723b0b5b 217 FixParameter(iDetElemNumber*fgNParCh+3, 0.0);
d8ad38e5 218 }
56218672 219
d8ad38e5 220}
221
56218672 222//_____________________________________________________________________
223void AliMUONAlignment::FixHalfSpectrometer(const Bool_t *lChOnOff, const Bool_t *lSpecLROnOff)
224{
225
3b2890be 226 /// Fix left or right detector
56218672 227 for (Int_t i = 0; i < fgNDetElem; i++)
228 {
229
3b2890be 230 Int_t iCh=0;
56218672 231 for (iCh=1; iCh<=fgNCh; iCh++)
232 { if (i<fgSNDetElemCh[iCh-1]) break; }
233
234 if (lChOnOff[iCh-1])
235 {
236
3b2890be 237 Int_t lDetElemNumber = (iCh==1) ? i : i-fgSNDetElemCh[iCh-2];
56218672 238 if (iCh>=1 && iCh<=4)
239 {
240
241 if ((lDetElemNumber==1 || lDetElemNumber==2) && !lSpecLROnOff[0])
242 {
243 // From track crossings
244 FixParameter(i*fgNParCh+0, 0.0);
245 FixParameter(i*fgNParCh+1, 0.0);
246 FixParameter(i*fgNParCh+2, 0.0);
247 FixParameter(i*fgNParCh+3, 0.0);
248 }
249
250 if ((lDetElemNumber==0 || lDetElemNumber==3) && !lSpecLROnOff[1])
251 {
252 // From track crossings
253 FixParameter(i*fgNParCh+0, 0.0);
254 FixParameter(i*fgNParCh+1, 0.0);
255 FixParameter(i*fgNParCh+2, 0.0);
256 FixParameter(i*fgNParCh+3, 0.0);
257 }
258
3b2890be 259 }
56218672 260
261 if (iCh>=5 && iCh<=6)
262 {
263
264 if ((lDetElemNumber>=5&&lDetElemNumber<=13) && !lSpecLROnOff[0])
265 {
266 FixParameter(i*fgNParCh+0, 0.0);
267 FixParameter(i*fgNParCh+1, 0.0);
268 FixParameter(i*fgNParCh+2, 0.0);
269 FixParameter(i*fgNParCh+3, 0.0);
270 }
271
272 if (((lDetElemNumber>=0&&lDetElemNumber<=4) ||
273 (lDetElemNumber>=14&&lDetElemNumber<=17)) && !lSpecLROnOff[1])
274 {
275
276 FixParameter(i*fgNParCh+0, 0.0);
277 FixParameter(i*fgNParCh+1, 0.0);
278 FixParameter(i*fgNParCh+2, 0.0);
279 FixParameter(i*fgNParCh+3, 0.0);
280 }
281
3b2890be 282 }
56218672 283
284 if (iCh>=7 && iCh<=10)
285 {
286
287 if ((lDetElemNumber>=7&&lDetElemNumber<=19) && !lSpecLROnOff[0])
288 {
289 FixParameter(i*fgNParCh+0, 0.0);
290 FixParameter(i*fgNParCh+1, 0.0);
291 FixParameter(i*fgNParCh+2, 0.0);
292 FixParameter(i*fgNParCh+3, 0.0);
293 }
294
295 if (((lDetElemNumber>=0&&lDetElemNumber<=6) ||
296 (lDetElemNumber>=20&&lDetElemNumber<=25)) && !lSpecLROnOff[1])
297 {
298 FixParameter(i*fgNParCh+0, 0.0);
299 FixParameter(i*fgNParCh+1, 0.0);
300 FixParameter(i*fgNParCh+2, 0.0);
301 FixParameter(i*fgNParCh+3, 0.0);
302 }
303
3b2890be 304 }
56218672 305
3b2890be 306 }
56218672 307
3b2890be 308 }
56218672 309
3b2890be 310}
311
56218672 312//______________________________________________________________________
313void AliMUONAlignment::SetNonLinear(const Bool_t *lChOnOff, const Bool_t *lVarXYT)
314{
315
d8ad38e5 316 /// Set non linear parameter flag selected chambers and degrees of freedom
56218672 317 for (Int_t i = 0; i < fgNDetElem; i++)
318 {
319
010eb601 320 Int_t iCh=0;
56218672 321 for (iCh=1; iCh<=fgNCh; iCh++)
322 { if (i<fgSNDetElemCh[iCh-1]) break; }
323
324 if (lChOnOff[iCh-1])
325 {
326
327 if (lVarXYT[0])
328 {
329 // X constraint
330 SetNonLinear(i*fgNParCh+0);
010eb601 331 }
56218672 332
333 if (lVarXYT[1])
334 {
335 // Y constraint
336 SetNonLinear(i*fgNParCh+1);
010eb601 337 }
56218672 338
339 if (lVarXYT[2])
340 {
341 // T constraint
342 SetNonLinear(i*fgNParCh+2);
010eb601 343 }
56218672 344
345 if (lVarXYT[3])
346 {
347 // Z constraint
348 SetNonLinear(i*fgNParCh+3);
723b0b5b 349 }
56218672 350
010eb601 351 }
56218672 352
010eb601 353 }
56218672 354
010eb601 355}
356
56218672 357//______________________________________________________________________
358void AliMUONAlignment::AddConstraints(const Bool_t *lChOnOff, const Bool_t *lVarXYT)
359{
360
361 /// Add constraint equations for selected chambers and degrees of freedom
362 for (Int_t i = 0; i < fgNDetElem; i++)
363 {
364
010eb601 365 Int_t iCh=0;
56218672 366 for (iCh=1; iCh<=fgNCh; iCh++)
367 {
010eb601 368 if (i<fgSNDetElemCh[iCh-1]) break;
369 }
56218672 370
371 if (lChOnOff[iCh-1])
372 {
373 if (lVarXYT[0])
374 {
375 // X constraint
376 fConstraintX[i*fgNParCh+0]=1.0;
010eb601 377 }
56218672 378
379 if (lVarXYT[1])
380 {
381 // Y constraint
382 fConstraintY[i*fgNParCh+1]=1.0;
010eb601 383 }
56218672 384
385 if (lVarXYT[2])
386 {
387 // T constraint
388 fConstraintP[i*fgNParCh+2]=1.0;
010eb601 389 }
56218672 390 // if (lVarXYT[3]) { // Z constraint
391 // fConstraintP[i*fgNParCh+3]=1.0;
392 // }
393
010eb601 394 }
395 }
56218672 396
397 if (lVarXYT[0])
398 {
399 // X constraint
010eb601 400 AddConstraint(fConstraintX,0.0);
401 }
56218672 402
403 if (lVarXYT[1])
404 {
405 // Y constraint
010eb601 406 AddConstraint(fConstraintY,0.0);
407 }
56218672 408
409 if (lVarXYT[2])
410 {
411 // T constraint
010eb601 412 AddConstraint(fConstraintP,0.0);
413 }
56218672 414
723b0b5b 415// if (lVarXYT[3]) { // Z constraint
416// AddConstraint(fConstraintP,0.0);
417// }
010eb601 418}
419
56218672 420//______________________________________________________________________
421void AliMUONAlignment::AddConstraints(const Bool_t *lChOnOff, const Bool_t *lVarXYT, const Bool_t *lDetTLBR, const Bool_t *lSpecLROnOff)
422{
423 /// Add constraint equations for selected chambers, degrees of freedom and detector half
3b2890be 424 Double_t lDetElemLocX = 0.;
425 Double_t lDetElemLocY = 0.;
426 Double_t lDetElemLocZ = 0.;
427 Double_t lDetElemGloX = 0.;
428 Double_t lDetElemGloY = 0.;
429 Double_t lDetElemGloZ = 0.;
430 Double_t lMeanY = 0.;
431 Double_t lSigmaY = 0.;
432 Double_t lMeanZ = 0.;
433 Double_t lSigmaZ = 0.;
434 Int_t lNDetElem = 0;
56218672 435 for (Int_t i = 0; i < fgNDetElem; i++)
436 {
437
010eb601 438 Int_t iCh=0;
439 for (iCh=1; iCh<=fgNCh; iCh++){
440 if (i<fgSNDetElemCh[iCh-1]) break;
441 }
56218672 442 if (lChOnOff[iCh-1]){
3b2890be 443 Int_t lDetElemNumber = (iCh==1) ? i : i-fgSNDetElemCh[iCh-2];
444 Int_t lDetElemId = iCh*100+lDetElemNumber;
445 fTransform->Local2Global(lDetElemId,lDetElemLocX,lDetElemLocY,lDetElemLocZ,
56218672 446 lDetElemGloX,lDetElemGloY,lDetElemGloZ);
3b2890be 447 if (iCh>=1 && iCh<=4){
56218672 448 if ((lDetElemNumber==1 || lDetElemNumber==2) && lSpecLROnOff[0]){ // From track crossings
449 lMeanY += lDetElemGloY;
450 lSigmaY += lDetElemGloY*lDetElemGloY;
451 lMeanZ += lDetElemGloZ;
452 lSigmaZ += lDetElemGloZ*lDetElemGloZ;
453 lNDetElem++;
454 }
455 if ((lDetElemNumber==0 || lDetElemNumber==3) && lSpecLROnOff[1]){ // From track crossings
456 lMeanY += lDetElemGloY;
457 lSigmaY += lDetElemGloY*lDetElemGloY;
458 lMeanZ += lDetElemGloZ;
459 lSigmaZ += lDetElemGloZ*lDetElemGloZ;
460 lNDetElem++;
461 }
3b2890be 462 }
463 if (iCh>=5 && iCh<=6){
56218672 464 if ((lDetElemNumber>=5&&lDetElemNumber<=13) && lSpecLROnOff[0]){
465 lMeanY += lDetElemGloY;
466 lSigmaY += lDetElemGloY*lDetElemGloY;
467 lMeanZ += lDetElemGloZ;
468 lSigmaZ += lDetElemGloZ*lDetElemGloZ;
469 lNDetElem++;
470 }
471 if (((lDetElemNumber>=0&&lDetElemNumber<=4) ||
472 (lDetElemNumber>=14&&lDetElemNumber<=17)) && lSpecLROnOff[1]){
473 lMeanY += lDetElemGloY;
474 lSigmaY += lDetElemGloY*lDetElemGloY;
475 lMeanZ += lDetElemGloZ;
476 lSigmaZ += lDetElemGloZ*lDetElemGloZ;
477 lNDetElem++;
478 }
3b2890be 479 }
480 if (iCh>=7 && iCh<=10){
56218672 481 if ((lDetElemNumber>=7&&lDetElemNumber<=19) && lSpecLROnOff[0]){
482 lMeanY += lDetElemGloY;
483 lSigmaY += lDetElemGloY*lDetElemGloY;
484 lMeanZ += lDetElemGloZ;
485 lSigmaZ += lDetElemGloZ*lDetElemGloZ;
486 lNDetElem++;
487 }
488 if (((lDetElemNumber>=0&&lDetElemNumber<=6) ||
489 (lDetElemNumber>=20&&lDetElemNumber<=25)) && lSpecLROnOff[1]){
490 lMeanY += lDetElemGloY;
491 lSigmaY += lDetElemGloY*lDetElemGloY;
492 lMeanZ += lDetElemGloZ;
493 lSigmaZ += lDetElemGloZ*lDetElemGloZ;
494 lNDetElem++;
495 }
3b2890be 496 }
497 }
498 }
499 lMeanY /= lNDetElem;
500 lSigmaY /= lNDetElem;
501 lSigmaY = TMath::Sqrt(lSigmaY-lMeanY*lMeanY);
502 lMeanZ /= lNDetElem;
503 lSigmaZ /= lNDetElem;
504 lSigmaZ = TMath::Sqrt(lSigmaZ-lMeanZ*lMeanZ);
56218672 505 AliInfo(Form("Used %i DetElem, MeanZ= %f , SigmaZ= %f", lNDetElem,lMeanZ,lSigmaZ));
3b2890be 506
56218672 507 for (Int_t i = 0; i < fgNDetElem; i++){
3b2890be 508 Int_t iCh=0;
509 for (iCh=1; iCh<=fgNCh; iCh++){
510 if (i<fgSNDetElemCh[iCh-1]) break;
511 }
d8ad38e5 512 if (lChOnOff[iCh-1]){
3b2890be 513 Int_t lDetElemNumber = (iCh==1) ? i : i-fgSNDetElemCh[iCh-2];
514 Int_t lDetElemId = iCh*100+lDetElemNumber;
515 fTransform->Local2Global(lDetElemId,lDetElemLocX,lDetElemLocY,lDetElemLocZ,
56218672 516 lDetElemGloX,lDetElemGloY,lDetElemGloZ);
010eb601 517 if (lVarXYT[0]) { // X constraint
56218672 518 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintXT,0); // Top half
519 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintXL,0); // Left half
520 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintXB,0); // Bottom half
521 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintXR,0); // Right half
010eb601 522 }
3b2890be 523 if (lVarXYT[1]) { // Y constraint
56218672 524 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintYT,1); // Top half
525 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintYL,1); // Left half
526 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintYB,1); // Bottom half
527 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintYR,1); // Right half
010eb601 528 }
3b2890be 529 if (lVarXYT[2]) { // P constraint
56218672 530 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintPT,2); // Top half
531 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintPL,2); // Left half
532 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintPB,2); // Bottom half
533 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintPR,2); // Right half
010eb601 534 }
3b2890be 535 if (lVarXYT[3]) { // X-Z shearing
56218672 536 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintXZT,0,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Top half
537 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintXZL,0,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Left half
538 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintXZB,0,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Bottom half
539 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintXZR,0,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Right half
3b2890be 540 }
541 if (lVarXYT[4]) { // Y-Z shearing
56218672 542 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintYZT,1,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Top half
543 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintYZL,1,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Left half
544 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintYZB,1,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Bottom half
545 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintYZR,1,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Right half
3b2890be 546 }
547 if (lVarXYT[5]) { // P-Z rotation
56218672 548 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintPZT,2,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Top half
549 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintPZL,2,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Left half
550 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintPZB,2,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Bottom half
551 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintPZR,2,(lDetElemGloZ-lMeanZ)/lSigmaZ); // Right half
3b2890be 552 }
553 if (lVarXYT[6]) { // X-Y shearing
56218672 554 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintXYT,0,(lDetElemGloY-lMeanY)/lSigmaY); // Top half
555 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintXYL,0,(lDetElemGloY-lMeanY)/lSigmaY); // Left half
556 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintXYB,0,(lDetElemGloY-lMeanY)/lSigmaY); // Bottom half
557 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintXYR,0,(lDetElemGloY-lMeanY)/lSigmaY); // Right half
3b2890be 558 }
559 if (lVarXYT[7]) { // Y-Y scaling
56218672 560 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintYYT,1,(lDetElemGloY-lMeanY)/lSigmaY); // Top half
561 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintYYL,1,(lDetElemGloY-lMeanY)/lSigmaY); // Left half
562 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintYYB,1,(lDetElemGloY-lMeanY)/lSigmaY); // Bottom half
563 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintYYR,1,(lDetElemGloY-lMeanY)/lSigmaY); // Right half
3b2890be 564 }
565 if (lVarXYT[8]) { // P-Y rotation
56218672 566 if (lDetTLBR[0]) ConstrainT(i,iCh,fConstraintPYT,2,(lDetElemGloY-lMeanY)/lSigmaY); // Top half
567 if (lDetTLBR[1]) ConstrainL(i,iCh,fConstraintPYL,2,(lDetElemGloY-lMeanY)/lSigmaY); // Left half
568 if (lDetTLBR[2]) ConstrainB(i,iCh,fConstraintPYB,2,(lDetElemGloY-lMeanY)/lSigmaY); // Bottom half
569 if (lDetTLBR[3]) ConstrainR(i,iCh,fConstraintPYR,2,(lDetElemGloY-lMeanY)/lSigmaY); // Right half
3b2890be 570 }
010eb601 571 }
572 }
573 if (lVarXYT[0]) { // X constraint
574 if (lDetTLBR[0]) AddConstraint(fConstraintXT,0.0); // Top half
575 if (lDetTLBR[1]) AddConstraint(fConstraintXL,0.0); // Left half
576 if (lDetTLBR[2]) AddConstraint(fConstraintXB,0.0); // Bottom half
577 if (lDetTLBR[3]) AddConstraint(fConstraintXR,0.0); // Right half
578 }
579 if (lVarXYT[1]) { // Y constraint
580 if (lDetTLBR[0]) AddConstraint(fConstraintYT,0.0); // Top half
581 if (lDetTLBR[1]) AddConstraint(fConstraintYL,0.0); // Left half
582 if (lDetTLBR[2]) AddConstraint(fConstraintYB,0.0); // Bottom half
583 if (lDetTLBR[3]) AddConstraint(fConstraintYR,0.0); // Right half
584 }
585 if (lVarXYT[2]) { // T constraint
586 if (lDetTLBR[0]) AddConstraint(fConstraintPT,0.0); // Top half
587 if (lDetTLBR[1]) AddConstraint(fConstraintPL,0.0); // Left half
588 if (lDetTLBR[2]) AddConstraint(fConstraintPB,0.0); // Bottom half
589 if (lDetTLBR[3]) AddConstraint(fConstraintPR,0.0); // Right half
590 }
3b2890be 591 if (lVarXYT[3]) { // X-Z constraint
592 if (lDetTLBR[0]) AddConstraint(fConstraintXZT,0.0); // Top half
593 if (lDetTLBR[1]) AddConstraint(fConstraintXZL,0.0); // Left half
594 if (lDetTLBR[2]) AddConstraint(fConstraintXZB,0.0); // Bottom half
595 if (lDetTLBR[3]) AddConstraint(fConstraintXZR,0.0); // Right half
596 }
597 if (lVarXYT[4]) { // Y-Z constraint
598 if (lDetTLBR[0]) AddConstraint(fConstraintYZT,0.0); // Top half
599 if (lDetTLBR[1]) AddConstraint(fConstraintYZL,0.0); // Left half
600 if (lDetTLBR[2]) AddConstraint(fConstraintYZB,0.0); // Bottom half
601 if (lDetTLBR[3]) AddConstraint(fConstraintYZR,0.0); // Right half
602 }
603 if (lVarXYT[5]) { // P-Z constraint
604 if (lDetTLBR[0]) AddConstraint(fConstraintPZT,0.0); // Top half
605 if (lDetTLBR[1]) AddConstraint(fConstraintPZL,0.0); // Left half
606 if (lDetTLBR[2]) AddConstraint(fConstraintPZB,0.0); // Bottom half
607 if (lDetTLBR[3]) AddConstraint(fConstraintPZR,0.0); // Right half
608 }
609 if (lVarXYT[6]) { // X-Y constraint
610 if (lDetTLBR[0]) AddConstraint(fConstraintXYT,0.0); // Top half
611 if (lDetTLBR[1]) AddConstraint(fConstraintXYL,0.0); // Left half
612 if (lDetTLBR[2]) AddConstraint(fConstraintXYB,0.0); // Bottom half
613 if (lDetTLBR[3]) AddConstraint(fConstraintXYR,0.0); // Right half
614 }
615 if (lVarXYT[7]) { // Y-Y constraint
616 if (lDetTLBR[0]) AddConstraint(fConstraintYYT,0.0); // Top half
617 if (lDetTLBR[1]) AddConstraint(fConstraintYYL,0.0); // Left half
618 if (lDetTLBR[2]) AddConstraint(fConstraintYYB,0.0); // Bottom half
619 if (lDetTLBR[3]) AddConstraint(fConstraintYYR,0.0); // Right half
620 }
621 if (lVarXYT[8]) { // P-Y constraint
622 if (lDetTLBR[0]) AddConstraint(fConstraintPYT,0.0); // Top half
623 if (lDetTLBR[1]) AddConstraint(fConstraintPYL,0.0); // Left half
624 if (lDetTLBR[2]) AddConstraint(fConstraintPYB,0.0); // Bottom half
625 if (lDetTLBR[3]) AddConstraint(fConstraintPYR,0.0); // Right half
626 }
010eb601 627}
628
a6ec842d 629void AliMUONAlignment::ConstrainT(Int_t lDetElem, Int_t lCh, Double_t *lConstraintT, Int_t iVar, Double_t /*lWeight*/) const{
010eb601 630 /// Set constrain equation for top half of spectrometer
631 Int_t lDetElemNumber = (lCh==1) ? lDetElem : lDetElem-fgSNDetElemCh[lCh-2];
632 if (lCh>=1 && lCh<=4){
633 if (lDetElemNumber==0 || lDetElemNumber==1){ // From track crossings
634 lConstraintT[lDetElem*fgNParCh+iVar]=1.0;
635 }
636 }
637 if (lCh>=5 && lCh<=6){
638 if (lDetElemNumber>=0&&lDetElemNumber<=9){
639 lConstraintT[lDetElem*fgNParCh+iVar]=1.0;
640 }
641 }
642 if (lCh>=7 && lCh<=10){
643 if (lDetElemNumber>=0&&lDetElemNumber<=13){
644 lConstraintT[lDetElem*fgNParCh+iVar]=1.0;
645 }
646 }
647}
648
56218672 649//______________________________________________________________________
a6ec842d 650void AliMUONAlignment::ConstrainL(Int_t lDetElem, Int_t lCh, Double_t *lConstraintL, Int_t iVar, Double_t lWeight) const{
010eb601 651 /// Set constrain equation for left half of spectrometer
652 Int_t lDetElemNumber = (lCh==1) ? lDetElem : lDetElem-fgSNDetElemCh[lCh-2];
653 if (lCh>=1 && lCh<=4){
654 if (lDetElemNumber==1 || lDetElemNumber==2){ // From track crossings
3b2890be 655 lConstraintL[lDetElem*fgNParCh+iVar]=lWeight;
010eb601 656 }
657 }
658 if (lCh>=5 && lCh<=6){
659 if (lDetElemNumber>=5&&lDetElemNumber<=13){
3b2890be 660 lConstraintL[lDetElem*fgNParCh+iVar]=lWeight;
010eb601 661 }
662 }
663 if (lCh>=7 && lCh<=10){
664 if (lDetElemNumber>=7&&lDetElemNumber<=19){
3b2890be 665 lConstraintL[lDetElem*fgNParCh+iVar]=lWeight;
010eb601 666 }
667 }
668}
669
56218672 670//______________________________________________________________________
a6ec842d 671void AliMUONAlignment::ConstrainB(Int_t lDetElem, Int_t lCh, Double_t *lConstraintB, Int_t iVar, Double_t /*lWeight*/) const{
010eb601 672 /// Set constrain equation for bottom half of spectrometer
673 Int_t lDetElemNumber = (lCh==1) ? lDetElem : lDetElem-fgSNDetElemCh[lCh-2];
674 if (lCh>=1 && lCh<=4){
3b2890be 675 if (lDetElemNumber==2 || lDetElemNumber==3){ // From track crossings
010eb601 676 lConstraintB[lDetElem*fgNParCh+iVar]=1.0;
677 }
678 }
679 if (lCh>=5 && lCh<=6){
56218672 680 if ((lDetElemNumber>=9&&lDetElemNumber<=17) ||
681 (lDetElemNumber==0)){
010eb601 682 lConstraintB[lDetElem*fgNParCh+iVar]=1.0;
683 }
684 }
685 if (lCh>=7 && lCh<=10){
56218672 686 if ((lDetElemNumber>=13&&lDetElemNumber<=25) ||
687 (lDetElemNumber==0)){
010eb601 688 lConstraintB[lDetElem*fgNParCh+iVar]=1.0;
689 }
690 }
691}
692
56218672 693//______________________________________________________________________
a6ec842d 694void AliMUONAlignment::ConstrainR(Int_t lDetElem, Int_t lCh, Double_t *lConstraintR, Int_t iVar, Double_t lWeight) const{
010eb601 695 /// Set constrain equation for right half of spectrometer
696 Int_t lDetElemNumber = (lCh==1) ? lDetElem : lDetElem-fgSNDetElemCh[lCh-2];
697 if (lCh>=1 && lCh<=4){
3b2890be 698 if (lDetElemNumber==0 || lDetElemNumber==3){ // From track crossings
699 lConstraintR[lDetElem*fgNParCh+iVar]=lWeight;
010eb601 700 }
701 }
702 if (lCh>=5 && lCh<=6){
56218672 703 if ((lDetElemNumber>=0&&lDetElemNumber<=4) ||
704 (lDetElemNumber>=14&&lDetElemNumber<=17)){
3b2890be 705 lConstraintR[lDetElem*fgNParCh+iVar]=lWeight;
010eb601 706 }
707 }
708 if (lCh>=7 && lCh<=10){
56218672 709 if ((lDetElemNumber>=0&&lDetElemNumber<=6) ||
710 (lDetElemNumber>=20&&lDetElemNumber<=25)){
3b2890be 711 lConstraintR[lDetElem*fgNParCh+iVar]=lWeight;
010eb601 712 }
713 }
714}
715
56218672 716//______________________________________________________________________
010eb601 717void AliMUONAlignment::ResetConstraints(){
718 /// Reset all constraint equations
56218672 719 for (Int_t i = 0; i < fgNDetElem; i++){
3b2890be 720 fConstraintX[i*fgNParCh+0]=0.0;
721 fConstraintX[i*fgNParCh+1]=0.0;
722 fConstraintX[i*fgNParCh+2]=0.0;
723 fConstraintY[i*fgNParCh+0]=0.0;
724 fConstraintY[i*fgNParCh+1]=0.0;
725 fConstraintY[i*fgNParCh+2]=0.0;
726 fConstraintP[i*fgNParCh+0]=0.0;
727 fConstraintP[i*fgNParCh+1]=0.0;
728 fConstraintP[i*fgNParCh+2]=0.0;
729 fConstraintXT[i*fgNParCh+0]=0.0;
730 fConstraintXT[i*fgNParCh+1]=0.0;
731 fConstraintXT[i*fgNParCh+2]=0.0;
732 fConstraintYT[i*fgNParCh+0]=0.0;
733 fConstraintYT[i*fgNParCh+1]=0.0;
734 fConstraintYT[i*fgNParCh+2]=0.0;
735 fConstraintPT[i*fgNParCh+0]=0.0;
736 fConstraintPT[i*fgNParCh+1]=0.0;
737 fConstraintPT[i*fgNParCh+2]=0.0;
738 fConstraintXZT[i*fgNParCh+0]=0.0;
739 fConstraintXZT[i*fgNParCh+1]=0.0;
740 fConstraintXZT[i*fgNParCh+2]=0.0;
741 fConstraintYZT[i*fgNParCh+0]=0.0;
742 fConstraintYZT[i*fgNParCh+1]=0.0;
743 fConstraintYZT[i*fgNParCh+2]=0.0;
744 fConstraintPZT[i*fgNParCh+0]=0.0;
745 fConstraintPZT[i*fgNParCh+1]=0.0;
746 fConstraintPZT[i*fgNParCh+2]=0.0;
747 fConstraintXYT[i*fgNParCh+0]=0.0;
748 fConstraintXYT[i*fgNParCh+1]=0.0;
749 fConstraintXYT[i*fgNParCh+2]=0.0;
750 fConstraintYYT[i*fgNParCh+0]=0.0;
751 fConstraintYYT[i*fgNParCh+1]=0.0;
752 fConstraintYYT[i*fgNParCh+2]=0.0;
753 fConstraintPYT[i*fgNParCh+0]=0.0;
754 fConstraintPYT[i*fgNParCh+1]=0.0;
755 fConstraintPYT[i*fgNParCh+2]=0.0;
756 fConstraintXL[i*fgNParCh+0]=0.0;
757 fConstraintXL[i*fgNParCh+1]=0.0;
758 fConstraintXL[i*fgNParCh+2]=0.0;
759 fConstraintYL[i*fgNParCh+0]=0.0;
760 fConstraintYL[i*fgNParCh+1]=0.0;
761 fConstraintYL[i*fgNParCh+2]=0.0;
762 fConstraintPL[i*fgNParCh+0]=0.0;
763 fConstraintPL[i*fgNParCh+1]=0.0;
764 fConstraintPL[i*fgNParCh+2]=0.0;
765 fConstraintXZL[i*fgNParCh+0]=0.0;
766 fConstraintXZL[i*fgNParCh+1]=0.0;
767 fConstraintXZL[i*fgNParCh+2]=0.0;
768 fConstraintYZL[i*fgNParCh+0]=0.0;
769 fConstraintYZL[i*fgNParCh+1]=0.0;
770 fConstraintYZL[i*fgNParCh+2]=0.0;
771 fConstraintPZL[i*fgNParCh+0]=0.0;
772 fConstraintPZL[i*fgNParCh+1]=0.0;
773 fConstraintPZL[i*fgNParCh+2]=0.0;
774 fConstraintXYL[i*fgNParCh+0]=0.0;
775 fConstraintXYL[i*fgNParCh+1]=0.0;
776 fConstraintXYL[i*fgNParCh+2]=0.0;
777 fConstraintYYL[i*fgNParCh+0]=0.0;
778 fConstraintYYL[i*fgNParCh+1]=0.0;
779 fConstraintYYL[i*fgNParCh+2]=0.0;
780 fConstraintPYL[i*fgNParCh+0]=0.0;
781 fConstraintPYL[i*fgNParCh+1]=0.0;
782 fConstraintPYL[i*fgNParCh+2]=0.0;
783 fConstraintXB[i*fgNParCh+0]=0.0;
784 fConstraintXB[i*fgNParCh+1]=0.0;
785 fConstraintXB[i*fgNParCh+2]=0.0;
786 fConstraintYB[i*fgNParCh+0]=0.0;
787 fConstraintYB[i*fgNParCh+1]=0.0;
788 fConstraintYB[i*fgNParCh+2]=0.0;
789 fConstraintPB[i*fgNParCh+0]=0.0;
790 fConstraintPB[i*fgNParCh+1]=0.0;
791 fConstraintPB[i*fgNParCh+2]=0.0;
792 fConstraintXZB[i*fgNParCh+0]=0.0;
793 fConstraintXZB[i*fgNParCh+1]=0.0;
794 fConstraintXZB[i*fgNParCh+2]=0.0;
795 fConstraintYZB[i*fgNParCh+0]=0.0;
796 fConstraintYZB[i*fgNParCh+1]=0.0;
797 fConstraintYZB[i*fgNParCh+2]=0.0;
798 fConstraintPZB[i*fgNParCh+0]=0.0;
799 fConstraintPZB[i*fgNParCh+1]=0.0;
800 fConstraintPZB[i*fgNParCh+2]=0.0;
801 fConstraintXYB[i*fgNParCh+0]=0.0;
802 fConstraintXYB[i*fgNParCh+1]=0.0;
803 fConstraintXYB[i*fgNParCh+2]=0.0;
804 fConstraintYYB[i*fgNParCh+0]=0.0;
805 fConstraintYYB[i*fgNParCh+1]=0.0;
806 fConstraintYYB[i*fgNParCh+2]=0.0;
807 fConstraintPYB[i*fgNParCh+0]=0.0;
808 fConstraintPYB[i*fgNParCh+1]=0.0;
809 fConstraintPYB[i*fgNParCh+2]=0.0;
810 fConstraintXR[i*fgNParCh+0]=0.0;
811 fConstraintXR[i*fgNParCh+1]=0.0;
812 fConstraintXR[i*fgNParCh+2]=0.0;
813 fConstraintYR[i*fgNParCh+0]=0.0;
814 fConstraintYR[i*fgNParCh+1]=0.0;
815 fConstraintYR[i*fgNParCh+2]=0.0;
816 fConstraintPR[i*fgNParCh+0]=0.0;
817 fConstraintPR[i*fgNParCh+1]=0.0;
818 fConstraintPR[i*fgNParCh+2]=0.0;
819 fConstraintXZR[i*fgNParCh+0]=0.0;
820 fConstraintXZR[i*fgNParCh+1]=0.0;
821 fConstraintXZR[i*fgNParCh+2]=0.0;
822 fConstraintYZR[i*fgNParCh+0]=0.0;
823 fConstraintYZR[i*fgNParCh+1]=0.0;
824 fConstraintYZR[i*fgNParCh+2]=0.0;
825 fConstraintPZR[i*fgNParCh+0]=0.0;
826 fConstraintPZR[i*fgNParCh+1]=0.0;
827 fConstraintPZR[i*fgNParCh+2]=0.0;
828 fConstraintPZR[i*fgNParCh+0]=0.0;
829 fConstraintPZR[i*fgNParCh+1]=0.0;
830 fConstraintPZR[i*fgNParCh+2]=0.0;
831 fConstraintXYR[i*fgNParCh+0]=0.0;
832 fConstraintXYR[i*fgNParCh+1]=0.0;
833 fConstraintXYR[i*fgNParCh+2]=0.0;
834 fConstraintYYR[i*fgNParCh+0]=0.0;
835 fConstraintYYR[i*fgNParCh+1]=0.0;
836 fConstraintYYR[i*fgNParCh+2]=0.0;
837 fConstraintPYR[i*fgNParCh+0]=0.0;
838 fConstraintPYR[i*fgNParCh+1]=0.0;
839 fConstraintPYR[i*fgNParCh+2]=0.0;
010eb601 840 }
841}
842
56218672 843//______________________________________________________________________
010eb601 844void AliMUONAlignment::AddConstraint(Double_t *par, Double_t value) {
845 /// Constrain equation defined by par to value
846 fMillepede->SetGlobalConstraint(par, value);
847 AliInfo("Adding constraint");
848}
849
56218672 850//______________________________________________________________________
010eb601 851void AliMUONAlignment::InitGlobalParameters(Double_t *par) {
852 /// Initialize global parameters with par array
853 fMillepede->SetGlobalParameters(par);
854 AliInfo("Init Global Parameters");
855}
56218672 856
857//______________________________________________________________________
010eb601 858void AliMUONAlignment::FixParameter(Int_t iPar, Double_t value) {
56218672 859 /// Parameter iPar is encourage to vary in [-value;value].
010eb601 860 /// If value == 0, parameter is fixed
861 fMillepede->SetParSigma(iPar, value);
a6ec842d 862 if (TMath::Abs(value)<1e-4) AliInfo(Form("Parameter %i Fixed", iPar));
010eb601 863}
864
56218672 865//______________________________________________________________________
010eb601 866void AliMUONAlignment::ResetLocalEquation()
867{
868 /// Reset the derivative vectors
869 for(int i=0; i<fNLocal; i++) {
870 fLocalDerivatives[i] = 0.0;
871 }
872 for(int i=0; i<fNGlobal; i++) {
873 fGlobalDerivatives[i] = 0.0;
874 }
875}
876
56218672 877//______________________________________________________________________
878void AliMUONAlignment::AllowVariations(const Bool_t *bChOnOff)
879{
880
d8ad38e5 881 /// Set allowed variation for selected chambers based on fDoF and fAllowVar
56218672 882 for (Int_t iCh=1; iCh<=10; iCh++)
883 {
884 if (bChOnOff[iCh-1])
885 {
886
887 Int_t iDetElemFirst = (iCh>1) ? fgSNDetElemCh[iCh-2] : 0;
888 Int_t iDetElemLast = fgSNDetElemCh[iCh-1];
889 for (int i=0; i<fgNParCh; i++)
890 {
891 AliDebug(1,Form("fDoF[%d]= %d",i,fDoF[i]));
892 if (fDoF[i])
893 {
894 for (Int_t j=iDetElemFirst; j<iDetElemLast; j++){
895 FixParameter(j*fgNParCh+i, fAllowVar[i]);
896 }
897 }
898
010eb601 899 }
56218672 900
010eb601 901 }
56218672 902
010eb601 903 }
56218672 904
010eb601 905}
906
56218672 907//______________________________________________________________________
908void AliMUONAlignment::SetNonLinear(Int_t iPar /* set non linear flag */ )
909{
010eb601 910 /// Set nonlinear flag for parameter iPar
911 fMillepede->SetNonLinear(iPar);
912 AliInfo(Form("Parameter %i set to non linear", iPar));
913}
914
56218672 915//______________________________________________________________________
916void AliMUONAlignment::SetSigmaXY(Double_t sigmaX, Double_t sigmaY)
917{
64e2c144 918
64e2c144 919 /// Set expected measurement resolution
920 fSigma[0] = sigmaX; fSigma[1] = sigmaY;
921 AliInfo(Form("Using fSigma[0]=%f and fSigma[1]=%f",fSigma[0],fSigma[1]));
922}
923
924
56218672 925//______________________________________________________________________
926void AliMUONAlignment::LocalEquationX( Bool_t doAlignment )
927{
928
929
930 // local cluster record
931 AliMUONAlignmentClusterRecord clusterRecord;
932
933 // store detector and measurement
934 clusterRecord.SetDetElemId( fDetElemId );
935 clusterRecord.SetDetElemNumber( fDetElemNumber );
936 clusterRecord.SetMeas( fMeas[0] );
937 clusterRecord.SetSigma( fSigma[0] );
938
939 // store local derivatives
940 clusterRecord.SetLocalDerivative( 0, fCosPhi );
941 clusterRecord.SetLocalDerivative( 1, fCosPhi*(fTrackPos[2] - fTrackPos0[2]) );
942 clusterRecord.SetLocalDerivative( 2, fSinPhi );
943 clusterRecord.SetLocalDerivative( 3, fSinPhi*(fTrackPos[2] - fTrackPos0[2]) );
944
945 // store global derivatives
946 clusterRecord.SetGlobalDerivative( 0, -fCosPhi );
947 clusterRecord.SetGlobalDerivative( 1, -fSinPhi );
948
949 if (fBFieldOn)
950 {
951
952 clusterRecord.SetGlobalDerivative(
953 2,
954 -fSinPhi*(fTrackPos[0]-fDetElemPos[0])
955 +fCosPhi*(fTrackPos[1]-fDetElemPos[1]) );
956
957 } else {
958
959 clusterRecord.SetGlobalDerivative(
960 2,
961 -fSinPhi*(fTrackPos0[0]+fTrackSlope0[0]*(fTrackPos[2]-fTrackPos0[2])-fDetElemPos[0])
962 +fCosPhi*(fTrackPos0[1]+fTrackSlope0[1]*(fTrackPos[2]-fTrackPos0[2])-fDetElemPos[1]) );
010eb601 963
010eb601 964 }
965
56218672 966 clusterRecord.SetGlobalDerivative( 3, fCosPhi*fTrackSlope0[0]+fSinPhi*fTrackSlope0[1] );
967
968 // append to trackRecord
969 fTrackRecord.AddClusterRecord( clusterRecord );
970
971 // store local equation
972 if( doAlignment ) LocalEquation( clusterRecord );
973
010eb601 974}
975
56218672 976//______________________________________________________________________
977void AliMUONAlignment::LocalEquationY(Bool_t doAlignment )
978{
979
980 // local cluster record
981 AliMUONAlignmentClusterRecord clusterRecord;
982
983 // store detector and measurement
984 clusterRecord.SetDetElemId( fDetElemId );
985 clusterRecord.SetDetElemNumber( fDetElemNumber );
986 clusterRecord.SetMeas( fMeas[1] );
987 clusterRecord.SetSigma( fSigma[1] );
988
989 // store local derivatives
990 clusterRecord.SetLocalDerivative( 0, -fSinPhi );
991 clusterRecord.SetLocalDerivative( 1, -fSinPhi*(fTrackPos[2] - fTrackPos0[2] ) );
992 clusterRecord.SetLocalDerivative( 2, fCosPhi );
993 clusterRecord.SetLocalDerivative( 3, fCosPhi*(fTrackPos[2] - fTrackPos0[2] ) );
010eb601 994
995 // set global derivatives
56218672 996 clusterRecord.SetGlobalDerivative( 0, fSinPhi);
997 clusterRecord.SetGlobalDerivative( 1, -fCosPhi);
998
999 if (fBFieldOn)
1000 {
1001
1002 clusterRecord.SetGlobalDerivative(
1003 2,
1004 -fCosPhi*(fTrackPos[0]-fDetElemPos[0])
1005 -fSinPhi*(fTrackPos[1]-fDetElemPos[1]));
1006
1007 } else {
1008
1009 clusterRecord.SetGlobalDerivative(
1010 2,
1011 -fCosPhi*(fTrackPos0[0]+fTrackSlope0[0]*(fTrackPos[2]-fTrackPos0[2])-fDetElemPos[0])
1012 -fSinPhi*(fTrackPos0[1]+fTrackSlope0[1]*(fTrackPos[2]-fTrackPos0[2])-fDetElemPos[1]));
010eb601 1013 }
56218672 1014
1015 clusterRecord.SetGlobalDerivative( 3, -fSinPhi*fTrackSlope0[0]+fCosPhi*fTrackSlope0[1]);
1016
1017 // append to trackRecord
1018 fTrackRecord.AddClusterRecord( clusterRecord );
1019
1020 // store local equation
1021 if( doAlignment ) LocalEquation( clusterRecord );
1022
1023}
1024
1025//_____________________________________________________
1026void AliMUONAlignment::LocalEquation( const AliMUONAlignmentClusterRecord& clusterRecord )
1027{
1028
1029 // copy to local variables
1030 for( Int_t index = 0; index < 4; ++index )
1031 {
1032 SetLocalDerivative( index, clusterRecord.GetLocalDerivative( index ) );
1033 SetGlobalDerivative( clusterRecord.GetDetElemNumber()*fgNParCh + index, clusterRecord.GetGlobalDerivative( index ) );
010eb601 1034 }
1035
56218672 1036 // pass equation parameters to millepede
1037 fMillepede->SetLocalEquation( fGlobalDerivatives, fLocalDerivatives, clusterRecord.GetMeas(), clusterRecord.GetSigma() );
1038
010eb601 1039}
1040
56218672 1041//______________________________________________________________________
1042void AliMUONAlignment::FillRecPointData()
1043{
1044
96ebe67e 1045 /// Get information of current cluster
1046 fClustPos[0] = fCluster->GetX();
1047 fClustPos[1] = fCluster->GetY();
1048 fClustPos[2] = fCluster->GetZ();
56218672 1049 fTransform->Global2Local(
1050 fDetElemId,fClustPos[0],fClustPos[1],fClustPos[2],
1051 fClustPosLoc[0],fClustPosLoc[1],fClustPosLoc[2]);
1052
010eb601 1053}
1054
56218672 1055//______________________________________________________________________
1056void AliMUONAlignment::FillTrackParamData()
1057{
1058
96ebe67e 1059 /// Get information of current track at current cluster
010eb601 1060 fTrackPos[0] = fTrackParam->GetNonBendingCoor();
1061 fTrackPos[1] = fTrackParam->GetBendingCoor();
1062 fTrackPos[2] = fTrackParam->GetZ();
1063 fTrackSlope[0] = fTrackParam->GetNonBendingSlope();
1064 fTrackSlope[1] = fTrackParam->GetBendingSlope();
56218672 1065 fTransform->Global2Local(
1066 fDetElemId,fTrackPos[0],fTrackPos[1],fTrackPos[2],
1067 fTrackPosLoc[0],fTrackPosLoc[1],fTrackPosLoc[2]);
1068
010eb601 1069}
1070
56218672 1071//_____________________________________________________
1072void AliMUONAlignment::FillDetElemData()
1073{
1074
010eb601 1075 /// Get information of current detection element
1076 Double_t lDetElemLocX = 0.;
1077 Double_t lDetElemLocY = 0.;
1078 Double_t lDetElemLocZ = 0.;
96ebe67e 1079 fDetElemId = fCluster->GetDetElemId();
010eb601 1080 fDetElemNumber = fDetElemId%100;
56218672 1081 for (int iCh=0; iCh<fDetElemId/100-1; iCh++)
1082 { fDetElemNumber += fgNDetElemCh[iCh]; }
1083
1084 fTransform->Local2Global(
1085 fDetElemId,lDetElemLocX,lDetElemLocY,lDetElemLocZ,
1086 fDetElemPos[0],fDetElemPos[1],fDetElemPos[2]);
1087
010eb601 1088}
1089
56218672 1090//_____________________________________________________
1091AliMUONAlignmentTrackRecord* AliMUONAlignment::ProcessTrack( AliMUONTrack* track, Bool_t doAlignment )
1092{
1093
1094 // store current track in running member.
010eb601 1095 fTrack = track;
56218672 1096
1097 // clear track record
1098 fTrackRecord.Clear();
1099
1100 // get number of tracks
1101 Int_t nTrackParam = fTrack->GetTrackParamAtCluster()->GetEntries();
3b2890be 1102 AliDebug(1,Form("Number of track param entries : %i ", nTrackParam));
010eb601 1103
56218672 1104 Bool_t first( kTRUE );
1105 for(Int_t iCluster=0; iCluster<nTrackParam; iCluster++)
1106 {
010eb601 1107
010eb601 1108 // and get new pointers
96ebe67e 1109 fTrackParam = (AliMUONTrackParam *) fTrack->GetTrackParamAtCluster()->At(iCluster);
7e96937a 1110 if ( ! fTrackParam ) continue;
96ebe67e 1111 fCluster = fTrackParam->GetClusterPtr();
7e96937a 1112 if ( ! fCluster ) continue;
56218672 1113 // if (fDetElemId<500) continue;
1114
010eb601 1115 // fill local variables for this position --> one measurement
56218672 1116 FillDetElemData();
010eb601 1117 FillRecPointData();
1118 FillTrackParamData();
010eb601 1119
56218672 1120 if( first )
1121 {
1122
1123 // for first valid cluster, save track position as "starting" values
1124 first = kFALSE;
1125
1126 fTrackPos0[0] = fTrackPos[0];
1127 fTrackPos0[1] = fTrackPos[1];
1128 fTrackPos0[2] = fTrackPos[2];
1129 fTrackSlope0[0] = fTrackSlope[0];
1130 fTrackSlope0[1] = fTrackSlope[1];
1131
1132 }
1133
1134 // calculate measurements
010eb601 1135 fCosPhi = TMath::Cos(fPhi);
1136 fSinPhi = TMath::Sin(fPhi);
56218672 1137 if( fBFieldOn )
1138 {
1139
010eb601 1140 fMeas[0] = fTrackPos[0] - fClustPos[0];
1141 fMeas[1] = fTrackPos[1] - fClustPos[1];
56218672 1142
1143 } else {
1144
010eb601 1145 fMeas[0] = - fClustPos[0];
1146 fMeas[1] = - fClustPos[1];
56218672 1147
010eb601 1148 }
56218672 1149
1150