CMS 3D CMS Logo

BowedSurfaceAlignmentDerivatives.cc
Go to the documentation of this file.
1 
8 
11 #include <cmath>
12 
14  const TrajectoryStateOnSurface &tsos, double uWidth, double vLength, bool doSplit, double ySplit) const {
16 
17  // track parameters on surface:
18  const AlgebraicVector5 tsosPar(tsos.localParameters().mixedFormatVector());
19  // [1] dxdz : direction tangent in local xz-plane
20  // [2] dydz : direction tangent in local yz-plane
21  // [3] x : local x-coordinate
22  // [4] y : local y-coordinate
23  double myY = tsosPar[4];
24  double myLengthV = vLength;
25  if (doSplit) { // re-'calibrate' y length and transform myY to be w.r.t.
26  // surface middle
27  // Some signs depend on whether we are in surface part below or above
28  // ySplit:
29  const double sign = (tsosPar[4] < ySplit ? +1. : -1.);
30  const double yMiddle = ySplit * 0.5 - sign * vLength * .25; // middle of surface
31  myY = tsosPar[4] - yMiddle;
32  myLengthV = vLength * 0.5 + sign * ySplit;
33  }
34 
35  const AlgebraicMatrix karimaki(KarimakiAlignmentDerivatives()(tsos)); // it's just 6x2...
36  // copy u, v, w from Karimaki - they are independent of splitting
37  result[dx][0] = karimaki[0][0];
38  result[dx][1] = karimaki[0][1];
39  result[dy][0] = karimaki[1][0];
40  result[dy][1] = karimaki[1][1];
41  result[dz][0] = karimaki[2][0];
42  result[dz][1] = karimaki[2][1];
43  const double aScale = gammaScale(uWidth, myLengthV);
44  result[drotZ][0] = myY / aScale; // Since karimaki[5][0] == vx;
45  result[drotZ][1] = karimaki[5][1] / aScale;
46 
47  double uRel = 2. * tsosPar[3] / uWidth; // relative u (-1 .. +1)
48  double vRel = 2. * myY / myLengthV; // relative v (-1 .. +1)
49  // 'range check':
50  const double cutOff = 1.5;
51  if (uRel < -cutOff) {
52  uRel = -cutOff;
53  } else if (uRel > cutOff) {
54  uRel = cutOff;
55  }
56  if (vRel < -cutOff) {
57  vRel = -cutOff;
58  } else if (vRel > cutOff) {
59  vRel = cutOff;
60  }
61 
62  // Legendre polynomials renormalized to LPn(1)-LPn(0)=1 (n>0)
63  const double uLP0 = 1.0;
64  const double uLP1 = uRel;
65  const double uLP2 = uRel * uRel - 1. / 3.;
66  const double vLP0 = 1.0;
67  const double vLP1 = vRel;
68  const double vLP2 = vRel * vRel - 1. / 3.;
69 
70  // 1st order (slopes, replacing angles beta, alpha)
71  result[dslopeX][0] = tsosPar[1] * uLP1 * vLP0;
72  result[dslopeX][1] = tsosPar[2] * uLP1 * vLP0;
73  result[dslopeY][0] = tsosPar[1] * uLP0 * vLP1;
74  result[dslopeY][1] = tsosPar[2] * uLP0 * vLP1;
75 
76  // 2nd order (sagitta)
77  result[dsagittaX][0] = tsosPar[1] * uLP2 * vLP0;
78  result[dsagittaX][1] = tsosPar[2] * uLP2 * vLP0;
79  result[dsagittaXY][0] = tsosPar[1] * uLP1 * vLP1;
80  result[dsagittaXY][1] = tsosPar[2] * uLP1 * vLP1;
81  result[dsagittaY][0] = tsosPar[1] * uLP0 * vLP2;
82  result[dsagittaY][1] = tsosPar[2] * uLP0 * vLP2;
83 
84  return result;
85 }
86 
87 //------------------------------------------------------------------------------
88 double BowedSurfaceAlignmentDerivatives::gammaScale(double width, double splitLength) {
89  // return 0.5 * std::sqrt(width*width + splitLength*splitLength);
90  // return 0.5 * (std::fabs(width) + std::fabs(splitLength));
91  return 0.5 * (width + splitLength);
92 }
const LocalTrajectoryParameters & localParameters() const
CLHEP::HepMatrix AlgebraicMatrix
static double gammaScale(double width, double splitLength)
ROOT::Math::SVector< double, 5 > AlgebraicVector5
AlgebraicVector5 mixedFormatVector() const
AlgebraicMatrix operator()(const TrajectoryStateOnSurface &tsos, double uWidth, double vLength, bool doSplit=false, double ySplit=0.) const
Returns 9x2 jacobian matrix.