ATLAS Offline Software
Loading...
Searching...
No Matches
TrackSmearingAlg.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef INDET_TRACKSMEARINGALG_H
6#define INDET_TRACKSMEARINGALG_H
7
16
17namespace InDet {
18
24public:
25 using AthReentrantAlgorithm::AthReentrantAlgorithm;
26 StatusCode initialize() override;
27 StatusCode execute(const EventContext& ctx) const override;
28
29private:
30 PublicToolHandle<IInDetTrackSmearingTool> m_smearingTool{this, "SmearingTool", ""};
31 PublicToolHandle<IInDetTrackBiasingTool> m_biasingTool{this, "BiasingTool", ""};
33 this, "InputTrackContainer", "InDetTrackParticles", ""};
35 this, "OutputTrackContainer", "InDetTrackParticles_smeared", ""};
36 Gaudi::Property<std::string> m_systematicVariation{
37 this, "SystematicVariation", "",
38 "Systematic variation name (empty = nominal)"};
39
40 // Built from m_systematicVariation in initialize(), const thereafter.
41 // Passed to the reentrant applyCorrection(track, syst) overload in execute().
43};
44
45} // namespace InDet
46
47#endif // INDET_TRACKSMEARINGALG_H
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.
An algorithm that can be simultaneously executed in multiple threads.
Class to wrap a set of SystematicVariations.
Makes a shallow copy of the input track collection and applies smearing and (optionally) biasing tool...
CP::SystematicSet m_systSet
Gaudi::Property< std::string > m_systematicVariation
SG::ReadHandleKey< xAOD::TrackParticleContainer > m_inTrackKey
SG::WriteHandleKey< xAOD::TrackParticleContainer > m_outTrackKey
PublicToolHandle< IInDetTrackSmearingTool > m_smearingTool
StatusCode execute(const EventContext &ctx) const override
PublicToolHandle< IInDetTrackBiasingTool > m_biasingTool
StatusCode initialize() override
Property holding a SG store/key/clid from which a ReadHandle is made.
Property holding a SG store/key/clid from which a WriteHandle is made.
Primary Vertex Finder.