22 const std::string& skimtool,
23 const IInterface* interface ) :
25 base_class(CPP_exothip, skimtool, interface),
26 m_trigDec(
"Trig::TrigDecisionTool/TrigDecisionTool")
39 return StatusCode::SUCCESS;
45 ATH_MSG_INFO(
"Processed " << m_ntot <<
" events, " << m_npass <<
" events passed filter ");
47 return StatusCode::SUCCESS;
54 auto trig_fht_wedge = std::make_unique<std::vector<float>>();
57 StatusCode sc = evtStore()->retrieve( trnnoutCont, m_trnnoutContName);
59 ATH_MSG_FATAL(
"No HTTRT collection with name " << m_trnnoutContName <<
" found in StoreGate!");
64 trig_fht_wedge->push_back(trnnout->rnnDecision().at(3));
67 for (
float value : *trig_fht_wedge) {
68 if (
static_cast<double>(
value) > m_minHTratioWedge) {