ATLAS Offline Software
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:

Public Types

using StripRDORawData = SCT_RDORawData
 
using StripID = SCT_ID
 

Public Member Functions

 StripClusteringTool (const std::string &type, const std::string &name, const IInterface *parent)
 
virtual StatusCode initialize () override
 
virtual StatusCode clusterize (const EventContext &ctx, const InDetRawDataCollection< StripRDORawData > &RDOs, const InDet::SiDetectorElementStatus &stripDetElStatus, const InDetDD::SiDetectorElement &element, std::vector< typename IStripClusteringTool::ClusterCollection > &collection) const override
 
virtual StatusCode makeClusters (const EventContext &ctx, typename IStripClusteringTool::ClusterCollection &cluster, const InDetDD::SiDetectorElement &element, typename ClusterContainer::iterator itrContainer) const override
 

Private Member Functions

std::optional< std::pair< typename IStripClusteringTool::CellCollection, bool > > unpackRDOs (const EventContext &ctx, const RawDataCollection &RDOs, const InDet::SiDetectorElementStatus &stripDetElStatus, const InDetDD::SiDetectorElement &element) const
 
bool passTiming (const std::bitset< 3 > &timePattern) const
 
StatusCode decodeTimeBins ()
 
bool isBadStrip (const EventContext &ctx, const InDet::SiDetectorElementStatus *sctDetElStatus, const StripID &idHelper, IdentifierHash waferHash, Identifier stripId) const
 
StatusCode makeCluster (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 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}
 
const StripIDm_stripID {nullptr}
 

Detailed Description

Definition at line 26 of file StripClusteringTool.h.

Member Typedef Documentation

◆ StripID

Definition at line 29 of file StripClusteringTool.h.

◆ StripRDORawData

Definition at line 28 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 EventContext &  ctx,
const InDetRawDataCollection< StripRDORawData > &  RDOs,
const InDet::SiDetectorElementStatus stripDetElStatus,
const InDetDD::SiDetectorElement element,
std::vector< typename IStripClusteringTool::ClusterCollection > &  collection 
) const
overridevirtual

Definition at line 88 of file StripClusteringTool.cxx.

93 {
94  IdentifierHash idHash = RDOs.identifyHash();
95  // At least an empty cluster collection needs to be always added because the
96  // assumption is that there is one element per element RawDataCollection.
97  collection.emplace_back();
98  bool goodModule = true;
99  if (m_checkBadModules.value()) {
100  goodModule = stripDetElStatus.isGood(idHash);
101  }
102 
105  stripDetElStatus.isGood(idHash), m_conditionsTool->isGood(idHash));
106 
107  if (!goodModule) {
108  ATH_MSG_DEBUG("Strip module failed status check");
109  return StatusCode::SUCCESS;
110  }
111 
112  // If more than a certain number of RDOs set module to bad
113  // in this case we skip clusterization
114  if (m_maxFiredStrips != 0u) {
115  unsigned int nFiredStrips = 0u;
116  for (const SCT_RDORawData* rdo : RDOs) {
117  nFiredStrips += rdo->getGroupSize();
118  }
119  if (nFiredStrips > m_maxFiredStrips)
120  return StatusCode::SUCCESS;
121  }
122 
123  std::optional<std::pair<typename IStripClusteringTool::CellCollection,bool>> unpckd
124  = unpackRDOs(ctx, RDOs, stripDetElStatus, element);
125 
126  if (not unpckd.has_value()) {
127  ATH_MSG_FATAL("Error encountered while unpacking strip RDOs!");
128  return StatusCode::FAILURE;
129  }
130 
131  auto& [cells, badStripOnModule] = *unpckd;
132  // Bad strips on a module invalidates the hitsInThirdTimeBin word.
133  // Therefore set it to 0 if that's the case.
134  // We are currently not using this, but keeping it here should we need it in the future
135 
136  ClusterCollection clusters =
137  Acts::Ccl::createClusters<CellCollection, typename IStripClusteringTool::ClusterCollection, 1>(cells);
138  collection.back() = std::move(clusters);
139 
140  return StatusCode::SUCCESS;
141 }

◆ decodeTimeBins()

StatusCode ActsTrk::StripClusteringTool::decodeTimeBins ( )
private

Definition at line 68 of file StripClusteringTool.cxx.

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

◆ 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  ATH_CHECK( detStore()->retrieve(m_stripID, "SCT_ID") );
64 
65  return StatusCode::SUCCESS;
66 }

◆ isBadStrip()

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

Definition at line 267 of file StripClusteringTool.cxx.

272 {
273  if (stripDetElStatus) {
274  const int strip_i{stripID.strip(stripId)};
276  stripDetElStatus,
277  stripDetElStatus->isCellGood(waferHash.value(), strip_i),
278  m_conditionsTool->isGood(stripId, InDetConditions::SCT_STRIP));
279  return not stripDetElStatus->isCellGood(waferHash.value(), strip_i) ;
280  }
281  return not m_conditionsTool->isGood(stripId, InDetConditions::SCT_STRIP, ctx);
282 }

◆ makeCluster()

StatusCode ActsTrk::StripClusteringTool::makeCluster ( 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 226 of file StripClusteringTool.cxx.

233 {
234  std::size_t size = cluster.ids.size();
235 
236  auto [localPos, globalPos]
237  = computePosition(cluster, size, lorentzShift, stripID, element, design);
238 
239  // For Strip Clusters the identifier is taken from the front rod list object
240  // This is the same strategy used in Athena:
241  // Since clusterId is arbitary (it only needs to be unique) just use ID of first strip
242  // For strip Cluster it has been found that "identifierOfPosition" does not produces unique values
243  cl.setMeasurement<1>(element.identifyHash(), localPos, localCov);
244  cl.setIdentifier( cluster.ids.front() );
245 
246  // Do I really need the global position in fast tracking?
247  cl.globalPosition() = globalPos;
248 
249  cl.setChannelsInPhi(size);
250  cl.setRDOlist(std::move(cluster.ids));
251 
252  return StatusCode::SUCCESS;
253 }

◆ makeClusters()

StatusCode ActsTrk::StripClusteringTool::makeClusters ( const EventContext &  ctx,
typename IStripClusteringTool::ClusterCollection cluster,
const InDetDD::SiDetectorElement element,
typename ClusterContainer::iterator  itrContainer 
) const
overridevirtual

Definition at line 145 of file StripClusteringTool.cxx.

149 {
150  const IdentifierHash idHash = element.identifyHash();
151  double lorentzShift = m_lorentzAngleTool->getLorentzShift(idHash, ctx);
152 
153  const InDetDD::SiDetectorDesign& design = element.design();
154  // get the pitch, this will be the local covariance for the cluster
155  float pitch = element.isBarrel()
156  ? design.phiPitch()
157  : dynamic_cast<const InDetDD::StripStereoAnnulusDesign&>(element.design()).phiPitchPhi();
158  Eigen::Matrix<float,1,1> localCov(pitch * pitch * ONE_TWELFTH);
159 
160  for (typename IStripClusteringTool::Cluster& cl : clusters) {
161  try {
162  xAOD::StripCluster *xaodCluster = *itrContainer;
164  lorentzShift,
165  localCov,
166  *m_stripID,
167  element,
168  design,
169  *xaodCluster));
170  ++itrContainer;
171  } catch (const std::exception& e) {
172  ATH_MSG_FATAL("Exception thrown while creating xAOD::StripCluster:"
173  << e.what());
174  ATH_MSG_FATAL("Detector Element identifier: " << element.identify());
175  ATH_MSG_FATAL("Strip Identifiers in cluster:");
176  for (const auto& id : cl.ids)
177  ATH_MSG_FATAL(" " << id);
178  return StatusCode::FAILURE;
179  }
180  }
181 
182  return StatusCode::SUCCESS;
183 }

◆ passTiming()

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

Definition at line 256 of file StripClusteringTool.cxx.

256  {
257  // Convert the given timebin to a bit set and test each bit
258  // if bit is -1 (i.e. X) it always passes, other wise require exact match of 0/1
259  // N.B bitset has opposite order to the bit pattern we define
260  if (m_timeBinBits[0] != -1 and timePattern.test(2) != static_cast<bool>(m_timeBinBits[0])) return false;
261  if (m_timeBinBits[1] != -1 and timePattern.test(1) != static_cast<bool>(m_timeBinBits[1])) return false;
262  if (m_timeBinBits[2] != -1 and timePattern.test(0) != static_cast<bool>(m_timeBinBits[2])) return false;
263  return true;
264 }

◆ unpackRDOs()

std::optional< std::pair< typename IStripClusteringTool::CellCollection, bool > > ActsTrk::StripClusteringTool::unpackRDOs ( const EventContext &  ctx,
const RawDataCollection &  RDOs,
const InDet::SiDetectorElementStatus stripDetElStatus,
const InDetDD::SiDetectorElement element 
) const
private

Definition at line 286 of file StripClusteringTool.cxx.

290 {
291  const InDetDD::SiDetectorDesign& design = element.design();
292 
293  CellCollection cells;
294  // reserve memory. number evaluated on ttbar pu200
295  cells.reserve(60);
296  bool badStripOnModule{false};
297 
298  std::size_t ncells = static_cast<size_t>(dynamic_cast<const InDetDD::SCT_ModuleSideDesign&>(design).cells());
299 
300  // Simple single-entry cache
301  Identifier::value_type waferId_compact_cache = 0;
302  IdentifierHash waferHash_cache(0);
303  bool cache_valid = false;
304 
305  for (const StripRDORawData * raw : RDOs) {
306  const SCT3_RawData* raw3 = dynamic_cast<const SCT3_RawData*>(raw);
307  if (!raw3) {
308  ATH_MSG_ERROR("Casting into SCT3_RawData failed");
309  return {};
310  }
311 
312  std::bitset<3> timePattern(raw3->getTimeBin());
313  if (!passTiming(timePattern)) {
314  ATH_MSG_DEBUG("Strip failed timing check");
315  continue;
316  }
317 
318  Identifier firstStripId = raw->identify();
319  Identifier waferId = m_stripID->wafer_id(firstStripId);
320 
321  Identifier::value_type waferId_compact = waferId.get_compact();
322 
323 
324  // Check cache - will be invalid when switching wafer groups
325  if (!cache_valid || waferId_compact != waferId_compact_cache) {
326  waferId_compact_cache = waferId_compact;
327  waferHash_cache = m_stripID->wafer_hash(waferId);
328  cache_valid = true;
329  }
330 
331  std::size_t iFirstStrip = static_cast<size_t>(m_stripID->strip(firstStripId));
332 
333  std::size_t iMaxStrip = std::min(
334  iFirstStrip + raw->getGroupSize(),
335  ncells
336  );
337 
338  for (size_t i = iFirstStrip; i < iMaxStrip; i++) {
339  Identifier stripIdent = m_stripID->strip_id(waferId, i);
340  if (isBadStrip(ctx, &stripDetElStatus, *m_stripID, waferHash_cache, stripIdent)) {
341  // Bad strip, throw it out to minimize useless work.
342  ATH_MSG_DEBUG("Bad strip encountered:" << stripIdent
343  << ", wafer is: " << waferId);
344  badStripOnModule = true;
345  } else {
346  // Good strip!
347  cells.emplace_back(i, stripIdent, std::move(timePattern));
348  }
349  }
350  }
351 
352  return std::make_pair(std::move(cells), badStripOnModule);
353 }

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 89 of file StripClusteringTool.h.

◆ m_conditionsTool

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

Definition at line 86 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 78 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 92 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 95 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 83 of file StripClusteringTool.h.

◆ m_stripID

const StripID* ActsTrk::StripClusteringTool::m_stripID {nullptr}
private

Definition at line 101 of file StripClusteringTool.h.

◆ m_timeBinBits

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

Definition at line 98 of file StripClusteringTool.h.

◆ m_timeBinStr

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

Definition at line 76 of file StripClusteringTool.h.


The documentation for this class was generated from the following files:
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
AllowedVariables::e
e
Definition: AsgElectronSelectorTool.cxx:37
RunTileCalibRec.cells
cells
Definition: RunTileCalibRec.py:281
ActsTrk::StripClusteringTool::unpackRDOs
std::optional< std::pair< typename IStripClusteringTool::CellCollection, bool > > unpackRDOs(const EventContext &ctx, const RawDataCollection &RDOs, const InDet::SiDetectorElementStatus &stripDetElStatus, const InDetDD::SiDetectorElement &element) const
Definition: StripClusteringTool.cxx:286
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:267
ActsTrk::StripClusteringTool::m_stripID
const StripID * m_stripID
Definition: StripClusteringTool.h:101
ActsTrk::StripClusteringTool::m_lorentzAngleTool
ToolHandle< ISiLorentzAngleTool > m_lorentzAngleTool
Definition: StripClusteringTool.h:78
InDetDD::SCT_ModuleSideDesign
Definition: SCT_ModuleSideDesign.h:40
min
constexpr double min()
Definition: ap_fixedTest.cxx:26
Identifier::get_compact
value_type get_compact() const
Get the compact id.
SCT_RDORawData
Definition: SCT_RDORawData.h:24
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:89
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)
ActsTrk::StripClusteringTool::makeCluster
StatusCode makeCluster(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:226
InDetRawDataCollection::identifyHash
virtual IdentifierHash identifyHash() const override final
ActsTrk::StripClusteringTool::m_timeBinBits
int m_timeBinBits[3]
Definition: StripClusteringTool.h:98
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
ActsTrk::StripClusteringTool::StripRDORawData
SCT_RDORawData StripRDORawData
Definition: StripClusteringTool.h:28
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
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
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:495
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
SCT3_RawData::getTimeBin
int getTimeBin() const
Definition: SCT3_RawData.h:92
SCT_ID::wafer_hash
IdentifierHash wafer_hash(const Identifier &wafer_id) const
wafer hash from id - optimized
Definition: SCT_ID.h:492
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:92
ActsTrk::StripClusteringTool::decodeTimeBins
StatusCode decodeTimeBins()
Definition: StripClusteringTool.cxx:68
python.PyKernel.detStore
detStore
Definition: PyKernel.py:41
InDet::SiDetectorElementStatus::isGood
bool isGood(IdentifierHash hash) const
Definition: SiDetectorElementStatus.h:97
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:240
ActsTrk::StripClusteringTool::m_timeBinStr
StringProperty m_timeBinStr
Definition: StripClusteringTool.h:76
ActsTrk::StripClusteringTool::m_stripDetElStatus
SG::ReadHandleKey< InDet::SiDetectorElementStatus > m_stripDetElStatus
Definition: StripClusteringTool.h:83
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
InDetDD::SiDetectorElement::isBarrel
bool isBarrel() const
IdentifierHash::value
value_type value() const
ActsTrk::StripClusteringTool::passTiming
bool passTiming(const std::bitset< 3 > &timePattern) const
Definition: StripClusteringTool.cxx:256
ActsTrk::StripClusteringTool::m_stripDetEleCollKey
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_stripDetEleCollKey
Definition: StripClusteringTool.h:95
ATH_MSG_WARNING
#define ATH_MSG_WARNING(x)
Definition: AthMsgStreamMacros.h:32
SCT_ID::strip
int strip(const Identifier &id) const
Definition: SCT_ID.h:764
RunTileMonitoring.clusters
clusters
Definition: RunTileMonitoring.py:133
Identifier::value_type
unsigned long long value_type
Definition: DetectorDescription/Identifier/Identifier/Identifier.h:27
ActsTrk::ONE_TWELFTH
constexpr double ONE_TWELFTH
Definition: StripClusteringTool.cxx:20
SCT_ID::wafer_id
Identifier wafer_id(int barrel_ec, int layer_disk, int phi_module, int eta_module, int side) const
For a single side of module.
Definition: SCT_ID.h:464
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:86
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:25
InDetDD::DetectorDesign::phiPitch
virtual double phiPitch() const =0
Pitch in phi direction.
InDetDD::SolidStateDetectorElementBase::identify
virtual Identifier identify() const override final
identifier of this detector element (inline)
SCT_ID::strip_id
Identifier strip_id(int barrel_ec, int layer_disk, int phi_module, int eta_module, int side, int strip) const
For an individual strip.
Definition: SCT_ID.h:535
Identifier
Definition: IdentifierFieldParser.cxx:14