Skip to content
Snippets Groups Projects
Commit a87f262c authored by Noemi Calace's avatar Noemi Calace
Browse files

Updating the code: usirence_wrapper

parent e62d362b
6 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!33847Adding implementation of InDetEtaDependentCutsSvc (ATLIDTRKCP-183)
......@@ -67,9 +67,6 @@ namespace InDet {
int getIndexByEta(const double eta) const;
template <class T>
StatusCode checkSize(T& cuts);
DoubleArrayProperty m_etaBins {this, "etaBins" , {0.0, 4.0}, "eta bins (highest eta is maxEta)" };
DoubleArrayProperty m_minPT {this, "minPT" , {900.0} , "min pT [MeV]" };
DoubleArrayProperty m_maxPrimaryImpact {this, "maxPrimaryImpact" , {2.0} , "max Rphi IP (primaries) [mm]" };
......
......@@ -7,6 +7,8 @@
#include "InDetEtaDependentCuts/InDetEtaDependentCutsSvc.h"
#include <cmath>
#include <functional>
#include <variant>
namespace InDet {
......@@ -44,34 +46,63 @@ namespace InDet {
ATH_MSG_INFO ("Initializing " << name() << "...");
std::vector < std::vector <double>* > setsOfCutsD = { &m_etaWidthBrem.value() ,
&m_maxdImpactSSSSeeds.value() ,
&m_maxPrimaryImpact.value() ,
&m_maxZImpact.value() ,
&m_minPT.value() ,
&m_minPTBrem.value() ,
&m_phiWidthBrem.value() ,
&m_Xi2max.value() ,
&m_Xi2maxNoAdd.value() };
std::vector < std::vector <int>* > setsOfCutsI = { &m_maxDoubleHoles.value() ,
&m_maxHoles.value() ,
&m_maxPixelHoles.value() ,
&m_maxSctHoles.value() ,
&m_maxShared.value() ,
&m_minClusters.value() ,
&m_minPixelHits.value() ,
&m_minSiNotShared.value() ,
&m_maxHolesGapPattern.value() ,
&m_maxHolesPattern.value() ,
&m_nWeightedClustersMin.value()};
if ((m_etaBins.size()-1) <= 0) {
ATH_MSG_ERROR( "Wrong inizialisation of eta bins. Check the eta bin values in " << name() );
return StatusCode::FAILURE;
}
// checking if the set of cuts makes sense
if (checkSize(setsOfCutsD).isFailure())
ATH_MSG_ERROR( "Check the cut values used in " << name() );
// expecting eta bins in ascending order
if (not std::is_sorted(m_etaBins.value().begin(), m_etaBins.value().end())) {
ATH_MSG_ERROR( "Wrong inizialisation of eta bins in " << name() << ". Values are not sorted!" );
return StatusCode::FAILURE;
}
using setOfCuts = std::variant< std::reference_wrapper<std::vector <double>>, std::reference_wrapper<std::vector <int>> >;
if (checkSize(setsOfCutsI).isFailure())
ATH_MSG_ERROR( "Check the cut values used in " << name() );
std::vector < setOfCuts > allCuts = { m_etaWidthBrem.value() ,
m_maxdImpactSSSSeeds.value() ,
m_maxPrimaryImpact.value() ,
m_maxZImpact.value() ,
m_minPT.value() ,
m_minPTBrem.value() ,
m_phiWidthBrem.value() ,
m_Xi2max.value() ,
m_Xi2maxNoAdd.value() ,
m_maxDoubleHoles.value() ,
m_maxHoles.value() ,
m_maxPixelHoles.value() ,
m_maxSctHoles.value() ,
m_maxShared.value() ,
m_minClusters.value() ,
m_minPixelHits.value() ,
m_minSiNotShared.value() ,
m_maxHolesGapPattern.value() ,
m_maxHolesPattern.value() ,
m_nWeightedClustersMin.value()};
// checking if the set of cuts makes sense
size_t noOfEtaBins = m_etaBins.size()-1;
for (setOfCuts& cuts : allCuts) {
auto sCode = std::visit([noOfEtaBins] (auto & testingCuts) -> StatusCode {
if (testingCuts.get().size() == noOfEtaBins)
return StatusCode::SUCCESS;
if (testingCuts.get().size() > noOfEtaBins)
return StatusCode::FAILURE;
if (testingCuts.get().size() < noOfEtaBins)
testingCuts.get().resize(noOfEtaBins, testingCuts.get().back());
return StatusCode::SUCCESS;
} , cuts);
if (sCode.isFailure()) {
ATH_MSG_ERROR( "No. of cut values bigger than eta bins");
return sCode;
}
}
// printing all the cuts
ATH_MSG_DEBUG ("--- Dynamic cuts ---");
......@@ -95,8 +126,7 @@ namespace InDet {
ATH_MSG_DEBUG ("nWeightedClustersMin: " << m_nWeightedClustersMin);
ATH_MSG_DEBUG ("phiWidthBrem: " << m_phiWidthBrem);
ATH_MSG_DEBUG ("Xi2max: " << m_Xi2max);
ATH_MSG_DEBUG ("Xi2maxNoAdd: " << m_Xi2maxNoAdd);
ATH_MSG_DEBUG ("Xi2maxNoAdd: " << m_Xi2maxNoAdd);
return StatusCode::SUCCESS;
}
......@@ -108,27 +138,6 @@ namespace InDet {
ATH_MSG_INFO ("Finalizing " << name() << "...");
return StatusCode::SUCCESS;
}
template <class T>
StatusCode InDetEtaDependentCutsSvc::checkSize(T& cuts) {
// getting the number of eta bins
size_t noOfEtaBins = m_etaBins.size()-1;
for (auto *cut : cuts) {
if (cut->size() == noOfEtaBins) continue;
if (cut->size() > noOfEtaBins){
ATH_MSG_ERROR( "No. of cut values bigger than eta bins");
return StatusCode::FAILURE;
}
if (cut->size() < noOfEtaBins){
ATH_MSG_DEBUG( "No. of cut values smaller than eta bins. Extending size..." );
cut->resize(noOfEtaBins, cut->back());
ATH_MSG_DEBUG( "... updated sets of cuts: " << cut );
}
}
return StatusCode::SUCCESS;
}
int InDetEtaDependentCutsSvc::getIndexByEta(const double eta) const {
double absEta = std::abs(eta);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment