/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoTracker/MkFitCore/src/Config.cc
38 строк
960 B
Matevz Tadel
Use phase-1 and phase-2 defaults for prop-to-plane and pt-dependent MS flags, keeping option to modify them for R&D and/or testing purposes
15 окт 2024, 15:11
15 окт 2024, 15:11
6e8ce43
Код
Авторство
О чём код?
#include "RecoTracker/MkFitCore/interface/Config.h" namespace mkfit { namespace Config { bool usePropToPlane = false; bool usePtMultScat = false; // Multi threading configuration #if defined(MKFIT_STANDALONE) int numThreadsFinder = 1; int numThreadsEvents = 1; int numSeedsPerTask = 32; #endif #if defined(MKFIT_STANDALONE) bool removeDuplicates = false; bool useHitsForDuplicates = true; #endif const float maxdPt = 0.5; const float maxdPhi = 0.25; const float maxdEta = 0.05; const float maxdR = 0.0025; const float minFracHitsShared = 0.75; const float maxd1pt = 1.8; //windows for hit const float maxdphi = 0.37; //and/or dr const float maxdcth = 0.37; //comparisons const float maxcth_ob = 1.99; //eta 1.44 const float maxcth_fw = 6.05; //eta 2.5 #ifdef CONFIG_PhiQArrays bool usePhiQArrays = true; #endif } // namespace Config } // end namespace mkfit