ATLAS Offline Software
Loading...
Searching...
No Matches
GbtsFtfActsSeedingTool.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGINDETPATTRECOTOOLS_GBTSFTFACTSSEEDINGTOOL_H
6#define TRIGINDETPATTRECOTOOLS_GBTSFTFACTSSEEDINGTOOL_H
7
11
12#include "SeedingToolBase.h"
13
15 public:
16
17 // standard AlgTool methods
18 GbtsFtfActsSeedingTool(const std::string&,const std::string&,const IInterface*);
20
21 // standard Athena methods
22 virtual StatusCode initialize() override;
23 virtual StatusCode finalize() override;
24
25 // Interface
26 virtual StatusCode createSeeds(
27 const EventContext& ctx,
28 const std::vector<const xAOD::SpacePointContainer*>&
29 spacePointCollections,
30 const Eigen::Vector3f& beamSpotPos, float bFieldInZ,
31 ActsTrk::SeedContainer& seedContainer) const override;
32
33 protected:
34
35 SG::ReadCondHandleKey<InDet::BeamSpotData> m_beamSpotKey { this, "BeamSpotKey", "BeamSpotData", "SG key for beam spot" };
36
37 const std::vector<short>* m_sct_h2l{nullptr};
38 const std::vector<short>* m_pix_h2l{nullptr};
39 std::vector<bool> m_are_pixels;
40
41};
42
43#endif
virtual StatusCode finalize() override
virtual StatusCode initialize() override
SG::ReadCondHandleKey< InDet::BeamSpotData > m_beamSpotKey
GbtsFtfActsSeedingTool(const std::string &, const std::string &, const IInterface *)
std::vector< bool > m_are_pixels
const std::vector< short > * m_sct_h2l
const std::vector< short > * m_pix_h2l
virtual StatusCode createSeeds(const EventContext &ctx, const std::vector< const xAOD::SpacePointContainer * > &spacePointCollections, const Eigen::Vector3f &beamSpotPos, float bFieldInZ, ActsTrk::SeedContainer &seedContainer) const override
SeedingToolBase(const std::string &t, const std::string &n, const IInterface *p)