ATLAS Offline Software
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 
7 #include "AthViews/ViewHelper.h"
10 
11 namespace TCU = TrigCompositeUtils;
12 
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 
29 StatusCode 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 
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 
TrigCompositeUtils::newDecisionIn
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.
Definition: TrigCompositeUtilsRoot.cxx:46
hist_file_dump.d
d
Definition: hist_file_dump.py:137
ViewHelper::makeLink
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:276
TrigCompositeUtils::hypoAlgNodeName
const std::string & hypoAlgNodeName()
Definition: TrigCompositeUtilsRoot.cxx:906
ViewHelper::makeHandle
SG::ReadHandle< T > makeHandle(const SG::View *view, const SG::ReadHandleKey< T > &rhKey, const EventContext &context)
navigate from the TrigComposite to nearest view and fetch object from it
Definition: ViewHelper.h:258
AthCommonDataStore< AthCommonMsg< Gaudi::Algorithm > >::renounce
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)
Definition: AthCommonDataStore.h:380
HypoBase::decisionInput
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:16
TrigCompositeUtils::createAndStore
SG::WriteHandle< DecisionContainer > createAndStore(const SG::WriteHandleKey< DecisionContainer > &key, const EventContext &ctx)
Creates and right away records the DecisionContainer with the key.
Definition: TrigCompositeUtilsRoot.cxx:30
TrigTRTHTHhypoAlg.h
TrigTRTHTHhypoAlg::TrigTRTHTHhypoAlg
TrigTRTHTHhypoAlg(const std::string &name, ISvcLocator *pSvcLocator)
Definition: TrigTRTHTHhypoAlg.cxx:13
ViewHelper.h
HypoBase::decisionOutput
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:20
SG::makeHandle
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
Definition: ReadCondHandle.h:270
TrigCompositeUtils::initialRoIString
const std::string & initialRoIString()
Definition: TrigCompositeUtilsRoot.cxx:870
HypoBase::hypoBaseOutputProcessing
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:33
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
SG::WriteHandle::ptr
pointer_type ptr()
Dereference the pointer.
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
xAOD::decisions
decisions
Definition: TrigComposite_v1.cxx:81
TrigCompositeContainer.h
TrigCompositeUtils::featureString
const std::string & featureString()
Definition: TrigCompositeUtilsRoot.cxx:886
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
HypoBase
Hypothesis algorithms take the output of reco algorithms and the decision from the preceeding InputMa...
Definition: HypoBase.h:13
AtlCoolConsole.tool
tool
Definition: AtlCoolConsole.py:453
SG::WriteHandle
Definition: StoreGate/StoreGate/WriteHandle.h:76
TrigCompositeUtils::linkToPrevious
void linkToPrevious(Decision *d, const std::string &previousCollectionKey, size_t previousIndex)
Links to the previous object, location of previous 'seed' decision supplied by hand.
Definition: TrigCompositeUtilsRoot.cxx:139
TrigTRTHTHhypoAlg::m_trigRNNOutputKey
SG::ReadHandleKey< xAOD::TrigRNNOutputContainer > m_trigRNNOutputKey
Definition: TrigTRTHTHhypoAlg.h:32
TrigCompositeUtils
Definition: Event/xAOD/xAODTrigger/xAODTrigger/TrigComposite.h:19
TrigTRTHTHhypoAlg::initialize
virtual StatusCode initialize() override
Definition: TrigTRTHTHhypoAlg.cxx:17
TrigCompositeUtils::roiString
const std::string & roiString()
Definition: TrigCompositeUtilsRoot.cxx:878
TrigTRTHTHhypoAlg::execute
virtual StatusCode execute(const EventContext &context) const override
Definition: TrigTRTHTHhypoAlg.cxx:29
test_pyathena.counter
counter
Definition: test_pyathena.py:15
TrigCompositeUtils::viewString
const std::string & viewString()
Definition: TrigCompositeUtilsRoot.cxx:882
TrigTRTHTHhypoAlg::m_hypoTools
ToolHandleArray< ITrigTRTHTHhypoTool > m_hypoTools
Definition: TrigTRTHTHhypoAlg.h:30
TrigRoiDescriptorCollection.h
ViewContainer
Definition: View.h:161