2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
5 #include "TrigAnalysisHelpers/FeatureRequestHelpers.h"
9 template<class CONTAINER>
10 std::vector<TrigCompositeUtils::LinkInfo<CONTAINER>> ITrigDecisionToolLite::features(const std::string& chain, const EventContext& ctx) const
12 return features<CONTAINER>(FeatureRequestDescriptor(chain), ctx);
15 template<class CONTAINER>
16 std::vector<TrigCompositeUtils::LinkInfo<CONTAINER>> ITrigDecisionToolLite::features(const FeatureRequestDescriptor& frd, const EventContext& ctx) const
18 const CLID clid = ClassID_traits<CONTAINER>::ID();
19 const std::vector<TrigCompositeUtils::TypelessLinkInfo> features = typelessFeatures(frd, clid, ctx);
20 return FeatureRequestHelpers::typedFeaturesWrapper<CONTAINER>(features, ctx, getEventStore());