Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-06-29 07:05:58

0001 // Created by Dmitry Romanov
0002 // Subject to the terms in the LICENSE file found in the top-level directory.
0003 //
0004 
0005 #pragma once
0006 
0007 #include <vector>
0008 
0009 namespace eicrecon {
0010     struct CKFTrackingConfig {
0011         std::vector<double> etaBins = {};  // {this, "etaBins", {}};
0012         std::vector<double> chi2CutOff = {15.}; //{this, "chi2CutOff", {15.}};
0013         std::vector<size_t> numMeasurementsCutOff = {10}; //{this, "numMeasurementsCutOff", {10}};
0014     };
0015 }