ATLAS Offline Software
StripClusteringTool.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "StripClusteringTool.h"
6 
7 
8 #include <Acts/Clusterization/Clusterization.hpp>
9 
13 #include <TrkSurfaces/Surface.h>
14 
15 #include <algorithm>
16 #include <stdexcept>
17 
18 
19 namespace ActsTrk {
20 constexpr double ONE_TWELFTH = 1./12.;
21 
22  // Required by ACTS clusterization
23 static
24 int getCellColumn(const StripClusteringTool::Cell& cell)
25 {
26  return cell.index;
27 }
28 
29 // Required by ACTS clusterization
30 static inline void clusterReserve(StripClusteringTool::Cluster& cl,
31  std::size_t n)
32 {
33  cl.ids.reserve(n);
34 }
35 
36 // Required by ACTS clusterization
37 static
38 void clusterAddCell(StripClusteringTool::Cluster& cl, const StripClusteringTool::Cell& cell)
39 {
40  cl.ids.push_back(cell.id.get_compact());
41  if (cl.ids.size() < (sizeof(cl.hitsInThirdTimeBin) * 8)) {
42  cl.hitsInThirdTimeBin |= cell.timeBits.test(0) << cl.ids.size();
43  }
44 }
45 
47  const std::string& type, const std::string& name, const IInterface* parent)
48  : base_class(type,name,parent)
49 {
50 }
51 
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 }
67 
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 }
86 
88 StripClusteringTool::clusterize(const EventContext& ctx,
89  const RawDataCollection& RDOs,
90  const InDet::SiDetectorElementStatus& stripDetElStatus,
91  const InDetDD::SiDetectorElement& element,
92  std::vector<typename IStripClusteringTool::ClusterCollection>& collection) const
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 }
142 
143 
145 StripClusteringTool::makeClusters(const EventContext& ctx,
147  const InDetDD::SiDetectorElement& element,
148  typename ClusterContainer::iterator itrContainer) const
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 }
184 
185 static
186 std::pair<
187  Eigen::Matrix<float,1,1>,
188  Eigen::Matrix<float,3,1>>
189 computePosition(const StripClusteringTool::Cluster& cluster,
190  std::size_t size,
191  double lorentzShift,
192  const IStripClusteringTool::IDHelper& stripID,
193  const InDetDD::SiDetectorElement& element,
194  const InDetDD::SiDetectorDesign& design)
195 {
196 
197  Identifier ids_front(cluster.ids.front());
198  Identifier ids_back(cluster.ids.back());
199  InDetDD::SiCellId frontId = stripID.strip(ids_front);
201  if (size > 1) {
202  InDetDD::SiCellId backId = stripID.strip(ids_back);
203  InDetDD::SiLocalPosition backPos =
204  design.localPositionOfCell(backId);
205  pos = 0.5 * (pos + backPos);
206  }
207 
208  // update the xPhi position
209  pos.xPhi( pos.xPhi() + lorentzShift );
210  Eigen::Matrix<float,3,1> posG(element.surface().localToGlobal(pos).cast<float>());
211 
212  if (!element.isBarrel()) {
213  const InDetDD::StripStereoAnnulusDesign& annulusDesign =
214  dynamic_cast<const InDetDD::StripStereoAnnulusDesign&>
215  (design);
216  pos = annulusDesign.localPositionOfCellPC(element.cellIdOfPosition(pos));
217  }
218 
219  return std::make_pair(Eigen::Matrix<float,1,1>(pos.xPhi()),
220  std::move(posG));
221 }
222 
223 
224 // N.B. the cluster is added to the container
227  double lorentzShift,
228  Eigen::Matrix<float,1,1>& localCov,
229  const StripID& stripID,
230  const InDetDD::SiDetectorElement& element,
231  const InDetDD::SiDetectorDesign& design,
232  xAOD::StripCluster& cl) const
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 }
254 
255 
256 bool StripClusteringTool::passTiming(const std::bitset<3>& timePattern) const {
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 }
265 
266 
267 bool StripClusteringTool::isBadStrip(const EventContext& ctx,
268  const InDet::SiDetectorElementStatus *stripDetElStatus,
269  const StripID& stripID,
270  IdentifierHash waferHash,
271  Identifier stripId) const
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 }
283 
284 
285 std::optional<std::pair<typename IStripClusteringTool::CellCollection, bool>>
286 StripClusteringTool::unpackRDOs(const EventContext& ctx,
287  const RawDataCollection& RDOs,
288  const InDet::SiDetectorElementStatus& stripDetElStatus,
289  const InDetDD::SiDetectorElement& element) const
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 }
354 
355 } // namespace ActsTrk
python.PyKernel.retrieve
def retrieve(aClass, aKey=None)
Definition: PyKernel.py:110
xAOD::iterator
JetConstituentVector::iterator iterator
Definition: JetConstituentVector.cxx:68
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
ActsTrk::StripClusteringTool::makeClusters
virtual StatusCode makeClusters(const EventContext &ctx, typename IStripClusteringTool::ClusterCollection &cluster, const InDetDD::SiDetectorElement &element, typename ClusterContainer::iterator itrContainer) const override
Definition: StripClusteringTool.cxx:145
ATH_MSG_FATAL
#define ATH_MSG_FATAL(x)
Definition: AthMsgStreamMacros.h:34
InDetDD::SolidStateDetectorElementBase::cellIdOfPosition
SiCellId cellIdOfPosition(const Amg::Vector2D &localPos) const
As in previous method but returns SiCellId.
Definition: SolidStateDetectorElementBase.cxx:224
ReadCellNoiseFromCool.cell
cell
Definition: ReadCellNoiseFromCool.py:53
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
Surface.h
SCT_ModuleSideDesign.h
InDetDD::SCT_ModuleSideDesign
Definition: SCT_ModuleSideDesign.h:40
min
constexpr double min()
Definition: ap_fixedTest.cxx:26
InDetDD::DetectorDesign::localPositionOfCell
virtual SiLocalPosition localPositionOfCell(const SiCellId &cellId) const =0
readout or diode id -> position.
ActsTrk::IStripClusteringTool::Cluster
Definition: IStripClusteringTool.h:41
StripClusteringTool.h
InDetDD::SolidStateDetectorElementBase::surface
Trk::Surface & surface()
Element Surface.
Identifier::get_compact
value_type get_compact() const
Get the compact id.
SCT_RDORawData
Definition: SCT_RDORawData.h:24
InDet::SiDetectorElementStatus::isCellGood
bool isCellGood(IdentifierHash hash, unsigned short cell_i) const
Definition: SiDetectorElementStatus.h:107
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
InDetDD::SiLocalPosition
Definition: SiLocalPosition.h:31
ActsTrk::StripClusteringTool::m_timeBinBits
int m_timeBinBits[3]
Definition: StripClusteringTool.h:98
ActsTrk::StripClusteringTool::clusterize
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
Definition: StripClusteringTool.cxx:88
python.setupRTTAlg.size
int size
Definition: setupRTTAlg.py:39
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
SCT3_RawData.h
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
beamspotman.n
n
Definition: beamspotman.py:729
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
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
ActsTrk::StripClusteringTool::initialize
virtual StatusCode initialize() override
Definition: StripClusteringTool.cxx:52
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
InDetDD::SiDetectorElement
Definition: SiDetectorElement.h:109
SG::CondHandleKey::initialize
StatusCode initialize(bool used=true)
InDetDD::SiDetectorElement::isBarrel
bool isBarrel() const
IdentifierHash::value
value_type value() const
python.LumiBlobConversion.pos
pos
Definition: LumiBlobConversion.py:16
ActsTrk::StripClusteringTool::passTiming
bool passTiming(const std::bitset< 3 > &timePattern) const
Definition: StripClusteringTool.cxx:256
InDetDD::SiCellId
Definition: SiCellId.h:29
StripStereoAnnulusDesign.h
ActsTrk::StripClusteringTool::m_stripDetEleCollKey
SG::ReadCondHandleKey< InDetDD::SiDetectorElementCollection > m_stripDetEleCollKey
Definition: StripClusteringTool.h:95
SCT_ID
Definition: SCT_ID.h:68
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
ActsTrk
The AlignStoreProviderAlg loads the rigid alignment corrections and pipes them through the readout ge...
Definition: MSTrackingVolumeBuilder.cxx:24
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):
InDetDD::StripStereoAnnulusDesign::localPositionOfCellPC
SiLocalPosition localPositionOfCellPC(const SiCellId &cellId) const
This is for debugging only.
Definition: StripStereoAnnulusDesign.cxx:428
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)
ActsTrk::StripClusteringTool::StripClusteringTool
StripClusteringTool(const std::string &type, const std::string &name, const IInterface *parent)
Definition: StripClusteringTool.cxx:46
Trk::Surface::localToGlobal
virtual void localToGlobal(const Amg::Vector2D &locp, const Amg::Vector3D &mom, Amg::Vector3D &glob) const =0
Specified by each surface type: LocalToGlobal method without dynamic memory allocation.
ActsTrk::IStripClusteringTool::ClusterCollection
std::vector< Cluster > ClusterCollection
Definition: IStripClusteringTool.h:45
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