ATLAS Offline Software
Loading...
Searching...
No Matches
InDet::PixelRDOTool Class Reference

#include <PixelRDOTool.h>

Inheritance diagram for InDet::PixelRDOTool:
Collaboration diagram for InDet::PixelRDOTool:

Public Member Functions

 PixelRDOTool (const std::string &type, const std::string &name, const IInterface *parent)
virtual ~PixelRDOTool ()=default
virtual StatusCode initialize ()
std::vector< UnpackedPixelRDOgetUnpackedPixelRDOs (const InDetRawDataCollection< PixelRDORawData > &collection, const PixelID &pixelID, const InDetDD::SiDetectorElement *element, const EventContext &ctx, int defaultLabel=-1) const
bool checkDuplication (const PixelID &pixelID, const Identifier &rdoID, const int lvl1, std::vector< UnpackedPixelRDO > &collectionID) const
const InDet::SiDetectorElementStatusgetPixelDetElStatus (const EventContext &ctx) const
const InDetDD::SiDetectorElementcheckCollection (const InDetRawDataCollection< PixelRDORawData > &collection, const EventContext &ctx) const
ServiceHandle< StoreGateSvc > & evtStore ()
 The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.
const ServiceHandle< StoreGateSvc > & detStore () const
 The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.
virtual StatusCode sysInitialize () override
 Perform system initialization for an algorithm.
virtual StatusCode sysStart () override
 Handle START transition.
virtual std::vector< Gaudi::DataHandle * > inputHandles () const override
 Return this algorithm's input handles.
virtual std::vector< Gaudi::DataHandle * > outputHandles () const override
 Return this algorithm's output handles.
Gaudi::Details::PropertyBase & declareProperty (Gaudi::Property< T, V, H > &t)
void updateVHKA (Gaudi::Details::PropertyBase &)
MsgStream & msg () const
bool msgLvl (const MSG::Level lvl) const

Static Public Member Functions

static std::optional< IdentifierisGanged (const Identifier &rdoID, const InDetDD::SiDetectorElement *element)

Protected Member Functions

void renounceArray (SG::VarHandleKeyArray &handlesArray)
 remove all handles from I/O resolution
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce (T &h)
void extraDeps_update_handler (Gaudi::Details::PropertyBase &ExtraDeps)
 Add StoreName to extra input/output deps as needed.

Private Types

typedef ServiceHandle< StoreGateSvcStoreGateSvc_t

Private Member Functions

bool isGoodRDO (const InDet::SiDetectorElementStatus *pixelDetElStatus, const IdentifierHash &moduleHash, const InDetDD::PixelModuleDesign &pixel_design, const Identifier &rdoID, const EventContext &ctx, const IInDetConditionsTool::IDCCacheEntry *cacheEntry) const
Gaudi::Details::PropertyBase & declareGaudiProperty (Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
 specialization for handling Gaudi::Property<SG::VarHandleKey>

Private Attributes

ToolHandle< IInDetConditionsToolm_summaryTool
SG::ReadHandleKey< InDet::SiDetectorElementStatusm_pixelDetElStatus
 Optional read handle to get status data to test whether a pixel detector element is good.
const PixelIDm_pixelId = nullptr
BooleanProperty m_checkDuplicatedRDO
BooleanProperty m_printDuplicate
BooleanProperty m_checkGanged
BooleanProperty m_useModuleMap
BooleanProperty m_isITk
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollectionm_pixelDetEleCollKey
StoreGateSvc_t m_evtStore
 Pointer to StoreGate (event store by default)
StoreGateSvc_t m_detStore
 Pointer to StoreGate (detector store by default)
std::vector< SG::VarHandleKeyArray * > m_vhka
bool m_varHandleArraysDeclared

Detailed Description

Definition at line 48 of file PixelRDOTool.h.

Member Typedef Documentation

◆ StoreGateSvc_t

typedef ServiceHandle<StoreGateSvc> AthCommonDataStore< AthCommonMsg< AlgTool > >::StoreGateSvc_t
privateinherited

Definition at line 388 of file AthCommonDataStore.h.

Constructor & Destructor Documentation

◆ PixelRDOTool()

InDet::PixelRDOTool::PixelRDOTool ( const std::string & type,
const std::string & name,
const IInterface * parent )

Definition at line 22 of file PixelRDOTool.cxx.

24 :
25 AthAlgTool(type,name,parent)
26 {
27 }
AthAlgTool()
Default constructor:

◆ ~PixelRDOTool()

virtual InDet::PixelRDOTool::~PixelRDOTool ( )
virtualdefault

Member Function Documentation

◆ checkCollection()

const InDetDD::SiDetectorElement * InDet::PixelRDOTool::checkCollection ( const InDetRawDataCollection< PixelRDORawData > & collection,
const EventContext & ctx ) const

Definition at line 130 of file PixelRDOTool.cxx.

131 {
132 const unsigned int RDO_size = collection.size();
133 if ( RDO_size==0) {
134 ATH_MSG_DEBUG("Empty RDO collection");
135 return nullptr;
136 }
137
138 IdentifierHash idHash = collection.identifyHash();
139
140 const InDet::SiDetectorElementStatus *pixelDetElStatus = getPixelDetElStatus(ctx);
141 if (pixelDetElStatus){
142 // If module is bad, do not create a cluster collection
145 pixelDetElStatus->isGood(idHash),
146 m_summaryTool->isGood(idHash,ctx)
147 );
148 }
149 //
150 if (m_useModuleMap && (pixelDetElStatus ? !pixelDetElStatus->isGood(idHash): !(m_summaryTool->isGood(idHash, ctx)))) {
151 return nullptr;
152 }
153
154 SG::ReadCondHandle<InDetDD::SiDetectorElementCollection> pixelDetEleHandle(m_pixelDetEleCollKey, ctx);
155 const InDetDD::SiDetectorElementCollection* pixelDetEle(*pixelDetEleHandle);
156 if (not pixelDetEleHandle.isValid() or pixelDetEle == nullptr) {
157 ATH_MSG_FATAL(m_pixelDetEleCollKey.fullKey() << " is not available.");
158 return nullptr;
159 }
160
161 const InDetDD::SiDetectorElement* element = pixelDetEle->getDetectorElement(idHash);
162 const Trk::RectangleBounds *mybounds =
163 dynamic_cast<const Trk::RectangleBounds *>(&element->surface().bounds());
164 if (not mybounds) {
165 ATH_MSG_ERROR("Dynamic cast failed at "<<__LINE__<<" of PixelRDOTool.cxx.");
166 return nullptr;
167 }
168
169 return element;
170 }
#define ATH_MSG_ERROR(x)
#define ATH_MSG_FATAL(x)
#define ATH_MSG_DEBUG(x)
#define VALIDATE_STATUS_ARRAY(use_info, info_val, summary_val)
size_type size() const noexcept
Trk::Surface & surface()
Element Surface.
virtual IdentifierHash identifyHash() const override final
BooleanProperty m_useModuleMap
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_pixelDetEleCollKey
ToolHandle< IInDetConditionsTool > m_summaryTool
const InDet::SiDetectorElementStatus * getPixelDetElStatus(const EventContext &ctx) const
bool isGood(IdentifierHash hash) const

◆ checkDuplication()

bool InDet::PixelRDOTool::checkDuplication ( const PixelID & pixelID,
const Identifier & rdoID,
const int lvl1,
std::vector< UnpackedPixelRDO > & collectionID ) const

Definition at line 90 of file PixelRDOTool.cxx.

94 {
96 return false;
97
98 auto isDuplicate = [&pixelID,rdoID](const UnpackedPixelRDO& rc) -> bool {
99 return (pixelID.phi_index(rdoID) == pixelID.phi_index(rc.ID)) &&
100 (pixelID.eta_index(rdoID) == pixelID.eta_index(rc.ID));
101 };
102
103 const auto pDuplicate = std::find_if(collectionID.begin(), collectionID.end(),isDuplicate);
104 const bool foundDuplicate {pDuplicate != collectionID.end()};
105 if (foundDuplicate)
106 pDuplicate->LVL1 = std::max(pDuplicate->LVL1, lvl1);
107
108 return foundDuplicate;
109 }
static Double_t rc
BooleanProperty m_checkDuplicatedRDO
int eta_index(const Identifier &id) const
Definition PixelID.h:645
int phi_index(const Identifier &id) const
Definition PixelID.h:639

◆ declareGaudiProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareGaudiProperty ( Gaudi::Property< T, V, H > & hndl,
const SG::VarHandleKeyType &  )
inlineprivateinherited

specialization for handling Gaudi::Property<SG::VarHandleKey>

Definition at line 156 of file AthCommonDataStore.h.

158 {
160 hndl.value(),
161 hndl.documentation());
162
163 }
Gaudi::Details::PropertyBase & declareProperty(Gaudi::Property< T, V, H > &t)

◆ declareProperty()

Gaudi::Details::PropertyBase & AthCommonDataStore< AthCommonMsg< AlgTool > >::declareProperty ( Gaudi::Property< T, V, H > & t)
inlineinherited

Definition at line 145 of file AthCommonDataStore.h.

145 {
146 typedef typename SG::HandleClassifier<T>::type htype;
148 }
Gaudi::Details::PropertyBase & declareGaudiProperty(Gaudi::Property< T, V, H > &hndl, const SG::VarHandleKeyType &)
specialization for handling Gaudi::Property<SG::VarHandleKey>

◆ detStore()

const ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::detStore ( ) const
inlineinherited

The standard StoreGateSvc/DetectorStore Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 95 of file AthCommonDataStore.h.

◆ evtStore()

ServiceHandle< StoreGateSvc > & AthCommonDataStore< AthCommonMsg< AlgTool > >::evtStore ( )
inlineinherited

The standard StoreGateSvc (event store) Returns (kind of) a pointer to the StoreGateSvc.

Definition at line 85 of file AthCommonDataStore.h.

◆ extraDeps_update_handler()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::extraDeps_update_handler ( Gaudi::Details::PropertyBase & ExtraDeps)
protectedinherited

Add StoreName to extra input/output deps as needed.

use the logic of the VarHandleKey to parse the DataObjID keys supplied via the ExtraInputs and ExtraOuputs Properties to add the StoreName if it's not explicitly given

◆ getPixelDetElStatus()

const InDet::SiDetectorElementStatus * InDet::PixelRDOTool::getPixelDetElStatus ( const EventContext & ctx) const

Definition at line 112 of file PixelRDOTool.cxx.

113 {
114 if (m_pixelDetElStatus.empty()) {
115 return nullptr;
116 }
117
118 SG::ReadHandle<InDet::SiDetectorElementStatus> status = SG::makeHandle<InDet::SiDetectorElementStatus>(m_pixelDetElStatus, ctx);
119 if (!status.isValid()) {
120 std::stringstream msg;
121 msg << "Failed to get " << m_pixelDetElStatus.key() << " from StoreGate in " << name();
122 throw std::runtime_error(msg.str());
123 }
124 return status.cptr();
125 }
MsgStream & msg() const
SG::ReadHandleKey< InDet::SiDetectorElementStatus > m_pixelDetElStatus
Optional read handle to get status data to test whether a pixel detector element is good.
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
status
Definition merge.py:16

◆ getUnpackedPixelRDOs()

std::vector< UnpackedPixelRDO > InDet::PixelRDOTool::getUnpackedPixelRDOs ( const InDetRawDataCollection< PixelRDORawData > & collection,
const PixelID & pixelID,
const InDetDD::SiDetectorElement * element,
const EventContext & ctx,
int defaultLabel = -1 ) const

Definition at line 173 of file PixelRDOTool.cxx.

178 {
179 std::vector<UnpackedPixelRDO> unpacked;
180 unpacked.reserve(collection.size());
181
182 const IdentifierHash idHash = collection.identifyHash();
183 const InDet::SiDetectorElementStatus *pixelDetElStatus = getPixelDetElStatus(ctx);
184 IInDetConditionsTool::IDCCacheEntry* cacheEntry = (pixelDetElStatus ? nullptr : m_summaryTool->getCacheEntryOut(ctx));
185 const InDetDD::PixelModuleDesign &pixel_design=dynamic_cast<const InDetDD::PixelModuleDesign &>(element->design());
186
187 // For ttbar200 we have ~70 RDO in average per element, with a max of ~1000.
188 // A flat set brings marginal improvements wrt unordered set for those sizes.
189 //std::unordered_set<Identifier> > idset;
190
191 // This is not used for ITk, still we are creating it for the moment and could be optimized away in the future
192 boost::container::flat_set<Identifier> idset;
193
194 for(const auto *const rdo : collection) {
195 const Identifier rdoID = rdo->identify();
196
197 if (!isGoodRDO(pixelDetElStatus,
198 idHash,
199 pixel_design,
200 rdoID,
201 ctx,
202 cacheEntry))
203 continue;
204
205 const int lvl1 = rdo->getLVL1A();
206
207 if (!m_isITk) {
208
209 if (not idset.insert(rdoID).second) {
210 if (m_printDuplicate) ATH_MSG_WARNING("Discarded a duplicated RDO");
211 continue;
212 }
213
215 if (checkDuplication(pixelID, rdoID, lvl1, unpacked))
216 continue;
217 }
218 }
219
220 const int tot = rdo->getToT();
221
222 unpacked.emplace_back(
223 defaultLabel,
224 pixelID.phi_index(rdoID),
225 pixelID.eta_index(rdoID),
226 tot,
227 lvl1,
228 rdoID
229
230 );
231
232 if (m_checkGanged) {
233 std::optional<Identifier> gangedID = isGanged(rdoID, element);
234 if (gangedID.has_value()) {
235 unpacked.emplace_back(
236 defaultLabel,
237 pixelID.phi_index(*gangedID),
238 pixelID.eta_index(*gangedID),
239 tot,
240 lvl1,
241 *gangedID
242
243 );
244 }
245 }
246 }
247 return unpacked;
248 }
#define ATH_MSG_WARNING(x)
virtual const SiDetectorDesign & design() const override final
access to the local description (inline):
BooleanProperty m_isITk
bool isGoodRDO(const InDet::SiDetectorElementStatus *pixelDetElStatus, const IdentifierHash &moduleHash, const InDetDD::PixelModuleDesign &pixel_design, const Identifier &rdoID, const EventContext &ctx, const IInDetConditionsTool::IDCCacheEntry *cacheEntry) const
bool checkDuplication(const PixelID &pixelID, const Identifier &rdoID, const int lvl1, std::vector< UnpackedPixelRDO > &collectionID) const
BooleanProperty m_printDuplicate
static std::optional< Identifier > isGanged(const Identifier &rdoID, const InDetDD::SiDetectorElement *element)
BooleanProperty m_checkGanged

◆ initialize()

StatusCode InDet::PixelRDOTool::initialize ( )
virtual

Definition at line 29 of file PixelRDOTool.cxx.

30 {
31 ATH_CHECK(m_pixelDetEleCollKey.initialize());
32
33 bool disable_smry =
36
37 ATH_CHECK(m_summaryTool.retrieve(DisableTool{disable_smry}));
38
39 ATH_CHECK( m_pixelDetElStatus.initialize( !m_pixelDetElStatus.empty()) );
40 ATH_CHECK( detStore()->retrieve(m_pixelId, "PixelID") );
41
42 return StatusCode::SUCCESS;
43 }
#define ATH_CHECK
Evaluate an expression and check for errors.
#define VALIDATE_STATUS_ARRAY_ACTIVATED
const ServiceHandle< StoreGateSvc > & detStore() const
const PixelID * m_pixelId
retrieve(aClass, aKey=None)
Definition PyKernel.py:110

◆ inputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::inputHandles ( ) const
overridevirtualinherited

Return this algorithm's input handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ isGanged()

std::optional< Identifier > InDet::PixelRDOTool::isGanged ( const Identifier & rdoID,
const InDetDD::SiDetectorElement * element )
static

Definition at line 47 of file PixelRDOTool.cxx.

49 {
50 // If the pixel is ganged, returns a new identifier for it
51 InDetDD::SiCellId cellID = element->cellIdFromIdentifier(rdoID);
52 if (element->numberOfConnectedCells(cellID) > 1) {
53 InDetDD::SiCellId gangedCellID = element->connectedCell(cellID,1);
54 return element->identifierFromCellId(gangedCellID);
55 }
56 return {};
57 }
virtual SiCellId cellIdFromIdentifier(const Identifier &identifier) const override final
SiCellId from Identifier.
virtual Identifier identifierFromCellId(const SiCellId &cellId) const override final
Identifier <-> SiCellId (ie strip number or pixel eta_index,phi_index) Identifier from SiCellId (ie s...
SiCellId connectedCell(const SiCellId cellId, int number) const
Get the cell ids sharing the readout for this cell.
int numberOfConnectedCells(const SiCellId cellId) const
Test if readout cell has more than one diode associated with it.

◆ isGoodRDO()

bool InDet::PixelRDOTool::isGoodRDO ( const InDet::SiDetectorElementStatus * pixelDetElStatus,
const IdentifierHash & moduleHash,
const InDetDD::PixelModuleDesign & pixel_design,
const Identifier & rdoID,
const EventContext & ctx,
const IInDetConditionsTool::IDCCacheEntry * cacheEntry ) const
private

Definition at line 59 of file PixelRDOTool.cxx.

64 {
65
66 std::array<InDetDD::PixelDiodeTree::CellIndexType,2> diode_idx
68 m_pixelId->eta_index(rdoID));
69 InDetDD::PixelDiodeTree::DiodeProxyWithPosition si_param ( design.diodeProxyFromIdxCachePosition(diode_idx));
70 std::uint32_t feValue = design.getFE(si_param);
71
73 m_useModuleMap && pixelDetElStatus,
74 pixelDetElStatus ? pixelDetElStatus->isChipGood(moduleHash,feValue) : false,
75 m_summaryTool->isGood(moduleHash, rdoID, ctx, cacheEntry));
76
77 if (!m_useModuleMap) {
78 return true;
79 }
80
81 if (pixelDetElStatus) {
82
83 return pixelDetElStatus->isChipGood(moduleHash, feValue);
84 } else {
85 return m_summaryTool->isGood(moduleHash, rdoID, ctx, cacheEntry);
86 }
87 }
static constexpr std::array< PixelDiodeTree::CellIndexType, 2 > makeCellIndex(T local_x_idx, T local_y_idx)
Create a 2D cell index from the indices in local-x (phi, row) and local-y (eta, column) direction.
bool isChipGood(IdentifierHash hash, unsigned int chip) const

◆ msg()

MsgStream & AthCommonMsg< AlgTool >::msg ( ) const
inlineinherited

Definition at line 24 of file AthCommonMsg.h.

24 {
25 return this->msgStream();
26 }

◆ msgLvl()

bool AthCommonMsg< AlgTool >::msgLvl ( const MSG::Level lvl) const
inlineinherited

Definition at line 30 of file AthCommonMsg.h.

30 {
31 return this->msgLevel(lvl);
32 }

◆ outputHandles()

virtual std::vector< Gaudi::DataHandle * > AthCommonDataStore< AthCommonMsg< AlgTool > >::outputHandles ( ) const
overridevirtualinherited

Return this algorithm's output handles.

We override this to include handle instances from key arrays if they have not yet been declared. See comments on updateVHKA.

◆ renounce()

std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > AthCommonDataStore< AthCommonMsg< AlgTool > >::renounce ( T & h)
inlineprotectedinherited

Definition at line 380 of file AthCommonDataStore.h.

381 {
382 h.renounce();
384 }
std::enable_if_t< std::is_void_v< std::result_of_t< decltype(&T::renounce)(T)> > &&!std::is_base_of_v< SG::VarHandleKeyArray, T > &&std::is_base_of_v< Gaudi::DataHandle, T >, void > renounce(T &h)

◆ renounceArray()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::renounceArray ( SG::VarHandleKeyArray & handlesArray)
inlineprotectedinherited

remove all handles from I/O resolution

Definition at line 364 of file AthCommonDataStore.h.

364 {
366 }

◆ sysInitialize()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysInitialize ( )
overridevirtualinherited

Perform system initialization for an algorithm.

We override this to declare all the elements of handle key arrays at the end of initialization. See comments on updateVHKA.

Reimplemented in asg::AsgMetadataTool, AthCheckedComponent< AthAlgTool >, AthCheckedComponent<::AthAlgTool >, and DerivationFramework::CfAthAlgTool.

◆ sysStart()

virtual StatusCode AthCommonDataStore< AthCommonMsg< AlgTool > >::sysStart ( )
overridevirtualinherited

Handle START transition.

We override this in order to make sure that conditions handle keys can cache a pointer to the conditions container.

◆ updateVHKA()

void AthCommonDataStore< AthCommonMsg< AlgTool > >::updateVHKA ( Gaudi::Details::PropertyBase & )
inlineinherited

Definition at line 308 of file AthCommonDataStore.h.

308 {
309 // debug() << "updateVHKA for property " << p.name() << " " << p.toString()
310 // << " size: " << m_vhka.size() << endmsg;
311 for (auto &a : m_vhka) {
313 for (auto k : keys) {
314 k->setOwner(this);
315 }
316 }
317 }
std::vector< SG::VarHandleKeyArray * > m_vhka

Member Data Documentation

◆ m_checkDuplicatedRDO

BooleanProperty InDet::PixelRDOTool::m_checkDuplicatedRDO
private
Initial value:
{
this,
"CheckDuplicatedRDO",
false,
"Check duplicated RDOs using isDuplicated method"
}

Definition at line 122 of file PixelRDOTool.h.

122 {
123 this,
124 "CheckDuplicatedRDO",
125 false,
126 "Check duplicated RDOs using isDuplicated method"
127 };

◆ m_checkGanged

BooleanProperty InDet::PixelRDOTool::m_checkGanged
private
Initial value:
{
this,
"CheckGanged",
true,
"Check for ganged pixels when unpacking the RDOs"
}

Definition at line 136 of file PixelRDOTool.h.

136 {
137 this,
138 "CheckGanged",
139 true,
140 "Check for ganged pixels when unpacking the RDOs"
141 };

◆ m_detStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_detStore
privateinherited

Pointer to StoreGate (detector store by default)

Definition at line 393 of file AthCommonDataStore.h.

◆ m_evtStore

StoreGateSvc_t AthCommonDataStore< AthCommonMsg< AlgTool > >::m_evtStore
privateinherited

Pointer to StoreGate (event store by default)

Definition at line 390 of file AthCommonDataStore.h.

◆ m_isITk

BooleanProperty InDet::PixelRDOTool::m_isITk
private
Initial value:
{
this,
"isITk",
false,
"Toggle specific checks for ITk RDO data"
}

Definition at line 151 of file PixelRDOTool.h.

151 {
152 this,
153 "isITk",
154 false,
155 "Toggle specific checks for ITk RDO data"
156 };

◆ m_pixelDetEleCollKey

SG::ReadCondHandleKey<InDetDD::SiDetectorElementCollection> InDet::PixelRDOTool::m_pixelDetEleCollKey
private
Initial value:
{
this,
"PixelDetEleCollKey",
"PixelDetectorElementCollection",
"Key of SiDetectorElementCollection for Pixel"
}

Definition at line 158 of file PixelRDOTool.h.

158 {
159 this,
160 "PixelDetEleCollKey",
161 "PixelDetectorElementCollection",
162 "Key of SiDetectorElementCollection for Pixel"
163 };

◆ m_pixelDetElStatus

SG::ReadHandleKey<InDet::SiDetectorElementStatus> InDet::PixelRDOTool::m_pixelDetElStatus
private
Initial value:
{
this,
"PixelDetElStatus",
"" ,
"Key of SiDetectorElementStatus for Pixel"
}

Optional read handle to get status data to test whether a pixel detector element is good.

If set to e.g. PixelDetectorElementStatus the event data will be used instead of the pixel conditions summary tool.

Definition at line 113 of file PixelRDOTool.h.

113 {
114 this,
115 "PixelDetElStatus",
116 "" ,
117 "Key of SiDetectorElementStatus for Pixel"
118 };

◆ m_pixelId

const PixelID* InDet::PixelRDOTool::m_pixelId = nullptr
private

Definition at line 120 of file PixelRDOTool.h.

◆ m_printDuplicate

BooleanProperty InDet::PixelRDOTool::m_printDuplicate
private
Initial value:
{
this,
"PrintDuplicate",
true,
"Print duplicate RDO warning"
}

Definition at line 129 of file PixelRDOTool.h.

129 {
130 this,
131 "PrintDuplicate",
132 true,
133 "Print duplicate RDO warning"
134 };

◆ m_summaryTool

ToolHandle<IInDetConditionsTool> InDet::PixelRDOTool::m_summaryTool
private
Initial value:
{
this,
"PixelConditionsSummaryTool",
"PixelConditionsSummaryTool",
"Tool to retrieve Pixel Conditions summary"
}

Definition at line 101 of file PixelRDOTool.h.

101 {
102 this,
103 "PixelConditionsSummaryTool",
104 "PixelConditionsSummaryTool",
105 "Tool to retrieve Pixel Conditions summary"
106 };

◆ m_useModuleMap

BooleanProperty InDet::PixelRDOTool::m_useModuleMap
private
Initial value:
{
this,
"UsePixelModuleMap",
true,
"Use bad modules map"
}

Definition at line 144 of file PixelRDOTool.h.

144 {
145 this,
146 "UsePixelModuleMap",
147 true,
148 "Use bad modules map"
149 };

◆ m_varHandleArraysDeclared

bool AthCommonDataStore< AthCommonMsg< AlgTool > >::m_varHandleArraysDeclared
privateinherited

Definition at line 399 of file AthCommonDataStore.h.

◆ m_vhka

std::vector<SG::VarHandleKeyArray*> AthCommonDataStore< AthCommonMsg< AlgTool > >::m_vhka
privateinherited

Definition at line 398 of file AthCommonDataStore.h.


The documentation for this class was generated from the following files: