19 int main(
int argc,
char* argv[]) {
28 runs = std::stoi(argv[2]);
38 auto planeSurface = Surface::makeShared<PlaneSurface>(
position, direction);
39 auto otherSurface = Surface::makeShared<PlaneSurface>(
45 direction[1], direction[2], qop;
52 std::uniform_real_distribution<> uniform(0.5, 0.95);
54 unsigned int sillyCounter = 0;
62 uniform(
rng) * BoundSquareMatrix::Identity();
71 boundParameters, boundCovariance);
75 tgContext, *otherSurface, freeParameters, covCache);
78 const auto& variantCovariance = std::get<0>(covJacAtBound);
79 const auto& variantJacobian = std::get<1>(covJacAtBound);
81 const auto&
covariance = std::get<BoundSquareMatrix>(variantCovariance);
82 const auto& jacobian = std::get<BoundMatrix>(variantJacobian);
91 ACTS_INFO(
"Execution stats: " << cov_transport_bound_bound);