ATLAS Offline Software
IPixelReadoutManager.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef IPIXELREADOUTMANAGER_H
6 #define IPIXELREADOUTMANAGER_H
7 
8 #include <cstdint>
9 
10 #include <GaudiKernel/IInterface.h>
12 
13 class Identifier;
14 class IdentifierHash;
15 
16 
17 namespace InDetDD
18 {
19 
20 class IPixelReadoutManager : virtual public IInterface
21 {
22 public:
25  virtual ~IPixelReadoutManager() = default;
26 
27  virtual PixelModuleType getModuleType(Identifier id) const = 0;
28  virtual PixelDiodeType getDiodeType(Identifier id) const = 0;
29 
31  uint32_t FE,
32  uint32_t row,
33  uint32_t column) const = 0;
34  virtual Identifier getPixelId(Identifier offlineId,
35  uint32_t FE,
36  uint32_t row,
37  uint32_t column) const = 0;
38 
39  virtual uint32_t getFE(Identifier diodeId,
40  Identifier offlineId) const = 0;
41  virtual uint32_t getColumn(Identifier diodeId,
42  Identifier offlineId) const = 0;
43  virtual uint32_t getRow(Identifier diodeId,
44  Identifier offlineId) const = 0;
45 };
46 
47 }
48 
49 #endif
query_example.row
row
Definition: query_example.py:24
InDetDD::IPixelReadoutManager::getColumn
virtual uint32_t getColumn(Identifier diodeId, Identifier offlineId) const =0
xAOD::uint32_t
setEventNumber uint32_t
Definition: EventInfo_v1.cxx:127
InDetDD::IPixelReadoutManager
Definition: IPixelReadoutManager.h:21
InDetDD::PixelDiodeType
PixelDiodeType
Definition: PixelReadoutDefinitions.h:20
DeMoUpdate.column
dictionary column
Definition: DeMoUpdate.py:1110
InDetDD::IPixelReadoutManager::DeclareInterfaceID
DeclareInterfaceID(IPixelReadoutManager, 1, 0)
Creates the InterfaceID and interfaceID() method.
InDetDD::IPixelReadoutManager::getRow
virtual uint32_t getRow(Identifier diodeId, Identifier offlineId) const =0
InDetDD::IPixelReadoutManager::getDiodeType
virtual PixelDiodeType getDiodeType(Identifier id) const =0
Identifier
Definition: DetectorDescription/Identifier/Identifier/Identifier.h:32
InDetDD::PixelModuleType
PixelModuleType
Definition: PixelReadoutDefinitions.h:11
InDetDD::IPixelReadoutManager::getModuleType
virtual PixelModuleType getModuleType(Identifier id) const =0
InDetDD::IPixelReadoutManager::getFE
virtual uint32_t getFE(Identifier diodeId, Identifier offlineId) const =0
PixelReadoutDefinitions.h
InDetDD::IPixelReadoutManager::getPixelId
virtual Identifier getPixelId(Identifier offlineId, uint32_t FE, uint32_t row, uint32_t column) const =0
InDetDD
Message Stream Member.
Definition: FakeTrackBuilder.h:8
InDetDD::IPixelReadoutManager::getPixelIdfromHash
virtual Identifier getPixelIdfromHash(IdentifierHash offlineIdHash, uint32_t FE, uint32_t row, uint32_t column) const =0
IdentifierHash
Definition: IdentifierHash.h:38
InDetDD::IPixelReadoutManager::~IPixelReadoutManager
virtual ~IPixelReadoutManager()=default