CMS 3D CMS Logo

AnalyticalErrorPropagation.h
Go to the documentation of this file.
1 #ifndef AnalyticalErrorPropagation_H
2 #define AnalyticalErrorPropagation_H
3 
11 
12 class Surface;
13 
14 inline std::pair<TrajectoryStateOnSurface, double> analyticalErrorPropagation(
15  const FreeTrajectoryState& startingState,
16  const Surface& surface,
18  const GlobalTrajectoryParameters& destParameters,
19  const double& s) {
20  if UNLIKELY (!startingState.hasError())
21  // return state without errors
22  return std::pair<TrajectoryStateOnSurface, double>(TrajectoryStateOnSurface(destParameters, surface, side), s);
23 
24  //
25  // compute jacobian
26  //
27 
28  // FIXME: Compute mean B field between startingState and destParameters and pass it to analyticalJacobian
29  //GlobalPoint xStart = startingState.position();
30  //GlobalPoint xDest = destParameters.position();
31  //GlobalVector h1 = destParameters.magneticFieldInInverseGeV(xStart);
32  //GlobalVector h2 = destParameters.magneticFieldInInverseGeV(xDest);
33  //GlobalVector h = 0.5*(h1+h2);
34  //LogDebug("RungeKutta") << "AnalyticalErrorPropagation: The Fields are: " << h1 << ", " << h2 << ", " << h ;
35 
36  //
37  AnalyticalCurvilinearJacobian analyticalJacobian(
38  startingState.parameters(), destParameters.position(), destParameters.momentum(), s);
39  auto const& jacobian = analyticalJacobian.jacobian();
40  return std::pair<TrajectoryStateOnSurface, double>(
42  destParameters, ROOT::Math::Similarity(jacobian, startingState.curvilinearError().matrix()), surface, side),
43  s);
44 }
45 
46 #endif
const CurvilinearTrajectoryError & curvilinearError() const
const GlobalTrajectoryParameters & parameters() const
std::pair< TrajectoryStateOnSurface, double > analyticalErrorPropagation(const FreeTrajectoryState &startingState, const Surface &surface, SurfaceSideDefinition::SurfaceSide side, const GlobalTrajectoryParameters &destParameters, const double &s)
const AlgebraicSymMatrix55 & matrix() const
#define UNLIKELY(x)
Definition: Likely.h:21
const AlgebraicMatrix55 & jacobian() const