Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-27 07:02:58

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 }