|
||||
File indexing completed on 2025-01-18 09:55:42
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 }
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |