GeneralBrokenLines V03-01-01
using EIGEN
General information

Introduction

For a track with an initial trajectory from a prefit of the measurements (internal seed) or an external prediction (external seed) the description of multiple scattering is added by offsets in a local system. Along the initial trajectory points are defined with can describe a measurement or a scatterer or both. Measurements are arbitrary (linear) functions of the local track parameters at a point (e.g. 2D: position, 4D: direction+position). Multiple measurements can be added to a point (and later disabled) to implement (and resolve) ambiguities. The refit provides corrections to the local track parameters (in the local system) and the corresponding covariance matrix at any of those points. Non-diagonal covariance matrices of measurements will be diagonalized internally. Outliers can be down-weighted by use of M-estimators. At one point the measurements can be omitted from the refit to calculate unbiased residuals.

A position measurement is in a plane defined by two directions. Along one direction the measurement precision may be zero, defining a 1D measurement in the other direction.

The broken lines trajectory is defined by (2D) offsets at the first and last point and all points with a scatterer. The prediction for a measurement is obtained by interpolation of the enclosing offsets and for triplets of adjacent offsets kink angles are determined (thin scatterer, single offset) or for quadruplets of adjacent offsets kink angles and steps are determined (thick scatterer, two offsets, see logo). This requires for all points the jacobians for propagation to the previous and next point with an offset. These are calculated from the point-to-point jacobians along the initial trajectory. The sequence of points has to be strictly monotonic in arc-length.

Additional local or global parameters can be added and the trajectories can be written to special binary files for calibration and alignment with Millepede-II. (V. Blobel, NIM A, 566 (2006), pp. 5-13).

Besides simple trajectories describing the path of a single particle composed trajectories are supported. These are constructed from the trajectories of multiple particles and some external parameters (like those describing a decay) and transformations at the first points from the external to the local track parameters. The external parameters can describe the full kinematics (all track parameters) or only the geometry (position parameters at common vertex).

The conventions for the coordinate systems follow: Derivation of Jacobians for the propagation of covariance matrices of track parameters in homogeneous magnetic fields A. Strandlie, W. Wittek, NIM A, 566 (2006) 687-698.

The source code is available at the DESY GitLab server, see: https://gitlab.desy.de/claus.kleinwort/general-broken-lines/-/wikis/home

Calling sequence

  1. Create list of points on initial trajectory:
    std::vector<GblPoint> list
  2. For all points on initial trajectory:
    • Create points and add appropriate attributes:
      • point = gbl::GblPoint(..)
      • point.addMeasurement(..)
      • Add additional local or global parameters to measurement:
        • point.addLocals(..)
        • point.addGlobals(..)
      • point.addScatterer(..) or point.addThickScatterer(..)
    • Add point (ordered by arc length) to list:
      list.push_back(point)
  3. Create (simple) trajectory from list of points:
    traj = gbl::GblTrajectory (list)
  4. Optionally with external seed:
    traj = gbl::GblTrajectory (list,seed)
  5. Optionally check validity of trajectory:
    if (!traj.isValid()) .. //abort
  6. Fit trajectory (potentially several times with different options), return error code, get Chi2, Ndf (and weight lost by M-estimators):
    ierr = traj.fit(..)
  7. For any point on initial trajectory:
    • Get corrections and covariance matrix for track parameters:
      [..] = traj.getResults(label)
    • Optionally get residuals with errors for measurements:
      [..] = traj.getMeasResults(label)
    • Optionally get residuals with errors for scatterers:
      [..] = traj.getScatResults(label)
  8. Optionally write trajectory to MP binary file (doesn't needs to be fitted):
    traj.milleOut(..)

Local system and local parameters

At each point on the trajectory a local coordinate system with local track parameters has to be defined. The first of the five parameters describes the bending, the next two the direction and the last two the position (offsets). The curvilinear system (T,U,V) with parameters (q/p, lambda, phi, x_t, y_t) is well suited.

Implementation

Matrices are implemented with the EIGEN template library (eigen.tuxfamily.org). User input or output is in the form of MatrixXd. With the preprocessor directive GBL_EIGEN_SUPPORT_ROOT user input and output with ROOT (root.cern.ch) matrices is supported too. Internally Matrix<n>d are used for fixed sized and simple matrices based on std::vector<> for variable sized matrices. Several GBL methods are implemented as templates to allow more EIGEN compile time optimization.

Java Native Access wrappers

JavaNativeAccessWrappers.cpp are provided by Tom Eichlersmith (Univ. Minnesota).

Examples

Technical examples are given in example1.cpp, example2.cpp, example3.cpp and example4.cpp. An example silicon tracker is described in exampleSit.cpp and an example sector of forward drift chambers in exampleDc.cpp. Composed trajectories in a cylindrical drift chamber are used in exampleComposedGeo.cpp and exampleComposedKin.cpp.

References

  • V. Blobel, C. Kleinwort, F. Meier, Fast alignment of a complex tracking detector using advanced track models, Computer Phys. Communications (2011), doi:10.1016/j.cpc.2011.03.017
  • C. Kleinwort, General Broken Lines as advanced track fitting method, NIM A, 673 (2012), 107-110, doi:10.1016/j.nima.2012.01.024