Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/EICrecon/algorithms/tracking/CKFTrackingConfig.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

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<std::size_t> numMeasurementsCutOff = {10};  //{this, "numMeasurementsCutOff", {10}};
0014 };
0015 } // namespace eicrecon