|
||||
File indexing completed on 2025-01-18 09:55:41
0001 // SPDX-License-Identifier: LGPL-3.0-or-later 0002 // Copyright (C) 2023, Simon Gardner 0003 0004 #pragma once 0005 0006 namespace eicrecon { 0007 struct FarDetectorLinearTrackingConfig { 0008 0009 int layer_hits_max{10}; 0010 float chi2_max{0.001}; 0011 int n_layer{4}; 0012 0013 // Restrict hit direction 0014 bool restrict_direction{true}; 0015 float optimum_theta{0.026}; 0016 float optimum_phi{0}; 0017 float step_angle_tolerance{0.05}; 0018 0019 }; 0020 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |