CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions | Variables
phase1PixelTopology Namespace Reference

Classes

struct  AverageGeometry
 

Functions

constexpr uint16_t divu52 (uint16_t n)
 
constexpr uint8_t findLayer (uint32_t detId, uint8_t sl=0)
 
constexpr uint8_t findLayerFromCompact (uint32_t detId)
 
constexpr uint32_t findMaxModuleStride ()
 
constexpr uint8_t getLayer (uint32_t detId)
 
constexpr bool isBigPixX (uint16_t px)
 
constexpr bool isBigPixY (uint16_t py)
 
constexpr bool isEdgeX (uint16_t px)
 
constexpr bool isEdgeY (uint16_t py)
 
constexpr uint16_t localX (uint16_t px)
 
constexpr uint16_t localY (uint16_t py)
 
template<int N, class Function >
constexpr auto map_to_array (Function f) -> std::array< typename std::result_of< Function(std::size_t)>::type, N >
 
template<class Function , std::size_t... Indices>
constexpr auto map_to_array_helper (Function f, std::index_sequence< Indices...>) -> std::array< typename std::result_of< Function(std::size_t)>::type, sizeof...(Indices)>
 
constexpr uint16_t toRocX (uint16_t px)
 
constexpr uint16_t toRocY (uint16_t py)
 
constexpr bool validateLayerIndex ()
 

Variables

constexpr uint16_t lastColInModule = numColsInModule - 1
 
constexpr uint16_t lastColInRoc = numColsInRoc - 1
 
constexpr uint16_t lastRowInModule = numRowsInModule - 1
 
constexpr uint16_t lastRowInRoc = numRowsInRoc - 1
 
constexpr std::array< uint8_t,
layerIndexSize
layer = map_to_array<layerIndexSize>(findLayerFromCompact)
 
constexpr uint32_t layerIndexSize = numberOfModules / maxModuleStride
 
constexpr char const * layerName [numberOfLayers]
 
constexpr uint32_t layerStart [numberOfLayers+1]
 
constexpr uint32_t maxModuleStride = findMaxModuleStride()
 
constexpr uint32_t numberOfLaddersInBarrel = numberOfModulesInBarrel / 8
 
constexpr uint32_t numberOfLayers = 10
 
constexpr uint32_t numberOfModules = 1856
 
constexpr uint32_t numberOfModulesInBarrel = 1184
 
constexpr uint16_t numColsInModule = 8 * numColsInRoc
 
constexpr uint16_t numColsInRoc = 52
 
constexpr uint32_t numPixsInModule = uint32_t(numRowsInModule) * uint32_t(numColsInModule)
 
constexpr uint16_t numRowsInModule = 2 * numRowsInRoc
 
constexpr uint16_t numRowsInRoc = 80
 
constexpr uint16_t pixelPitchX = 100
 
constexpr uint16_t pixelPitchY = 150
 
constexpr uint16_t pixelThickness = 285
 
constexpr int16_t xOffset = -81
 
constexpr int16_t yOffset = -54 * 4
 

Function Documentation

constexpr uint16_t phase1PixelTopology::divu52 ( uint16_t  n)
inline

Definition at line 130 of file phase1PixelTopology.h.

References submitPVResolutionJobs::q, and alignCSCRings::r.

Referenced by localY(), and toRocY().

130  {
131  n = n >> 2;
132  uint16_t q = (n >> 1) + (n >> 4);
133  q = q + (q >> 4) + (q >> 5);
134  q = q >> 3;
135  uint16_t r = n - q * 13;
136  return q + ((r + 3) >> 4);
137  }
constexpr uint8_t phase1PixelTopology::findLayer ( uint32_t  detId,
uint8_t  sl = 0 
)

Definition at line 90 of file phase1PixelTopology.h.

References mps_fire::i, layerStart, and findQualityFiles::size.

90  {
91  for (uint8_t i = sl; i < std::size(layerStart); ++i)
92  if (detId < layerStart[i + 1])
93  return i;
94  return std::size(layerStart);
95  }
constexpr uint32_t layerStart[numberOfLayers+1]
tuple size
Write out results.
constexpr uint8_t phase1PixelTopology::findLayerFromCompact ( uint32_t  detId)

Definition at line 97 of file phase1PixelTopology.h.

References mps_fire::i, layerStart, maxModuleStride, and findQualityFiles::size.

97  {
98  detId *= maxModuleStride;
99  for (uint8_t i = 0; i < std::size(layerStart); ++i)
100  if (detId < layerStart[i + 1])
101  return i;
102  return std::size(layerStart);
103  }
constexpr uint32_t maxModuleStride
constexpr uint32_t layerStart[numberOfLayers+1]
tuple size
Write out results.
constexpr uint32_t phase1PixelTopology::findMaxModuleStride ( )

Definition at line 71 of file phase1PixelTopology.h.

References mps_fire::i, layerStart, dqmiodumpmetadata::n, and findQualityFiles::size.

71  {
72  bool go = true;
73  int n = 2;
74  while (go) {
75  for (uint8_t i = 1; i < std::size(layerStart); ++i) {
76  if (layerStart[i] % n != 0) {
77  go = false;
78  break;
79  }
80  }
81  if (!go)
82  break;
83  n *= 2;
84  }
85  return n / 2;
86  }
constexpr uint32_t layerStart[numberOfLayers+1]
tuple size
Write out results.
constexpr uint8_t phase1PixelTopology::getLayer ( uint32_t  detId)
constexpr bool phase1PixelTopology::isBigPixX ( uint16_t  px)
inline

Definition at line 150 of file phase1PixelTopology.h.

Referenced by pixelCPEforGPU::errorFromDB(), pixelCPEforGPU::errorFromSize(), and pixelCPEforGPU::position().

150 { return (px == 79) | (px == 80); }
constexpr bool phase1PixelTopology::isBigPixY ( uint16_t  py)
inline

Definition at line 152 of file phase1PixelTopology.h.

References lastColInRoc, and toRocY().

Referenced by pixelCPEforGPU::errorFromDB(), pixelCPEforGPU::errorFromSize(), and pixelCPEforGPU::position().

152  {
153  auto ly = toRocY(py);
154  return (ly == 0) | (ly == lastColInRoc);
155  }
constexpr uint16_t lastColInRoc
constexpr uint16_t toRocY(uint16_t py)
constexpr bool phase1PixelTopology::isEdgeX ( uint16_t  px)
inline

Definition at line 139 of file phase1PixelTopology.h.

References lastRowInModule.

Referenced by pixelCPEforGPU::errorFromDB(), and pixelCPEforGPU::errorFromSize().

139 { return (px == 0) | (px == lastRowInModule); }
constexpr uint16_t lastRowInModule
constexpr bool phase1PixelTopology::isEdgeY ( uint16_t  py)
inline

Definition at line 141 of file phase1PixelTopology.h.

References lastColInModule.

Referenced by pixelCPEforGPU::errorFromDB(), and pixelCPEforGPU::errorFromSize().

141 { return (py == 0) | (py == lastColInModule); }
constexpr uint16_t lastColInModule
constexpr uint16_t phase1PixelTopology::localX ( uint16_t  px)
inline
constexpr uint16_t phase1PixelTopology::localY ( uint16_t  py)
inline
template<int N, class Function >
constexpr auto phase1PixelTopology::map_to_array ( Function  f) -> std::array<typename std::result_of<Function(std::size_t)>::type, N>

Definition at line 67 of file phase1PixelTopology.h.

References validate-o2o-wbm::f, and map_to_array_helper().

67  {
68  return map_to_array_helper(f, std::make_index_sequence<N>{});
69  }
constexpr auto map_to_array_helper(Function f, std::index_sequence< Indices...>) -> std::array< typename std::result_of< Function(std::size_t)>::type, sizeof...(Indices)>
template<class Function , std::size_t... Indices>
constexpr auto phase1PixelTopology::map_to_array_helper ( Function  f,
std::index_sequence< Indices...>   
) -> std::array<typename std::result_of<Function(std::size_t)>::type, sizeof...(Indices)>

Definition at line 61 of file phase1PixelTopology.h.

References validate-o2o-wbm::f.

Referenced by map_to_array().

62  {
63  return {{f(Indices)...}};
64  }
Indices
Definition: EdmEventSize.cc:28
constexpr uint16_t phase1PixelTopology::toRocX ( uint16_t  px)
inline

Definition at line 143 of file phase1PixelTopology.h.

References numRowsInRoc.

143 { return (px < numRowsInRoc) ? px : px - numRowsInRoc; }
constexpr uint16_t numRowsInRoc
constexpr uint16_t phase1PixelTopology::toRocY ( uint16_t  py)
inline

Definition at line 145 of file phase1PixelTopology.h.

References divu52(), and PixelMapPlotter::roc.

Referenced by isBigPixY().

145  {
146  auto roc = divu52(py);
147  return py - 52 * roc;
148  }
constexpr uint16_t divu52(uint16_t n)
constexpr bool phase1PixelTopology::validateLayerIndex ( )

Definition at line 116 of file phase1PixelTopology.h.

References mps_fire::i, dqmiolumiharvest::j, layer, layerStart, maxModuleStride, and numberOfModules.

116  {
117  bool res = true;
118  for (auto i = 0U; i < numberOfModules; ++i) {
119  auto j = i / maxModuleStride;
120  res &= (layer[j] < 10);
121  res &= (i >= layerStart[layer[j]]);
122  res &= (i < layerStart[layer[j] + 1]);
123  }
124  return res;
125  }
constexpr uint32_t numberOfModules
constexpr std::array< uint8_t, layerIndexSize > layer
constexpr uint32_t maxModuleStride
constexpr uint32_t layerStart[numberOfLayers+1]

Variable Documentation

constexpr uint16_t phase1PixelTopology::lastColInModule = numColsInModule - 1

Definition at line 17 of file phase1PixelTopology.h.

Referenced by isEdgeY(), and pixelCPEforGPU::position().

constexpr uint16_t phase1PixelTopology::lastColInRoc = numColsInRoc - 1

Definition at line 12 of file phase1PixelTopology.h.

Referenced by isBigPixY().

constexpr uint16_t phase1PixelTopology::lastRowInModule = numRowsInModule - 1

Definition at line 16 of file phase1PixelTopology.h.

Referenced by isEdgeX(), and pixelCPEforGPU::position().

constexpr uint16_t phase1PixelTopology::lastRowInRoc = numRowsInRoc - 1

Definition at line 11 of file phase1PixelTopology.h.

Referenced by localX().

constexpr std::array<uint8_t, layerIndexSize> phase1PixelTopology::layer = map_to_array<layerIndexSize>(findLayerFromCompact)

Definition at line 110 of file phase1PixelTopology.h.

Referenced by CSCComparatorData::add(), SiStripDetSummary::add(), TkHistoMap::add(), GEMClusterProcessor::addCoincidenceClusters(), FWRecoGeometryESProducer::addCSCGeometry(), FWTGeoRecoGeometryESProducer::addCSCGeometry(), FWRecoGeometryESProducer::addDTGeometry(), FWTGeoRecoGeometryESProducer::addDTGeometry(), HcalHitMaker::addHit(), CSCSegAlgoTC::addHit(), CSCSegAlgoSK::addHit(), CSCSegAlgoRU::addHit(), FWTGeoRecoGeometryESProducer::addPixelBarrelGeometry(), GEMClusterProcessor::addSingleClusters(), IntermediateHitTriplets::RegionFiller::addTriplets(), CSCChamberMasker::ageDigis(), SiStripHitEffFromCalibTree::algoAnalyze(), algorithm(), ME0HitsValidation::analyze(), ME0RecHitsValidation::analyze(), CSCRecHit2DValidation::analyze(), CSCSegmentValidation::analyze(), ME0DigisValidation::analyze(), ME0SegmentsValidation::analyze(), CSCWireDigiValidation::analyze(), CSCComparatorDigiValidation::analyze(), CSCAFEBThrAnalysis::analyze(), DTTPAnalyzer::analyze(), SiPixelDigiValid::analyze(), OuterTrackerMonitorTrackingParticles::analyze(), SiPixelVCalDB::analyze(), SiPixelDynamicInefficiencyDB::analyze(), GEMEfficiencyAnalyzer::analyze(), SiPixelDigiSource::analyze(), SiPixelVCalReader::analyze(), SiPixelGenErrorDBObjectUploader::analyze(), SiPixelTemplateDBObjectUploader::analyze(), CSCRecoBadChannelsAnalyzer::analyze(), SiPixel2DTemplateDBObjectUploader::analyze(), DTTTrigCalibration::analyze(), DTEfficiencyTask::analyze(), PFCheckHitPattern::analyze(), HGCGeometryValidation::analyze(), DTResolutionAnalysisTask::analyze(), HGCalRecHitValidation::analyze(), SiPixelHitEfficiencySource::analyze(), GlobalDigisHistogrammer::analyze(), HGCalDigiValidation::analyze(), DTDigiReader::analyze(), PixelLumiDQM::analyze(), PixelBaryCentreAnalyzer::analyze(), DTDigiTask::analyze(), PrimaryVertexValidation::analyze(), L1TrackObjectNtupleMaker::analyze(), L1MuonRecoTreeProducer::analyze(), PFAnalysis::analyze(), HGCalHitValidation::analyzeHGCalSimHit(), HGCalSimHitStudy::analyzeHits(), HGCalSimHitValidation::analyzeHits(), HcalHitValidation::analyzeLayer(), GEMEffByGEMCSCSegmentSource::analyzeME11GE11Segment(), SiStripBadAPVandHotStripAlgorithmFromClusterOccupancy::AnalyzeOccupancy(), HGCalTBAnalyzer::analyzeRecHits(), HGCalTimingAnalyzer::analyzeSimHits(), HGCalTBAnalyzer::analyzeSimHits(), OverlapValidation::analyzeTrajectory(), TrackerOfflineValidationSummary::associateModuleHistsWithTree(), PixelInactiveAreaFinder::badAdjecentDetsBarrel(), GEMNumberingScheme::baseNumberToUnitNumber(), ME0NumberingScheme::baseNumberToUnitNumber(), PixelBaryCentreAnalyzer::beginJob(), DTnoiseDBValidation::beginRun(), SiPixelLorentzAnglePCLHarvester::beginRun(), SiPixelPhase1Analyzer::BookBarrelBins(), Phase1PixelMaps::bookBarrelBins(), DTEfficiencyTask::bookHistograms(), TICLTrackstersEdgesValidation::bookHistograms(), DTt0DBValidation::bookHistos(), DTEfficiencyTest::bookHistos(), Phase2TrackerMonitorDigi::bookLayerHistos(), Phase2TrackerValidateDigi::bookLayerHistos(), SiPixelPhase1ResidualsExtra::bookMEs(), RPCMonitorDigi::bookRegionME(), RPCMonitorDigi::bookWheelDiskME(), sipixelobjects::PixelROC::bpixLayerPhase1(), HGCalGeometryLoader::build(), ME0SegmentBuilder::build(), CSCRecHitDBuilder::build(), TrackerMap::build(), MuonRPCDetLayerGeometryBuilder::buildBarrelLayers(), CSCGeometryBuilder::buildChamber(), MuonRPCDetLayerGeometryBuilder::buildEndcapLayers(), MuonGEMDetLayerGeometryBuilder::buildEndcapLayers(), MuonME0DetLayerGeometryBuilder::buildEndcapLayers(), GEMEfficiencyAnalyzer::buildGEMLayers(), ME0GeometryBuilder::buildGeometry(), DTGeometryBuilderFromDDD::buildGeometry(), CmsMTDConstruction< FilteredView >::buildLayer(), ME0GeometryBuilder::buildLayer(), DTGeometryBuilderFromDD4hep::buildLayer(), DTGeometryBuilderFromDDD::buildLayer(), DTGeometryBuilderFromCondDB::buildLayer(), cms::DTGeometryBuilder::buildLayer(), MuonCSCDetLayerGeometryBuilder::buildLayers(), ETLDetLayerGeometryBuilder::buildLayers(), TrackerAlignmentLevelBuilder::buildPXBAlignmentLevels(), CSCSegAlgoST::buildSegments(), SiPixelClusterSource::buildStructure(), SiPixelDigiSource::buildStructure(), TrackerAlignmentLevelBuilder::buildTIBAlignmentLevels(), PixelTopologyMap::buildTopologyMaps(), HGCalTowerMap2DImpl::buildTowerMap2D(), SETFilter::buildTrajectoryMeasurements(), TrackingParticleNumberOfLayers::calculate(), PixelRegions::calculateBPixID(), RPCStripsRing::calculateHwPlane(), DTSegmentUpdator::calculateT0corr(), HGCalTriggerNtupleHGCTriggerCells::calibrate(), sistrip::MeasureLA::calibration_key(), GEMSuperChamber::chamber(), RPCNameHelper::chamberName(), RPCGeomServ::chambername(), RPCGeomServ::channelInChip(), CSCComparatorData::check(), CSCIndexer::chipIndex(), CSCIndexerBase::chipIndex(), RBXAndHPDCleaner::clean(), PhiMemoryImage::clear_bit(), ResidualRefitting::CollectTrackHits(), CSCComparatorData::comparatorDigis(), CSCSegAlgoShowering::compareProtoSegment(), CSCSegAlgoDF::compareProtoSegment(), compileDMRTrends(), OutInConversionSeedFinder::completeSeed(), InOutConversionSeedFinder::completeSeed(), DTRecHitSegmentResidual::compute(), HFShower::compute(), DTCalibValidationFromMuons::compute(), DTCalibValidation::compute(), DTRecHitQuality::compute(), GlobalRecHitsAnalyzer::compute(), GlobalRecHitsProducer::compute(), SiPixelGainCalibScaler::computeAndStorePalyoads(), RealisticHitToClusterAssociator::computeAssociation(), SiPixelUtility::computeHistoBin(), DDCmsMTDConstruction::construct(), DDHCalEndcapModuleAlgo::constructInsideModule(), DDHCalEndcapAlgo::constructInsideModule(), HCalEndcapModuleAlgo::constructInsideModule(), HCalEndcapAlgo::constructInsideModule(), DDHCalEndcapModuleAlgo::constructInsideModule0(), DDHCalEndcapAlgo::constructInsideModule0(), HCalEndcapModuleAlgo::constructInsideModule0(), HCalEndcapAlgo::constructInsideModule0(), RPCEMap::convert(), HGCalShowerShape::coreShowerLength(), CSCCondSegFit::correctTheCovX(), fastsim::SimplifiedGeometryFactory::createBarrelSimplifiedGeometry(), DTDigiToRaw::createFedBuffers(), fastsim::SimplifiedGeometryFactory::createForwardSimplifiedGeometry(), fastsim::SimplifiedGeometryFactory::createSimplifiedGeometry(), TkHistoMap::createTkHistoMap(), CSCAnodeData2006::CSCAnodeData2006(), CSCSegFit::derivativeMatrix(), GEMCSCSegFit::derivativeMatrix(), CSCTriggerMapping::detId(), CSCIndexerPostls1::detIdFromChipIndex(), CSCIndexerStartup::detIdFromGasGainIndex(), CSCIndexerPostls1::detIdFromGasGainIndex(), CSCIndexerPostls1::detIdFromStripChannelIndex(), PixelRegions::detIdToPixelId(), SiStripBadComponentsDQMServiceReader::detIdToString(), PixelInactiveAreaFinder::detInfo(), SiStripDetCabling::detNumber(), CSCCFEBData::digis(), HGCalTriggerGeometryV9Imp3::disconnectedModule(), CSCDigitizer::doAction(), CSCValidation::doAFEBTiming(), CSCOfflineMonitor::doBXMonitor(), CSCValidation::doGasGain(), tmtt::KFbase::doKF(), DDEcalPreshowerAlgoTB::doLayers(), DDEcalPreshowerAlgo::doLayers(), CSCAFEBConnectAnalysis::done(), CSCAFEBThrAnalysis::done(), HFDarkening::dose(), CSCValidation::doTimeMonitoring(), SiPixelLorentzAnglePCLHarvester::dqmEndJob(), DTNoiseAnalysisTest::dqmEndLuminosityBlock(), DTEfficiencyTest::dqmEndLuminosityBlock(), SiPixelStatusHarvester::dqmEndRun(), DTHitPairForFit::DTHitPairForFit(), DTNoiseCalibration::DTNoiseCalibration(), DTT0Calibration::DTT0Calibration(), DTT0CalibrationRMS::DTT0CalibrationRMS(), ticl::PatternRecognitionbyCLUE3D< TILES >::dumpClusters(), TkHistoMap::dumpInTkMap(), ticl::PatternRecognitionbyCLUE3D< TILES >::dumpTiles(), HGCalShowerShape::eMax(), TkAlCaSkimTreeMerger::endJob(), DTMapGenerator::endJob(), AlignmentStats::endJob(), DTT0Correction::endJob(), APVValidationPlots::endJob(), DTT0Calibration::endJob(), TrackerTreeGenerator::endJob(), tmtt::Histos::endJobAnalysis(), HcalHitRelabeller::energyWt(), HITrackingRegionProducer::estimateMultiplicity(), DDPixBarLayerUpgradeAlgo::execute(), DDPixBarLayerAlgo::execute(), DDTIBLayerAlgo::execute(), PulseArray::extend(), HGCalTriggerNtupleHGCMulticlusters::fill(), HGCalTriggerNtupleHGCTriggerCells::fill(), MuonShowerDigiFiller::fill(), TkHistoMap::fill(), HcalTestAnalysis::fill(), Phase1PixelMaps::fill(), SimG4HcalValidation::fill(), gainCalibHelper::SiPixelGainCalibrationMap< myType, PayloadType, myDetType >::fill(), Phase1PixelMaps::fillBarrelBin(), SiPixelPhase1Analyzer::FillBarrelBinsAnalyze(), SiPixelPhase1Analyzer::FillBarrelBinsRemap(), TrackerRemapper::fillBarrelRemap(), HcalTB04Analysis::fillBuffer(), ME0ReDigiProducer::fillCentralTOFs(), HGCalDigiValidation::fillDigiInfo(), PseudoBayesGrouping::FillDigisByLayer(), TrackerRemapper::fillEndcapRemap(), SiPixelDataQuality::fillGlobalQualityPlot(), HGCalRecHitValidation::fillHitsInfo(), tmtt::Histos::fillInputData(), Phase2TrackerValidateDigi::fillITPixelBXInfo(), Phase2TrackerMonitorDigi::fillITPixelDigiHistos(), HGCalTriggerGeometryV9Imp2::fillMaps(), HGCalTriggerGeometryV9Imp3::fillMaps(), SiPixelPhase1ResidualsExtra::fillMEs(), GlobalDigisProducer::fillMuon(), GlobalDigisAnalyzer::fillMuon(), GlobalRecHitsAnalyzer::fillMuon(), GlobalRecHitsProducer::fillMuon(), HGCalRecHitValidation::fillOccupancyMap(), HGCalDigiValidation::fillOccupancyMap(), HGCalSimHitValidation::fillOccupancyMap(), Phase2TrackerValidateDigi::fillOTBXInfo(), Phase2TrackerMonitorDigi::fillOTDigiHistos(), PixelCPEFast::fillParamsForGpu(), QcdLowPtDQM::fillPixels(), CSCEfficiency::fillRechitsSegments_info(), Phase2TrackerValidateDigi::fillSimHitInfo(), CaloParticleDebugger::fillSimHits(), CaloTruthAccumulator::fillSimHits(), TrackerRemapper::fillStripRemap(), DTCompactMapWriter::fillTDCMap(), DTTimingExtractor::fillTiming(), HGCalHitCalibration::fillWithRecHits(), HcalTB04Analysis::finalAnalysis(), TrackerMap::find_layer(), ticl::PatternRecognitionbyCLUE3D< TILES >::findAndAssignTracksters(), SETFilter::findChi2(), MSLayersAtAngle::findLayer(), TkDetMap::findLayer(), InOutConversionSeedFinder::findSeeds(), MonitorTrackResidualsBase< pixel_or_strip >::findSubdetAndLayer(), HGCalShowerShape::firstLayer(), CSCCondSegFit::fit(), DTSegmentUpdator::fit(), GEMCSCSegFit::fit2(), CSCSimHitMatcher::fitHitsInChamber(), CSCSegFit::fitlsq(), GEMCSCSegFit::fitlsq(), PixelDataFormatter::formatRawData(), trackerDTC::Stub::formatTMTT(), RPCPhiEff::fromRaw(), CSCIndexer::gasGainIndex(), CSCIndexerBase::gasGainIndex(), DTHVHandler::get(), PhiMemoryImage::get_word(), TrackerMap::getAutomaticRange(), DTDeadFlag::getCellDead_HV(), DTDeadFlag::getCellDead_RO(), DTDeadFlag::getCellDead_TP(), DTDeadFlag::getCellDiscCat(), HGCalTriggerGeometryV9Imp2::getCellsFromTriggerCell(), HGCalTriggerGeometryV9Imp3::getCellsFromTriggerCell(), HGCalCoarseTriggerCellMapping::getCoarseTriggerCellId(), TkDetMap::getComponents(), HGCalCoarseTriggerCellMapping::getConstituentTriggerCells(), MuonAlignmentInputXML::getCSCnode(), L1TMuon::GeometryTranslator::getCSCSpecificPoint(), TkDetMap::getDetFromBin(), PixelBarrelNameUpgrade::getDetId(), PixelBarrelName::getDetId(), HFNoseDetIdToModule::getDetIds(), HGCSiliconDetIdToModule::getDetIds(), getDetLayer(), TkDetMap::getDetsForLayer(), HGCSiliconDetIdToModule::getDetTriggerIds(), MuonAlignmentInputXML::getDTnode(), reco::mlpf::getElementProperties(), HGCSD::getEnergyDeposit(), TkHistoMap::getEntries(), OmtfAngleConverter::getGlobalEta(), AngleConverter::getGlobalEta(), AngleConverterBase::getGlobalEta(), SimG4HcalValidation::getHcalScale(), phase2tkutil::getITHistoId(), SiStripLAProfileBooker::getlayer(), hgcal::RecHitTools::getLayer(), getLayer(), CSCToAFEB::getLayer(), HcalLayerDepthMap::getLayerBack(), HcalDDDSimConstants::getLayerBack(), HcalLayerDepthMap::getLayerFront(), HcalDDDSimConstants::getLayerFront(), HitPairGeneratorFromLayerPairForPhotonConversion::getLayerRadius(), hgcal::RecHitTools::getLayerWithOffset(), HGCalTriggerGeometryV9Imp2::getLinksInModule(), HGCalTriggerGeometryV9Imp3::getLpgbtsFromModule(), DTEfficiencyTest::getMEName(), HGCalTriggerGeometryV9Imp2::getModuleFromTriggerCell(), HGCalTriggerGeometryV9Imp3::getModuleFromTriggerCell(), HGCalTriggerGeometryV9Imp3::getModulesFromLpgbt(), HGCalTriggerGeometryV9Imp2::getModuleSize(), getName(), TrajSeedMatcher::getNrValidLayersAlongTraj(), HGCalTriggerGeometryV9Imp2::getOrderedTriggerCellsFromModule(), HGCalTriggerGeometryV9Imp3::getOrderedTriggerCellsFromModule(), phase2tkutil::getOTHistoId(), AngleConverter::getProcessorPhi(), AngleConverterBase::getProcessorPhi(), ThirdHitPrediction::getRanges(), SiStripMiscalibrate::getRegionsFromDetId(), GlobalMuonRefitter::getRidOfSelectStationHits(), RPCLBLinkMapHandler::getRPCDetId(), HGCalTriggerGeometryV9Imp3::getStage1FpgaFromModule(), SiStripFolderOrganizer::GetSubDetAndLayer(), SiStripFolderOrganizer::GetSubDetAndLayerThickness(), HGCalGeometry::getSummary(), HGCalTriggerGeometryV9Imp2::getTriggerCellsFromModule(), HGCalTriggerGeometryV9Imp3::getTriggerCellsFromModule(), HFNoseDetIdToModule::getTriggerDetIds(), SiStripMiscalibrate::getTruncatedRange(), ESTBNumberingScheme::getUnitID(), EcalPreshowerNumberingScheme::getUnitID(), ZdcNumberingScheme::getUnitID(), HFNoseNumberingScheme::getUnitID(), HGCalNumberingScheme::getUnitID(), TkHistoMap::getValue(), LayerMeasurements::groupedMeasurements(), CSCSegAlgoTC::hasHitOnLayer(), CSCSegAlgoDF::hasHitOnLayer(), CSCSegAlgoSK::hasHitOnLayer(), CSCSegAlgoRU::hasHitOnLayer(), reco::HitPattern::hasValidHitInPixelLayer(), HGCalDDDConstants::HGCalDDDConstants(), CSCMake2DRecHit::hitFromStripAndWire(), SeedingLayerSetsBuilder::hits(), MultiHitGeneratorFromChi2::hitSets(), CSCSimHitMatcher::hitStripsInDetId(), PixelTripletNoTipGenerator::hitTriplets(), PixelTripletLowPtGenerator::hitTriplets(), PixelTripletLargeTipGenerator::hitTriplets(), PixelTripletHLTGenerator::hitTriplets(), CSCSimHitMatcher::hitWiregroupsInDetId(), DTSimHitMatcher::hitWiresInDTLayerId(), DTSequentialLayerNumber::id(), MTDDetLayerGeometry::idToLayer(), MuonDetLayerGeometry::idToLayer(), PFHBHERecHitCreator::importRecHits(), PFPSRecHitCreator::importRecHits(), PFHFRecHitCreator::importRecHits(), PixelInactiveAreaFinder::inactiveAreas(), DTTMax::InfoLayer::InfoLayer(), PFBadHcalPseudoClusterProducer::init(), TrackerMap::init(), InnerDeltaPhi::initBarrelLayer(), InnerDeltaPhi::initForwardLayer(), sipixelobjects::PixelROC::initFrameConversionPhase1(), PulseArray::initialize(), HGCalTriggerGeometryV9Imp2::initialize(), HGCalTriggerGeometryV9Imp3::initialize(), CSCOverlapsAlignmentAlgorithm::initialize(), trklet::MemoryBase::initLayerDisk(), trklet::ProcessBase::initLayerDisk(), PFGeometry::innerRadius(), PFGeometry::innerZ(), HGCalTriggerClusterInterpretationEM::interpret(), PixelDataFormatter::interpretRawData(), MagneticFieldMap::inTeslaZ(), Phase1PixelROCMaps::isBPixOuterLadder(), AlignmentPI::isBPixOuterLadder(), SiPixelPI::isBPixOuterLadder(), TrajectoryAtInvalidHit::isDoubleSided(), HitEff::isDoubleSided(), ME0SegmentAlgorithm::isGoodToMerge(), CSCSegAlgoShowering::isHitNearSegment(), CSCSegAlgoDF::isHitNearSegment(), CSCSegAlgoRU::isHitNearSegment(), ME0SegmentsValidation::isMatched(), tmtt::KFbase::kalmanDeadLayers(), tmtt::KFbase::kalmanUpdate(), HGCalShowerShape::lastLayer(), Trajectory::lastLayer(), AlignmentParameterSelector::layerDeselected(), OverlapValidation::layerFromId(), CSCIndexer::layerIndex(), CSCIndexerBase::layerIndex(), LA_Filler_Fitter::layerLabel(), TrackerMap::layername(), SeedingLayerSetsBuilder::layerNamesInSets(), SeedingLayerSetsBuilder::layers(), HGCalTriggerGeometryV9Imp2::layerWithOffset(), HGCalTriggerGeometryV9Imp3::layerWithOffset(), GEMCSCSegmentBuilder::LinkGEMRollsToCSCChamberIndex(), HGCalGeomParameters::loadGeometryHexagon(), HGCalGeomParameters::loadGeometryHexagon8(), TkHistoMap::loadTkHistoMap(), HGCalDDDConstants::locateCell(), MagneticFieldMap::MagneticFieldMap(), EMTFSubsystemCollector::make_copad_gem(), PatternRecognition::make_zone_image(), HGCal3DClustering::makeClusters(), MuonDetLayerGeometry::makeDetLayerId(), OutInConversionSeedFinder::makeEstimator(), HcalHardcodeGeometryLoader::makeHBCells(), HcalHardcodeGeometryLoader::makeHECells(), HGCalDepthPreClusterer::makePreClusters(), HGCalRecHitSimpleAlgo::makeRecHit(), SeedingLayerSetsBuilder::makeSeedingLayerSetsHitsforFastSim(), TSGForOIDNN::makeSeedsFromHitDoublets(), ticl::PatternRecognitionbyCLUE3D< TILES >::makeTracksters(), ticl::PatternRecognitionbyCA< TILES >::makeTracksters(), HGCalDDDConstants::maskCell(), StubsSimHitsMatcher::match(), CSCStubMatcher::matchCLCTsToSimTrack(), MatchedHitRZCorrectionFromBending::MatchedHitRZCorrectionFromBending(), HGCalShowerShape::maxLayer(), SymmetricLayerFinder::mirror(), SiPixelDigitizerAlgorithm::missCalibrate(), CSCGEMMatcher::mitigatedSlopeByConsistency(), InitialGrouping::mixChannels(), MkFitGeometry::MkFitGeometry(), tmtt::KFbase::mkState(), fastsim::LayerNavigator::moveParticleToNextLayer(), MSLayer::MSLayer(), MuonGeometrySanityCheckPoint::MuonGeometrySanityCheckPoint(), RPCGeomServ::name(), HGCalTowerMap2DImpl::newTowerMaps(), RBCProcessRPCDigis::next(), RBCProcessRPCSimDigis::next(), PulseArray::numberOfLayersAtBX(), SimG4HcalValidation::nxNAnalysis(), EventCapture::observeEventEnd(), DTSegmentCand::operator DTChamberRecSegment2D *(), PulseArray::operator()(), CheckHitPattern::operator()(), operator<<(), fastsim::operator<<(), HGCal3DClustering::organizeByLayer(), PFGeometry::outerRadius(), PFGeometry::outerZ(), trklet::TrackletCalculatorBase::overlapSeeding(), SiStripTrackerMapCreator::paintTkMapFromAlarm(), HCalEndcapAlgo::parameterLayer0(), TTStubAlgorithm_official< T >::PatternHitCorrelation(), HGCalShowerShape::percentileLayer(), RPCMonitorDigi::performSourceOperation(), SiPixelStatusHarvester::perLayerRingAverage(), trklet::Globals::phiCorr(), DTTrigGeomUtils::phiRange(), DTLocalTriggerBaseTest::phiRange(), pixelQualityToken_(), PlotDMRTrends(), HIPplots::plotHitMap(), HGCalImagingAlgo::populate(), HGCalCLUEAlgoT< TILE >::populate(), DDHGCalMixLayer::positionMix(), HGCalMixLayer::positionMix(), DDHGCalEEFileAlgo::positionSensitive(), DDHGCalSiliconModule::positionSensitive(), DDHGCalHEFileAlgo::positionSensitive(), HGCalEEFileAlgo::positionSensitive(), HGCalSiliconModule::positionSensitive(), HGCalHEFileAlgo::positionSensitive(), CSCChipSpeedCorrectionDBConditions::prefillDBChipSpeedCorrection(), CSCGasGainCorrectionDBConditions::prefillDBGasGainCorrection(), CtfSpecialSeedGenerator::preliminaryCheck(), MuonPath::primitive(), SiPixelDetSummary::print(), CheckHitPattern::print(), SiStripDetSummary::print(), PFCheckHitPattern::print(), TrackerMap::print(), SeedingLayerSetsHits::print(), TrackerMap::printall(), VectorHitBuilderAlgorithmBase::printCluster(), SiStripQuality::printDetInfo(), ConversionSeedFinder::printLayer(), TrackerMap::printlayers(), TrackerMap::printonline(), SiStripDetCabling::printSummary(), SiStripPI::printSummary(), TkDetMapESProducer::produce(), PFClusterTimeSelector::produce(), TICLLayerTileProducer::produce(), SiPixelDigisClustersFromSoA::produce(), TkAlCaOverlapTagger::produce(), DTRecHitProducer::produce(), cms::DigitizerFP420::produce(), SiPixelFakeLorentzAngleESSource::produce(), HGCalTrackCollectionProducer::produce(), TSGForOIDNN::produce(), DTDigitizer::produce(), TkMSParameterizationBuilder::produce(), reco::CentralityProducer::produce(), CorrectedECALPFClusterProducer::produce(), MuonSimHitProducer::produce(), FastSimProducer::produce(), PixelClusterTagInfoProducer::produce(), CSCDCCUnpacker::produce(), CaloGeometryDBEP< T, U >::produceAligned(), EcalTrivialConditionRetriever::produceEcalAlignmentES(), reco::modules::TrackerTrackHitFilter::produceFromTrajectory(), HGCalIsoCalculator::produceHGCalIso(), SiStripRegionConnectivity::produceRegionCabling(), StandAloneMuonTrajectoryBuilder::propagateTheSeedTSOS(), CSCSegAlgoShowering::pruneFromResidual(), CSCSegAlgoDF::pruneFromResidual(), HcalTestAnalysis::qieAnalysis(), TrackClassifier::qualityInformation(), CSCChannelMapperStartup::rawCSCDetId(), CSCChannelTranslator::rawCSCDetId(), HGCalRadiationMap::readDosePars(), popcon::RPCEMapSourceHandler::readEMap1(), AsciiNeutronReader::readNextEvent(), HGCalSciNoiseMap::readSipmPars(), StandAloneMuonFilter::refit(), HcalHitRelabeller::relabel(), CSCSegAlgoTC::replaceHit(), CSCSegAlgoSK::replaceHit(), CSCSegAlgoRU::replaceHit(), HGCalRecHitWorkerSimple::run(), DTOccupancyTestML::runOccupancyTest(), CSCHitFromStripOnly::runStrip(), CSCHitFromWireOnly::runWire(), TrackerMap::save(), SiPixelPhase1Analyzer::SaveDetectorVertices(), DD4hep_TrackingMaterialAnalyser::saveLayerPlots(), TrackingMaterialAnalyser::saveLayerPlots(), DD4hep_TrackingMaterialAnalyser::saveParameters(), TrackingMaterialAnalyser::saveParameters(), DD4hep_TrackingMaterialAnalyser::saveXml(), TrackingMaterialAnalyser::saveXml(), HGCalSciNoiseMap::scaleByDose(), HGCalSciNoiseMap::scaleBySipmArea(), ApeTreeCreateDefault::sectorBuilder(), ApeEstimator::sectorBuilder(), DTResidualCalibration::segmentToWireDistance(), HGCalConcentratorAutoEncoderImpl::select(), trackerDTC::SensorModule::SensorModule(), DTT0::set(), DTHVStatus::set(), DTDeadFlag::set(), DTStatusFlag::set(), PhiMemoryImage::set_bit(), PhiMemoryImage::set_word(), TkHistoMap::setBinContent(), DTStatusFlag::setCellDead(), DTDeadFlag::setCellDead_HV(), DTDeadFlag::setCellDead_RO(), DTDeadFlag::setCellDead_TP(), DTDeadFlag::setCellDiscCat(), DTStatusFlag::setCellFEMask(), DTStatusFlag::setCellNoHV(), DTStatusFlag::setCellNoise(), DTStatusFlag::setCellTDCMask(), DTStatusFlag::setCellTrigMask(), CSCCondSegFit::setChi2(), CSCSegFit::setChi2(), GEMCSCSegFit::setChi2(), CSCCFEBTimeSlice::setControllerWord(), HGCScintSD::setDetUnitId(), HFNoseSD::setDetUnitId(), HGCalSD::setDetUnitId(), HGCSD::setDetUnitId(), DTHVStatus::setFlagA(), DTHVStatus::setFlagC(), DTHVStatus::setFlagS(), FWEventItemsManager::setFrom(), InitialGrouping::setInChannels(), CSCBaseElectronicsSim::setLayer(), DTPrimitive::setLayerId(), TkDetMap::setLayerMap(), MuonPath::setPrimitive(), SiStripFolderOrganizer::setRingFolder(), GoldenPatternResult::setStubResult(), SiStripTrackerMapCreator::setTkMapFromHistogram(), PixelCPEGenericBase::setXYErrors(), RPCGeomServ::shortname(), CSCSegAlgoShowering::showerSeg(), FW3DViewGeometry::showHGCalEE(), FW3DViewGeometry::showHGCalHSc(), FW3DViewGeometry::showHGCalHSi(), HGCalShowerShape::sigmaEtaEtaMax(), HGCalShowerShape::sigmaPhiPhiMax(), HGCalShowerShape::sigmaRRMax(), HGCalShowerShape::sigmaRRMean(), CSCSimHitMatcher::simHitsMeanStrip(), CSCSimHitMatcher::simHitsMeanWG(), DTSimHitMatcher::simHitsMeanWire(), SiStripDetSummary::SiStripDetSummary(), OutInConversionSeedFinder::startSeed(), CSCCFEBData::statusDigi(), tmtt::StubFEWindows::storedWindowSize(), hgcal::EGammaPCAHelper::storeRecHits(), ResidualRefitting::StoreTrackerRecHits(), CSCIndexer::stripChannelIndex(), CSCIndexerBase::stripChannelIndex(), CSCCFEBData::stripDigis(), CSCEventData::stripDigis(), SiPixelStatusHarvester::substructure(), PhiMemoryImage::test_bit(), MagneticFieldMap::theFieldBarrelHisto(), MagneticFieldMap::theFieldEndcapHisto(), DTTrigGeomUtils::thetaRange(), MatchedHitRZCorrectionFromBending::tibMatchedHitZFixup(), TrackTransformerForGlobalCosmicMuons::TrackerKeep(), TrackerMap::TrackerMap(), HGVHistoProducerAlgo::tracksters_to_SimTracksters(), CosmicMuonTrajectoryBuilder::trajectories(), TrajectorySeedProducer::TrajectorySeedProducer(), HGCalClusteringImpl::triggerCellReshuffling(), HGCalTriggerGeometryV9Imp2::triggerLayer(), HGCalTriggerGeometryV9Imp3::triggerLayer(), CSCSegAlgoDF::tryAddingHitsToSegment(), CSCSegAlgoSK::tryAddingHitsToSegment(), CSCSegAlgoTC::tryAddingHitsToSegment(), CSCSegAlgoRU::tryAddingHitsToSegment(), MSLayersAtAngle::update(), HcalTestAnalysis::update(), SimG4HGCalValidation::update(), SimG4HcalValidation::update(), HcalTB02Analysis::update(), SeedingLayerSetsBuilder::updateEventSetup(), FW3DViewBase::updateHGCalVisibility(), DTSegmentUpdator::updateHits(), PixelInactiveAreaFinder::updatePixelDets(), ValidateGeometry::validateCSCLayerGeometry(), ValidateGeometry::validateDTLayerGeometry(), validateLayerIndex(), HGCalDDDConstants::waferIndex(), HGCalDDDConstants::waferType(), CSCAnodeData::wireDigis(), CSCEventData::wireDigis(), sistrip::EnsembleCalibrationLA::write_ensembles_text(), CSCComparatorData::zero(), and TrackerMap::~TrackerMap().

constexpr uint32_t phase1PixelTopology::layerIndexSize = numberOfModules / maxModuleStride

Definition at line 105 of file phase1PixelTopology.h.

constexpr char const* phase1PixelTopology::layerName[numberOfLayers]
constexpr uint32_t phase1PixelTopology::layerStart[numberOfLayers+1]
constexpr uint32_t phase1PixelTopology::maxModuleStride = findMaxModuleStride()
constexpr uint32_t phase1PixelTopology::numberOfLaddersInBarrel = numberOfModulesInBarrel / 8

Definition at line 58 of file phase1PixelTopology.h.

Referenced by PixelCPEFast::fillParamsForGpu().

constexpr uint32_t phase1PixelTopology::numberOfLayers = 10
constexpr uint32_t phase1PixelTopology::numberOfModules = 1856

Definition at line 28 of file phase1PixelTopology.h.

Referenced by validateLayerIndex().

constexpr uint32_t phase1PixelTopology::numberOfModulesInBarrel = 1184

Definition at line 57 of file phase1PixelTopology.h.

Referenced by PixelCPEFast::fillParamsForGpu().

constexpr uint16_t phase1PixelTopology::numColsInModule = 8 * numColsInRoc

Definition at line 15 of file phase1PixelTopology.h.

constexpr uint16_t phase1PixelTopology::numColsInRoc = 52
constexpr uint32_t phase1PixelTopology::numPixsInModule = uint32_t(numRowsInModule) * uint32_t(numColsInModule)

Definition at line 26 of file phase1PixelTopology.h.

constexpr uint16_t phase1PixelTopology::numRowsInModule = 2 * numRowsInRoc

Definition at line 14 of file phase1PixelTopology.h.

constexpr uint16_t phase1PixelTopology::numRowsInRoc = 80
constexpr uint16_t phase1PixelTopology::pixelPitchX = 100

Definition at line 23 of file phase1PixelTopology.h.

constexpr uint16_t phase1PixelTopology::pixelPitchY = 150

Definition at line 24 of file phase1PixelTopology.h.

Referenced by for().

constexpr uint16_t phase1PixelTopology::pixelThickness = 285

Definition at line 22 of file phase1PixelTopology.h.

constexpr int16_t phase1PixelTopology::xOffset = -81
constexpr int16_t phase1PixelTopology::yOffset = -54 * 4