ATLAS Offline Software
Loading...
Searching...
No Matches
IGbtsLayerTool.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 ACTSTOOLINTERFACES_IGBTSLAYERTOOL_H
6#define ACTSTOOLINTERFACES_IGBTSLAYERTOOL_H
7
8// Athena
10
11#include "GaudiKernel/IAlgTool.h"
12
13// ACTS
14#include "Acts/Seeding/GbtsLayerDescription.hpp"
15
16#include <vector>
17
18namespace ActsTrk {
19
27class IGbtsLayerTool : virtual public IAlgTool {
28 public:
30
32 static constexpr short kNoLayer = -100;
33
35 virtual const std::vector<Acts::Experimental::GbtsLayerDescription>&
36 layerDescriptions() const = 0;
37
39 virtual const std::vector<short>& pixelLayers() const = 0;
40
42 virtual const std::vector<short>& stripLayers() const = 0;
43
47 virtual const std::vector<GbtsTechnology>& layerTechnologies() const = 0;
48};
49
50} // namespace ActsTrk
51
52#endif
Builds the GBTS layer geometry out of the ITk readout geometry.
virtual const std::vector< GbtsTechnology > & layerTechnologies() const =0
What each GBTS layer is made of, indexed by the dense GBTS layer index and so parallel to layerDescri...
static constexpr short kNoLayer
Value stored in the hash maps for a module GBTS does not use.
virtual const std::vector< short > & pixelLayers() const =0
Pixel wafer hash to dense GBTS layer index, kNoLayer where unused.
virtual const std::vector< Acts::Experimental::GbtsLayerDescription > & layerDescriptions() const =0
The GBTS layers, indexed by the dense GBTS layer index.
virtual const std::vector< short > & stripLayers() const =0
Strip wafer hash to dense GBTS layer index, kNoLayer where unused.
DeclareInterfaceID(IGbtsLayerTool, 1, 0)
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...