ATLAS Offline Software
Loading...
Searching...
No Matches
TrigTRTHTHhypoAlg.cxx
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3*/
4
5#include "TrigTRTHTHhypoAlg.h"
6
10
11namespace TCU = TrigCompositeUtils;
12
13TrigTRTHTHhypoAlg::TrigTRTHTHhypoAlg( const std::string& name,
14 ISvcLocator* pSvcLocator ) :
15 ::HypoBase( name, pSvcLocator ) {}
16
18
19 ATH_CHECK( m_hypoTools.retrieve() );
20
21 ATH_CHECK( m_trigRNNOutputKey.initialize() );
22
23 renounce( m_trigRNNOutputKey );// clusters are made in views, so they are not in the EvtStore: hide them
24
25 return StatusCode::SUCCESS;
26}
27
28
29StatusCode TrigTRTHTHhypoAlg::execute( const EventContext& context ) const {
30 ATH_MSG_DEBUG ( "Executing " << name() << "..." );
31 auto previousDecisionsHandle = SG::makeHandle( decisionInput(), context );
32 ATH_CHECK( previousDecisionsHandle.isValid() );
33 ATH_MSG_DEBUG( "Running with "<< previousDecisionsHandle->size() <<" previous decisions");
34
35
36 // new decisions
37
38 // new output decisions
40 auto decisions = outputHandle.ptr();
41
42 // input for decision
43 std::vector<ITrigTRTHTHhypoTool::RNNOutputInfo> toolInput;
44
45
46 // loop over previous decisions
47 size_t counter=0;
48 for ( const auto previousDecision: *previousDecisionsHandle ) {
49
50 auto d = TCU::newDecisionIn( decisions, TCU::hypoAlgNodeName() );
51 //get RoI
52 auto roiELInfo = TCU::findLink<TrigRoiDescriptorCollection>( previousDecision, TCU::initialRoIString() );
53 ATH_CHECK( roiELInfo.isValid() );
54 d->setObjectLink( TCU::roiString(), roiELInfo.link );
55
56 // get View
57 const auto viewEL = previousDecision->objectLink<ViewContainer>( TCU::viewString() );
58 ATH_CHECK( viewEL.isValid() );
59
60 // get rnnOutput
61 auto rnnOutputHandle = ViewHelper::makeHandle( *viewEL, m_trigRNNOutputKey, context);
62 ATH_CHECK( rnnOutputHandle.isValid() );
63
64 // link the rnnOutput
65 auto rnn = ViewHelper::makeLink( *viewEL, rnnOutputHandle, 0 );
66 ATH_CHECK( rnn.isValid() );
67 d->setObjectLink( TCU::featureString(), rnn );
68
69 // create new decision
70 toolInput.emplace_back( d, rnnOutputHandle.cptr()->at(0), previousDecision );
71
72 TCU::linkToPrevious( d, previousDecision, context );
73 ATH_MSG_DEBUG( "Added view, roi, cluster, previous decision to new decision " << counter << " for view " << (*viewEL)->name() );
74 counter++;
75 }
76
77 ATH_MSG_DEBUG( "Found "<<toolInput.size()<<" inputs to tools");
78
79
80 for ( auto& tool: m_hypoTools ) {
81 ATH_CHECK( tool->decide( toolInput ) );
82 }
83
84 ATH_CHECK( hypoBaseOutputProcessing(outputHandle) );
85
86 return StatusCode::SUCCESS;
87}
88
#define ATH_CHECK
Evaluate an expression and check for errors.
#define ATH_MSG_DEBUG(x)
DataVector< SG::View > ViewContainer
View container for recording in StoreGate.
Definition View.h:290
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)
const SG::ReadHandleKey< TrigCompositeUtils::DecisionContainer > & decisionInput() const
methods for derived classes to access handles of the base class input other read/write handles may be...
Definition HypoBase.cxx:18
const SG::WriteHandleKey< TrigCompositeUtils::DecisionContainer > & decisionOutput() const
methods for derived classes to access handles of the base class output other read/write handles may b...
Definition HypoBase.cxx:22
StatusCode hypoBaseOutputProcessing(SG::WriteHandle< TrigCompositeUtils::DecisionContainer > &outputHandle, MSG::Level lvl=MSG::DEBUG) const
Base class function to be called once slice specific code has finished. Handles debug printing and va...
Definition HypoBase.cxx:35
HypoBase(const std::string &name, ISvcLocator *pSvcLocator)
constructor, to be called by sub-class constructors
Definition HypoBase.cxx:12
pointer_type ptr()
Dereference the pointer.
ToolHandleArray< ITrigTRTHTHhypoTool > m_hypoTools
TrigTRTHTHhypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
SG::ReadHandleKey< xAOD::TrigRNNOutputContainer > m_trigRNNOutputKey
virtual StatusCode initialize() override
virtual StatusCode execute(const EventContext &context) const override
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
const std::string & viewString()
const std::string & roiString()
Decision * newDecisionIn(DecisionContainer *dc, const std::string &name)
Helper method to create a Decision object, place it in the container and return a pointer to it.
const std::string & featureString()
SG::WriteHandle< DecisionContainer > createAndStore(const SG::WriteHandleKey< DecisionContainer > &key, const EventContext &ctx)
Creates and right away records the DecisionContainer with the key.
const std::string & hypoAlgNodeName()
void linkToPrevious(Decision *d, const std::string &previousCollectionKey, size_t previousIndex)
Links to the previous object, location of previous 'seed' decision supplied by hand.
LinkInfo< T > findLink(const Decision *start, const std::string &linkName, const bool suppressMultipleLinksWarning=false)
Perform a recursive search for ElementLinks of type T and name 'linkName', starting from Decision obj...
const std::string & initialRoIString()
ElementLink< T > makeLink(const SG::View *view, const SG::ReadHandle< T > &handle, size_t index)
Create EL to a collection in view.
Definition ViewHelper.h:309
auto makeHandle(const SG::View *view, const KEY &key, const EventContext &ctx)
Create a view handle from a handle key.
Definition ViewHelper.h:273