/* Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration */ #ifndef JET_TAG_DECORATOR_ALG_H #define JET_TAG_DECORATOR_ALG_H #include "FlavorTagDiscriminants/DecoratorAlg.h" #include "FlavorTagDiscriminants/IJetTagDecorator.h" #include "xAODJet/JetContainer.h" #include "xAODTracking/TrackParticleContainer.h" namespace detail { using JetTag_t = FlavorTagDiscriminants::DecoratorAlg< xAOD::JetContainer, IJetTagDecorator, xAOD::TrackParticleContainer >; } namespace FlavorTagDiscriminants { class JetTagDecoratorAlg : public detail::JetTag_t { public: JetTagDecoratorAlg(const std::string& name, ISvcLocator* svcloc); }; } #endif