Skip to content
Snippets Groups Projects
Commit f1f9fc97 authored by Grzegorz Rucki's avatar Grzegorz Rucki
Browse files

TAU RoIs unpacking

Former-commit-id: 48b210ed
parent 6f15aab5
8 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,!28528Revert 63f845ae,!27054Atr20369 210,!26342Monopole: Handle fractionally charged particles
/*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
*/
// L1Decoder includes
#include "TAURoIsUnpackingTool.h"
#include "TrigT1Result/RoIBResult.h"
#include "TrigT1Interfaces/TrigT1CaloDefs.h"
///////////////////////////////////////////////////////////////////
// Public methods:
///////////////////////////////////////////////////////////////////
// Constructors
////////////////
TAURoIsUnpackingTool::TAURoIsUnpackingTool( const std::string& type,
const std::string& name,
const IInterface* parent )
: RoIsUnpackingToolBase(type, name, parent)
const std::string& name,
const IInterface* parent )
: RoIsUnpackingToolBase(type, name, parent),
m_configSvc( "TrigConf::LVL1ConfigSvc/LVL1ConfigSvc", name )
{
}
StatusCode TAURoIsUnpackingTool::initialize() {
CHECK( RoIsUnpackingToolBase::initialize() );
CHECK( m_configSvc.retrieve() );
CHECK( m_trigRoIsKey.initialize() );
CHECK( m_recRoIsKey.initialize() );
return StatusCode::SUCCESS;
}
StatusCode TAURoIsUnpackingTool::initialize()
{
ATH_CHECK(RoIsUnpackingToolBase::initialize());
StatusCode TAURoIsUnpackingTool::updateConfiguration() {
using namespace TrigConf;
m_emThresholds.clear();
const ThresholdConfig* thresholdConfig = m_configSvc->thresholdConfig();
auto filteredThresholds= thresholdConfig->getThresholdVector( L1DataDef::TAU );
ATH_MSG_DEBUG( "Number of filtered thresholds " << filteredThresholds.size() );
for ( auto th : filteredThresholds ) {
if ( th != nullptr ) {
ATH_MSG_INFO( "Found threshold in the configuration: " << th->name() << " of ID: " << HLT::Identifier( th->name() ).numeric() );
m_emThresholds.push_back( th );
} else {
ATH_MSG_DEBUG( "Nullptr to the threshold" );
}
}
if ( m_emThresholds.empty() ) {
ATH_MSG_WARNING( "No TAU thresholds configured" );
} else {
ATH_MSG_INFO( "Configured " << m_emThresholds.size() << " thresholds" );
}
return StatusCode::SUCCESS;
}
StatusCode TAURoIsUnpackingTool::finalize()
{
return StatusCode::SUCCESS;
}
StatusCode TAURoIsUnpackingTool::unpack( const EventContext& ctx,
const ROIB::RoIBResult& roib,
const HLT::IDSet& activeChains ) const {
using namespace TrigCompositeUtils;
auto decisionOutput = std::make_unique<DecisionContainer>();
auto decisionAux = std::make_unique<DecisionAuxContainer>();
decisionOutput->setStore( decisionAux.get() );
auto trigRoIs = std::make_unique< TrigRoiDescriptorCollection >();
auto recRoIs = std::make_unique< DataVector<LVL1::RecEmTauRoI> >();
// RoIBResult contains vector of TAU fragments
for ( auto& emTauFragment : roib.eMTauResult() ) {
for ( auto& roi : emTauFragment.roIVec() ) {
uint32_t roIWord = roi.roIWord();
if ( not ( LVL1::TrigT1CaloDefs::TauRoIWordType == roi.roIType() ) ) {
ATH_MSG_DEBUG( "Skipping RoI as it is not TAU threshold " << roIWord );
continue;
}
auto recRoI = new LVL1::RecEmTauRoI( roIWord, &m_emThresholds );
recRoIs->push_back( recRoI );
auto trigRoI = new TrigRoiDescriptor( roIWord, 0u ,0u,
recRoI->eta(), recRoI->eta()-m_roIWidth, recRoI->eta()+m_roIWidth,
recRoI->phi(), recRoI->phi()-m_roIWidth, recRoI->phi()+m_roIWidth );
trigRoIs->push_back( trigRoI );
ATH_MSG_DEBUG( "RoI word: 0x" << MSG::hex << std::setw( 8 ) << roIWord << MSG::dec );
auto decision = TrigCompositeUtils::newDecisionIn( decisionOutput.get() );
for ( auto th: m_emThresholds ) {
ATH_MSG_VERBOSE( "Checking if the threshold " << th->name() << " passed" );
if ( recRoI->passedThreshold( th->thresholdNumber() ) ) {
ATH_MSG_DEBUG( "Passed Threshold name " << th->name() );
addChainsToDecision( HLT::Identifier( th->name() ), decision, activeChains );
ATH_MSG_DEBUG( "Labeled object with chains: " << [&](){
TrigCompositeUtils::DecisionIDContainer ids;
TrigCompositeUtils::decisionIDs( decision, ids );
return std::vector<TrigCompositeUtils::DecisionID>( ids.begin(), ids.end() ); }() );
}
}
// TODO would be nice to have this. Requires modifying the TC class: decision->setDetail( "Thresholds", passedThresholds ); // record passing threshold names ( for easy debugging )
decision->setObjectLink( "initialRoI", ElementLink<TrigRoiDescriptorCollection>( m_trigRoIsKey.key(), trigRoIs->size()-1 ) );
decision->setObjectLink( "initialRecRoI", ElementLink<DataVector<LVL1::RecEmTauRoI>>( m_recRoIsKey.key(), recRoIs->size()-1 ) );
}
}
for ( auto roi: *trigRoIs ) {
ATH_MSG_DEBUG( "RoI Eta: " << roi->eta() << " Phi: " << roi->phi() << " RoIWord: " << roi->roiWord() );
}
// monitoring
{
using namespace Monitored;
auto RoIsCount = MonitoredScalar::declare( "count", trigRoIs->size() );
auto RoIsPhi = MonitoredCollection::declare( "phi", *trigRoIs.get(), &TrigRoiDescriptor::phi );
auto RoIsEta = MonitoredCollection::declare( "eta", *trigRoIs.get(), &TrigRoiDescriptor::eta );
MonitoredScope::declare( m_monTool, RoIsCount, RoIsEta, RoIsPhi );
}
ATH_MSG_DEBUG( "Unpacked " << trigRoIs->size() << " RoIs" );
// recording
{
SG::WriteHandle<TrigRoiDescriptorCollection> handle( m_trigRoIsKey, ctx );
CHECK( handle.record ( std::move( trigRoIs ) ) );
}
{
SG::WriteHandle<DataVector<LVL1::RecEmTauRoI>> handle( m_recRoIsKey, ctx );
CHECK( handle.record( std::move( recRoIs ) ) );
}
{
auto handle = SG::makeHandle( m_decisionsKey, ctx );
CHECK ( handle.record( std::move( decisionOutput ), std::move( decisionAux ) ) );
}
return StatusCode::SUCCESS; // what else
}
......@@ -4,25 +4,54 @@
#ifndef L1DECODER_TAUROISUNPACKINGTOOL_H
#define L1DECODER_TAUROISUNPACKINGTOOL_H 1
#include "RoIsUnpackingToolBase.h"
// STL includes
#include <string>
#include "TrigConfInterfaces/ILVL1ConfigSvc.h"
#include "TrigConfL1Data/ThresholdConfig.h"
#include "TrigConfL1Data/TriggerThreshold.h"
#include "TrigT1Interfaces/RecEmTauRoI.h"
#include "TrigSteeringEvent/TrigRoiDescriptorCollection.h"
#include "AthenaMonitoring/GenericMonitoringTool.h"
// FrameWork includes
#include "AthenaBaseComps/AthAlgTool.h"
#include "GaudiKernel/ServiceHandle.h"
// L1Decoder includes
#include "RoIsUnpackingToolBase.h"
class TAURoIsUnpackingTool : public RoIsUnpackingToolBase {
public:
TAURoIsUnpackingTool( const std::string& type,
const std::string& name,
const IInterface* parent );
virtual StatusCode updateConfiguration() override { return StatusCode::SUCCESS; }
TAURoIsUnpackingTool(const std::string& type,
const std::string& name,
const IInterface* parent);
StatusCode unpack(const EventContext& ctx,
const ROIB::RoIBResult& roib,
const HLT::IDSet& activeChains) const override;
virtual StatusCode initialize() override;
virtual StatusCode updateConfiguration() override;
virtual StatusCode finalize() override;
private:
};
///@{ @name Properties
SG::WriteHandleKey<TrigRoiDescriptorCollection> m_trigRoIsKey{
this, "OutputTrigRoIs", "TAURoIs", "Name of the RoIs object produced by the unpacker"};
SG::WriteHandleKey< DataVector<LVL1::RecEmTauRoI> > m_recRoIsKey{
this, "OutputRecRoIs", "RecTAURoIs", "Name of the RoIs object produced by the unpacker"};
Gaudi::Property<float> m_roIWidth{this, "RoIWidth", 0.1, "Size of RoI in eta/ phi"};
///@}
ServiceHandle<TrigConf::ILVL1ConfigSvc> m_configSvc;
std::vector<TrigConf::TriggerThreshold*> m_emThresholds;
};
#endif //> !L1DECODER_JROISUNPACKINGTOOL_H
#endif //> !L1DECODER_TAUROISUNPACKINGTOOL_H
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