Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Classes | Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
ActsTrk::StripClusteringTool Class Reference

#include <StripClusteringTool.h>

Inheritance diagram for ActsTrk::StripClusteringTool:
Collaboration diagram for ActsTrk::StripClusteringTool:

Classes

struct  Cell
 
struct  Cluster
 

Public Types

using StripRDORawData = SCT_RDORawData
 
using StripID = SCT_ID
 
using CellCollection = std::vector< Cell >
 
using ClusterCollection = std::vector< Cluster >
 

Public Member Functions

 StripClusteringTool (const std::string &type, const std::string &name, const IInterface *parent)
 
virtual StatusCode initialize () override
 
virtual StatusCode clusterize (const InDetRawDataCollection< StripRDORawData > &RDOs, const StripID &stripID, const EventContext &ctx, xAOD::StripClusterContainer &container) const override
 

Private Member Functions

bool passTiming (const std::bitset< 3 > &timePattern) const
 
StatusCode decodeTimeBins ()
 
std::optional< std::pair< std::vector< Cell >, bool > > unpackRDOs (const InDetRawDataCollection< StripRDORawData > &RDOs, const StripID &idHelper, const InDet::SiDetectorElementStatus *sctDetElStatus, const EventContext &ctx) const
 
bool isBadStrip (const EventContext &ctx, const InDet::SiDetectorElementStatus *sctDetElStatus, const StripID &idHelper, IdentifierHash waferHash, Identifier stripId) const
 
StatusCode makeCluster (const StripClusteringTool::Cluster &cluster, double LorentzShift, Eigen::Matrix< float, 1, 1 > &localCov, const StripID &stripID, const InDetDD::SiDetectorElement *element, const InDetDD::SiDetectorDesign &design, xAOD::StripCluster &container) const
 
const InDet::SiDetectorElementStatusgetStripDetElStatus (const EventContext &ctx) const
 

Private Attributes

StringProperty m_timeBinStr {this, "timeBins", ""}
 
ToolHandle< ISiLorentzAngleToolm_lorentzAngleTool
 
SG::ReadHandleKey< InDet::SiDetectorElementStatusm_stripDetElStatus
 
ToolHandle< IInDetConditionsToolm_conditionsTool
 
Gaudi::Property< bool > m_checkBadModules
 
Gaudi::Property< unsigned int > m_maxFiredStrips
 
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollectionm_stripDetEleCollKey
 
int m_timeBinBits [3] {-1, -1, -1}
 

Detailed Description

Definition at line 26 of file StripClusteringTool.h.

Member Typedef Documentation

◆ CellCollection

Definition at line 47 of file StripClusteringTool.h.

◆ ClusterCollection

Definition at line 48 of file StripClusteringTool.h.

◆ StripID

Definition at line 30 of file StripClusteringTool.h.

◆ StripRDORawData

Definition at line 29 of file StripClusteringTool.h.

Constructor & Destructor Documentation

◆ StripClusteringTool()

ActsTrk::StripClusteringTool::StripClusteringTool ( const std::string &  type,
const std::string &  name,
const IInterface *  parent 
)

Definition at line 46 of file StripClusteringTool.cxx.

48  : base_class(type,name,parent)
49 {
50 }

Member Function Documentation

◆ clusterize()

StatusCode ActsTrk::StripClusteringTool::clusterize ( const InDetRawDataCollection< StripRDORawData > &  RDOs,
const StripID stripID,
const EventContext &  ctx,
xAOD::StripClusterContainer container 
) const
overridevirtual

Definition at line 103 of file StripClusteringTool.cxx.

107 {
108  IdentifierHash idHash = RDOs.identifyHash();
109 
110  const InDet::SiDetectorElementStatus *stripDetElStatus = getStripDetElStatus(ctx);
111 
112  bool goodModule = true;
113  if (m_checkBadModules.value()) {
114  if (stripDetElStatus != nullptr) {
115  goodModule = stripDetElStatus->isGood(idHash);
116  } else {
117  goodModule = m_conditionsTool->isGood(idHash, ctx);
118  }
119  }
120 
123  stripDetElStatus->isGood(idHash), m_conditionsTool->isGood(idHash));
124 
125  if (!goodModule) {
126  ATH_MSG_DEBUG("Strip module failed status check");
127  return StatusCode::SUCCESS;
128  }
129 
130  // If more than a certain number of RDOs set module to bad
131  // in this case we skip clusterization
132  if (m_maxFiredStrips != 0u) {
133  unsigned int nFiredStrips = 0u;
134  for (const SCT_RDORawData* rdo : RDOs) {
135  nFiredStrips += rdo->getGroupSize();
136  }
137  if (nFiredStrips > m_maxFiredStrips)
138  return StatusCode::SUCCESS;
139  }
140 
142  ATH_CHECK( stripDetEleHandle.isValid() );
143  const InDetDD::SiDetectorElementCollection* stripDetEle(*stripDetEleHandle);
144  if (stripDetEle == nullptr) {
145  ATH_MSG_FATAL("Invalid SiDetectorElementCollection");
146  return StatusCode::FAILURE;
147  }
148 
149  const InDetDD::SiDetectorElement* element =
150  stripDetEle->getDetectorElement(idHash);
151 
152  const InDetDD::SiDetectorDesign& design = element->design();
153  // get the pitch, this will be the local covariance for the cluster
154  float pitch = element->isBarrel()
155  ? design.phiPitch()
156  : dynamic_cast<const InDetDD::StripStereoAnnulusDesign&>(element->design()).phiPitchPhi();
157  Eigen::Matrix<float,1,1> localCov(pitch * pitch * ONE_TWELFTH);
158 
159 
160  std::optional<std::pair<CellCollection,bool>> unpckd
161  = unpackRDOs(RDOs, stripID, stripDetElStatus, ctx);
162  if (not unpckd.has_value()) {
163  ATH_MSG_FATAL("Error encountered while unpacking strip RDOs!");
164  return StatusCode::FAILURE;
165  }
166 
167  auto& [cells, badStripOnModule] = *unpckd;
168 
170  Acts::Ccl::createClusters<CellCollection, ClusterCollection, 1>(cells);
171 
172 
173  std::size_t previousSizeContainer = container.size();
174  // Fast insertion trick
175  std::vector<xAOD::StripCluster*> toAddCollection;
176  toAddCollection.reserve(clusters.size());
177  for (std::size_t i(0); i<clusters.size(); ++i)
178  toAddCollection.push_back(new xAOD::StripCluster());
179  container.insert(container.end(), toAddCollection.begin(), toAddCollection.end());
180 
181  double lorentzShift
182  = m_lorentzAngleTool->getLorentzShift(idHash, ctx);
183 
184  for (std::size_t i(0); i<clusters.size(); ++i) {
185  Cluster& cl = clusters[i];
186  // Bad strips on a module invalidates the hitsInThirdTimeBin word.
187  // Therefore set it to 0 if that's the case.
188  // We are currently not using this, but keeping it here should we need it in the future
189  // if (badStripOnModule) {
190  // cl.hitsInThirdTimeBin = 0;
191  // }
192 
193  try {
195  lorentzShift,
196  localCov,
197  stripID,
198  element,
199  design,
200  *container[previousSizeContainer+i]));
201  } catch (const std::exception& e) {
202  ATH_MSG_FATAL("Exception thrown while creating xAOD::StripCluster:"
203  << e.what());
204  ATH_MSG_FATAL("Detector Element identifier: " << element->identify());
205  ATH_MSG_FATAL("Strip Identifiers in cluster:");
206  for (const Identifier& id : cl.ids)
207  ATH_MSG_FATAL(" " << id);
208  return StatusCode::FAILURE;
209  }
210  }
211 
212  return StatusCode::SUCCESS;
213 }

◆ decodeTimeBins()

StatusCode ActsTrk::StripClusteringTool::decodeTimeBins ( )
private

Definition at line 66 of file StripClusteringTool.cxx.

67 {
68  for (size_t i = 0; i < m_timeBinStr.size(); i++) {
69  if (i >= 3) {
70  ATH_MSG_WARNING("Time bin string has excess characters");
71  break;
72  }
73  switch (std::toupper(m_timeBinStr[i])) {
74  case 'X': m_timeBinBits[i] = -1; break;
75  case '0': m_timeBinBits[i] = 0; break;
76  case '1': m_timeBinBits[i] = 1; break;
77  default:
78  ATH_MSG_FATAL("Invalid time bin string: " << m_timeBinStr);
79  return StatusCode::FAILURE;
80  }
81  }
82  return StatusCode::SUCCESS;
83 }

◆ getStripDetElStatus()

const InDet::SiDetectorElementStatus * ActsTrk::StripClusteringTool::getStripDetElStatus ( const EventContext &  ctx) const
private

Definition at line 86 of file StripClusteringTool.cxx.

87 {
88  if (m_stripDetElStatus.empty()) {
89  return nullptr;
90  }
91 
93  if (!status.isValid()) {
94  std::stringstream msg;
95  msg << "Failed to get " << m_stripDetElStatus.key() << " from StoreGate in " << name();
96  throw std::runtime_error(msg.str());
97  }
98 
99  return status.cptr();
100 }

◆ initialize()

StatusCode ActsTrk::StripClusteringTool::initialize ( )
overridevirtual

Definition at line 52 of file StripClusteringTool.cxx.

53 {
54  ATH_MSG_DEBUG("Initializing " << name() << "...");
55 
56  ATH_CHECK(m_conditionsTool.retrieve(DisableTool{!m_stripDetElStatus.empty()} ));
57  ATH_CHECK(m_lorentzAngleTool.retrieve());
59 
62 
63  return StatusCode::SUCCESS;
64 }

◆ isBadStrip()

bool ActsTrk::StripClusteringTool::isBadStrip ( const EventContext &  ctx,
const InDet::SiDetectorElementStatus sctDetElStatus,
const StripID idHelper,
IdentifierHash  waferHash,
Identifier  stripId 
) const
private

Definition at line 289 of file StripClusteringTool.cxx.

294 {
295  if (stripDetElStatus) {
296  const int strip_i{stripID.strip(stripId)};
298  stripDetElStatus,
299  stripDetElStatus->isCellGood(waferHash.value(), strip_i),
300  m_conditionsTool->isGood(stripId, InDetConditions::SCT_STRIP));
301  return not stripDetElStatus->isCellGood(waferHash.value(), strip_i) ;
302  }
303  return not m_conditionsTool->isGood(stripId, InDetConditions::SCT_STRIP, ctx);
304 }

◆ makeCluster()

StatusCode ActsTrk::StripClusteringTool::makeCluster ( const StripClusteringTool::Cluster cluster,
double  LorentzShift,
Eigen::Matrix< float, 1, 1 > &  localCov,
const StripID stripID,
const InDetDD::SiDetectorElement element,
const InDetDD::SiDetectorDesign design,
xAOD::StripCluster container 
) const
private

Definition at line 253 of file StripClusteringTool.cxx.

260 {
261  auto [localPos, globalPos]
262  = computePosition(cluster, lorentzShift, stripID, element, design);
263 
264  // For Strip Clusters the identifier is taken from the front rod list object
265  // This is the same strategy used in Athena:
266  // Since clusterId is arbitary (it only needs to be unique) just use ID of first strip
267  // For strip Cluster it has been found that "identifierOfPosition" does not produces unique values
268  cl.setMeasurement<1>(element->identifyHash(), localPos, localCov);
269  cl.setIdentifier( cluster.ids.front().get_compact() );
270  cl.globalPosition() = globalPos;
271  cl.setRDOlist(cluster.ids);
272  cl.setChannelsInPhi(cluster.ids.size());
273 
274  return StatusCode::SUCCESS;
275 }

◆ passTiming()

bool ActsTrk::StripClusteringTool::passTiming ( const std::bitset< 3 > &  timePattern) const
private

Definition at line 278 of file StripClusteringTool.cxx.

278  {
279  // Convert the given timebin to a bit set and test each bit
280  // if bit is -1 (i.e. X) it always passes, other wise require exact match of 0/1
281  // N.B bitset has opposite order to the bit pattern we define
282  if (m_timeBinBits[0] != -1 and timePattern.test(2) != static_cast<bool>(m_timeBinBits[0])) return false;
283  if (m_timeBinBits[1] != -1 and timePattern.test(1) != static_cast<bool>(m_timeBinBits[1])) return false;
284  if (m_timeBinBits[2] != -1 and timePattern.test(0) != static_cast<bool>(m_timeBinBits[2])) return false;
285  return true;
286 }

◆ unpackRDOs()

std::optional< std::pair< StripClusteringTool::CellCollection, bool > > ActsTrk::StripClusteringTool::unpackRDOs ( const InDetRawDataCollection< StripRDORawData > &  RDOs,
const StripID idHelper,
const InDet::SiDetectorElementStatus sctDetElStatus,
const EventContext &  ctx 
) const
private

Definition at line 308 of file StripClusteringTool.cxx.

312 {
314  // reserve memory. number evaluated on ttbar pu200
315  cells.reserve(60);
316  bool badStripOnModule{false};
317 
318  for (const StripRDORawData * raw : RDOs) {
319  const SCT3_RawData* raw3 = dynamic_cast<const SCT3_RawData*>(raw);
320  if (!raw3) {
321  ATH_MSG_ERROR("Casting into SCT3_RawData failed");
322  return {};
323  }
324 
325  std::bitset<3> timePattern(raw3->getTimeBin());
326  if (!passTiming(timePattern)) {
327  ATH_MSG_DEBUG("Strip failed timing check");
328  continue;
329  }
330 
331  Identifier firstStripId = raw->identify();
332  Identifier waferId = stripID.wafer_id(firstStripId);
333  IdentifierHash waferHash = stripID.wafer_hash(waferId);
334  size_t iFirstStrip = static_cast<size_t>(stripID.strip(firstStripId));
335  size_t iMaxStrip = std::min(
336  iFirstStrip + raw->getGroupSize(),
337  static_cast<size_t>(stripID.strip_max(waferId)) + 1
338  );
339 
340  for (size_t i = iFirstStrip; i < iMaxStrip; i++) {
341  Identifier stripIdent = stripID.strip_id(waferId, i);
342  if (isBadStrip(ctx, stripDetElStatus, stripID, waferHash, stripIdent)) {
343  // Bad strip, throw it out to minimize useless work.
344  ATH_MSG_DEBUG("Bad strip encountered:" << stripIdent
345  << ", wafer is: " << waferId);
346  badStripOnModule = true;
347  } else {
348  // Good strip!
349  cells.emplace_back(i, stripIdent, std::move(timePattern));
350  }
351  }
352  }
353  return std::make_pair(std::move(cells), badStripOnModule);
354 }

Member Data Documentation

◆ m_checkBadModules

Gaudi::Property<bool> ActsTrk::StripClusteringTool::m_checkBadModules
private
Initial value:
{this, "checkBadModules", true,
"Check bad modules using the conditions summary tool"}

Definition at line 104 of file StripClusteringTool.h.

◆ m_conditionsTool

ToolHandle<IInDetConditionsTool> ActsTrk::StripClusteringTool::m_conditionsTool
private
Initial value:
{this, "conditionsTool", "",
"Conditions summary tool"}

Definition at line 101 of file StripClusteringTool.h.

◆ m_lorentzAngleTool

ToolHandle<ISiLorentzAngleTool> ActsTrk::StripClusteringTool::m_lorentzAngleTool
private
Initial value:
{this, "LorentzAngleTool", "",
"Tool to retreive Lorentz angle of Si detector module"
}

Definition at line 93 of file StripClusteringTool.h.

◆ m_maxFiredStrips

Gaudi::Property<unsigned int> ActsTrk::StripClusteringTool::m_maxFiredStrips
private
Initial value:
{this, "maxFiredStrips", 384u,
"Threshold of number of fired strips per wafer. 0 disables the per-wafer cut."}

Definition at line 107 of file StripClusteringTool.h.

◆ m_stripDetEleCollKey

SG::ReadCondHandleKey<InDetDD::SiDetectorElementCollection> ActsTrk::StripClusteringTool::m_stripDetEleCollKey
private
Initial value:
{this, "StripDetEleCollKey", "ITkStripDetectorElementCollection",
"SiDetectorElementCollection key for strip"}

Definition at line 110 of file StripClusteringTool.h.

◆ m_stripDetElStatus

SG::ReadHandleKey<InDet::SiDetectorElementStatus> ActsTrk::StripClusteringTool::m_stripDetElStatus
private
Initial value:
{this, "StripDetElStatus", "",
"SiDetectorElementStatus for strip"}

Definition at line 98 of file StripClusteringTool.h.

◆ m_timeBinBits

int ActsTrk::StripClusteringTool::m_timeBinBits[3] {-1, -1, -1}
private

Definition at line 113 of file StripClusteringTool.h.

◆ m_timeBinStr

StringProperty ActsTrk::StripClusteringTool::m_timeBinStr {this, "timeBins", ""}
private

Definition at line 91 of file StripClusteringTool.h.


The documentation for this class was generated from the following files:
AllowedVariables::e
e
Definition: AsgElectronSelectorTool.cxx:37
RunTileCalibRec.cells
cells
Definition: RunTileCalibRec.py:271
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
ActsTrk::StripClusteringTool::isBadStrip
bool isBadStrip(const EventContext &ctx, const InDet::SiDetectorElementStatus *sctDetElStatus, const StripID &idHelper, IdentifierHash waferHash, Identifier stripId) const
Definition: StripClusteringTool.cxx:289
ActsTrk::StripClusteringTool::m_lorentzAngleTool
ToolHandle< ISiLorentzAngleTool > m_lorentzAngleTool
Definition: StripClusteringTool.h:93
InDetDD::SiDetectorElementCollection
Definition: SiDetectorElementCollection.h:30
SG::ReadCondHandle
Definition: ReadCondHandle.h:44
IdentifierHash::value
unsigned int value() const
SG::ReadHandle
Definition: StoreGate/StoreGate/ReadHandle.h:67
min
constexpr double min()
Definition: ap_fixedTest.cxx:26
ActsTrk::StripClusteringTool::CellCollection
std::vector< Cell > CellCollection
Definition: StripClusteringTool.h:47
ActsTrk::StripClusteringTool::ClusterCollection
std::vector< Cluster > ClusterCollection
Definition: StripClusteringTool.h:48
SCT_RDORawData
Definition: SCT_RDORawData.h:24
ActsTrk::StripClusteringTool::unpackRDOs
std::optional< std::pair< std::vector< Cell >, bool > > unpackRDOs(const InDetRawDataCollection< StripRDORawData > &RDOs, const StripID &idHelper, const InDet::SiDetectorElementStatus *sctDetElStatus, const EventContext &ctx) const
Definition: StripClusteringTool.cxx:308
SG::VarHandleKey::key
const std::string & key() const
Return the StoreGate ID for the referenced object.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:141
SG::VarHandleKey::empty
bool empty() const
Test if the key is blank.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:150
ActsTrk::StripClusteringTool::m_checkBadModules
Gaudi::Property< bool > m_checkBadModules
Definition: StripClusteringTool.h:104
Trk::u
@ u
Enums for curvilinear frames.
Definition: ParamDefs.h:77
python.CaloAddPedShiftConfig.type
type
Definition: CaloAddPedShiftConfig.py:42
InDetDD::SolidStateDetectorElementBase::identifyHash
virtual IdentifierHash identifyHash() const override final
identifier hash (inline)
InDetRawDataCollection::identifyHash
virtual IdentifierHash identifyHash() const override final
SG::makeHandle
SG::ReadCondHandle< T > makeHandle(const SG::ReadCondHandleKey< T > &key, const EventContext &ctx=Gaudi::Hive::currentContext())
Definition: ReadCondHandle.h:274
ActsTrk::StripClusteringTool::m_timeBinBits
int m_timeBinBits[3]
Definition: StripClusteringTool.h:113
ActsTrk::StripClusteringTool::StripRDORawData
SCT_RDORawData StripRDORawData
Definition: StripClusteringTool.h:29
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
columnar::ContainerId::cluster
@ cluster
VALIDATE_STATUS_ARRAY
#define VALIDATE_STATUS_ARRAY(use_info, info_val, summary_val)
Definition: SiDetectorElementStatus.h:51
lumiFormat.i
int i
Definition: lumiFormat.py:85
InDet::SiDetectorElementStatus
Definition: SiDetectorElementStatus.h:62
SCT3_RawData
Definition: SCT3_RawData.h:24
ATH_MSG_DEBUG
#define ATH_MSG_DEBUG(x)
Definition: AthMsgStreamMacros.h:29
InDetDD::StripStereoAnnulusDesign
Definition: StripStereoAnnulusDesign.h:50
calibdata.exception
exception
Definition: calibdata.py:496
test_pyathena.parent
parent
Definition: test_pyathena.py:15
xAOD::StripCluster_v1
Definition: StripCluster_v1.h:17
ATH_CHECK
#define ATH_CHECK
Definition: AthCheckMacros.h:40
DataVector::insert
iterator insert(iterator position, value_type pElem)
Add a new element to the collection.
SCT3_RawData::getTimeBin
int getTimeBin() const
Definition: SCT3_RawData.h:92
SG::VarHandleKey::initialize
StatusCode initialize(bool used=true)
If this object is used as a property, then this should be called during the initialize phase.
Definition: AthToolSupport/AsgDataHandles/Root/VarHandleKey.cxx:103
ActsTrk::StripClusteringTool::m_maxFiredStrips
Gaudi::Property< unsigned int > m_maxFiredStrips
Definition: StripClusteringTool.h:107
ActsTrk::StripClusteringTool::decodeTimeBins
StatusCode decodeTimeBins()
Definition: StripClusteringTool.cxx:66
InDet::SiDetectorElementStatus::isGood
bool isGood(IdentifierHash hash) const
Definition: SiDetectorElementStatus.h:97
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:228
ActsTrk::StripClusteringTool::m_timeBinStr
StringProperty m_timeBinStr
Definition: StripClusteringTool.h:91
ActsTrk::StripClusteringTool::m_stripDetElStatus
SG::ReadHandleKey< InDet::SiDetectorElementStatus > m_stripDetElStatus
Definition: StripClusteringTool.h:98
InDetDD::SiDetectorElement
Definition: SiDetectorElement.h:109
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
InDetDD::SiDetectorElement::isBarrel
bool isBarrel() const
ActsTrk::StripClusteringTool::makeCluster
StatusCode makeCluster(const StripClusteringTool::Cluster &cluster, double LorentzShift, Eigen::Matrix< float, 1, 1 > &localCov, const StripID &stripID, const InDetDD::SiDetectorElement *element, const InDetDD::SiDetectorDesign &design, xAOD::StripCluster &container) const
Definition: StripClusteringTool.cxx:253
ActsTrk::StripClusteringTool::getStripDetElStatus
const InDet::SiDetectorElementStatus * getStripDetElStatus(const EventContext &ctx) const
Definition: StripClusteringTool.cxx:86
ActsTrk::StripClusteringTool::passTiming
bool passTiming(const std::bitset< 3 > &timePattern) const
Definition: StripClusteringTool.cxx:278
DataVector::end
const_iterator end() const noexcept
Return a const_iterator pointing past the end of the collection.
ActsTrk::StripClusteringTool::m_stripDetEleCollKey
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_stripDetEleCollKey
Definition: StripClusteringTool.h:110
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
RunTileMonitoring.clusters
clusters
Definition: RunTileMonitoring.py:133
ActsTrk::ONE_TWELFTH
constexpr double ONE_TWELFTH
Definition: StripClusteringTool.cxx:20
merge.status
status
Definition: merge.py:17
IdentifierHash
This is a "hash" representation of an Identifier. This encodes a 32 bit index which can be used to lo...
Definition: IdentifierHash.h:25
InDetDD::SiDetectorDesign
Definition: SiDetectorDesign.h:50
InDetConditions::SCT_STRIP
@ SCT_STRIP
Definition: InDetHierarchy.h:14
ActsTrk::StripClusteringTool::m_conditionsTool
ToolHandle< IInDetConditionsTool > m_conditionsTool
Definition: StripClusteringTool.h:101
InDetDD::SiDetectorElement::design
virtual const SiDetectorDesign & design() const override final
access to the local description (inline):
dq_make_web_display.cl
cl
print [x.__class__ for x in toList(dqregion.getSubRegions()) ]
Definition: dq_make_web_display.py:26
DataVector::size
size_type size() const noexcept
Returns the number of elements in the collection.
InDetDD::DetectorDesign::phiPitch
virtual double phiPitch() const =0
Pitch in phi direction.
python.AutoConfigFlags.msg
msg
Definition: AutoConfigFlags.py:7
InDetDD::SolidStateDetectorElementBase::identify
virtual Identifier identify() const override final
identifier of this detector element (inline)
Identifier
Definition: IdentifierFieldParser.cxx:14