CMS 3D CMS Logo

Functions | Variables
DeadROC_duringRun Namespace Reference

Functions

def BPIX_list (inputFile)
 
def FPIX_list (inputFile)
 
def getFileInPath (rfile)
 

Variables

 deadROCList_offline
 
 deadROCList_online
 
 detIDsFileName
 
 dir
 
 dirBPix
 
 dirFPix
 
 f
 
 f1
 
 f2
 
 filename_offline
 
 filename_online
 
 hnameB
 
 MaskedROC_DuringRun
 
 minlad
 
 outFileName
 
 outFileName_offline
 
 outFileName_online
 
 runNum
 
 shell
 

Function Documentation

◆ BPIX_list()

def DeadROC_duringRun.BPIX_list (   inputFile)

Definition at line 36 of file DeadROC_duringRun.py.

References funct.abs(), getFileInPath(), createfilelist.int, FastTimerService_cff.range, str, and digitizers_cfi.strip.

36 def BPIX_list(inputFile):
37  DQMfile=TFile(inputFile)
38  BPIXCounter = []
39  BPIXCounter_v0 = []
40  for l in range(1,5):
41  hname=hnameB + str(l)
42 
43  RocMap=DQMfile.FindObjectAny(hname)
44 
45  for j in range(1,RocMap.GetNbinsY()+1):
46 
47  lad=minlad[l-1] + int(j-1)/2
48  alad=abs(lad)
49 
50  for i in range(1,RocMap.GetNbinsX()+1):
51 
52  roc=0
53 
54  bin=RocMap.GetBin(i,j)
55  digi=RocMap.GetBinContent(bin)
56 
57  if (digi!=0): continue
58 
59  mod=-4 + int((i-1)/8)
60 
61  if (lad==0 or mod==0): continue
62 
63  if (lad < 0 and mod < 0) :
64 
65  shell="BmO"
66 
67  if (alad%2==1):
68  if (j%2==1): roc=(i-1)%8
69  if (j%2==0): roc= 15-(i-1)%8
70 
71  elif (alad%2==0):
72  if (j%2 ==0): roc=(i-1)%8
73  if (j%2 ==1): roc= 15-(i-1)%8
74 
75  if (lad > 0 and mod < 0):
76 
77  shell= "BmI";
78 
79  if (lad%2==1):
80  if (j%2 ==0): roc=(i-1)%8
81  if (j%2 ==1): roc= 15-(i-1)%8
82 
83  if (lad%2==0):
84  if (j%2 ==1): roc=(i-1)%8
85  if (j%2 ==0): roc= 15-(i-1)%8
86 
87  if (lad > 0 and mod > 0):
88 
89  shell= "BpI"
90 
91  if (lad%2==1):
92  if (j%2 ==1): roc=7-(i-1)%8
93  if (j%2 ==0): roc=8+(i-1)%8
94 
95  if (lad%2==0):
96  if (j%2 ==0): roc=7-(i-1)%8
97  if (j%2 ==1): roc=8+(i-1)%8
98 
99  if (lad < 0 and mod > 0):
100  shell= "BpO"
101 
102  if (alad%2==1):
103  if (j%2 ==0): roc=7-(i-1)%8
104  if (j%2 ==1): roc=8+(i-1)%8
105 
106  if (alad%2==0):
107  if (j%2 ==1): roc=7-(i-1)%8
108  if (j%2 ==0): roc=8+(i-1)%8
109 
110  f1=open(getFileInPath('DQM/SiStripMonitorClient/data/detids.dat'))
111  modwritten=False
112  Mod_check = "LYR"+str(l) + "_LDR" + str(abs(lad)) + "F_MOD" +str(abs(mod))
113  shell_check = "BPix_" + str(shell)
114 
115  for line in f1:
116  refName=line.split(" ")[1]
117  if modwritten: break
118  shell_ref = str(refName[:8]).strip()
119  module_ref = str(refName[14:]).strip()
120 
121  if (Mod_check == module_ref) and (shell_check == shell_ref):
122 
123  ModuleName_BPIX = refName.strip()+"_ROC "
124  BmLYR1_check = ModuleName_BPIX.split('_')
125  if ((BmLYR1_check[1] == "BmI" or BmLYR1_check[1] == "BmO") and (BmLYR1_check[3] == "LYR1")):
126  if int(roc) <= 7:
127  roc = str(int(roc)+8)
128  elif int(roc) >= 8:
129  roc =str(int(roc)-8)
130 
131  BPix_Name = ModuleName_BPIX + str(roc)
132  BPIXCounter_v0.append(BPix_Name)
133  BPIXCounter = list(set(BPIXCounter_v0))
134  modwritten=True
135  return BPIXCounter
136 
137 #End of Barrel
138 
139 #Doing FPix
140 
141 hnameF="digi_occupancy_per_SignedDiskCoord_per_SignedBladePanelCoord_PXRing_"
142 minbld=[-11,-17]
143 
def BPIX_list(inputFile)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
def getFileInPath(rfile)
#define str(s)

◆ FPIX_list()

def DeadROC_duringRun.FPIX_list (   inputFile)

Definition at line 144 of file DeadROC_duringRun.py.

References funct.abs(), createfilelist.int, FastTimerService_cff.range, and str.

144 def FPIX_list(inputFile):
145  FPIXCounter = []
146  DQMfile=TFile(inputFile)
147  for r in range (1,3):
148 
149  hname=hnameF + str(r)
150  RocMap=DQMfile.FindObjectAny(hname)
151 
152  for j in range(1,RocMap.GetNbinsY()+1):
153 
154  bld=minbld[r-1] + int(j-1)/4
155  abld=abs(bld)
156 
157  for i in range(1,RocMap.GetNbinsX()+1):
158 
159  roc=0
160 
161  bin=RocMap.GetBin(i,j)
162  digi=RocMap.GetBinContent(bin)
163 
164  if (digi!=0): continue
165 
166  disk=-3 + int(i-1)/8
167 
168  if (bld==0 or disk==0): continue
169 
170  pnl=0
171 
172  if ((j-1)%4==0 or (j-1)%4==1): pnl=2
173  if ((j-1)%4==2 or (j-1)%4==3): pnl=1
174 
175  if (disk < 0 and bld <0):
176 
177  shell= "BmO"
178 
179  if ((j-1)%4==0 or (j-1)%4==3): roc= 15-(i-1)%8
180  if ((j-1)%4==1 or (j-1)%4==2): roc= (i-1)%8
181 
182  if (disk < 0 and bld >0):
183 
184  shell= "BmI";
185 
186  if ((j-1)%4==0 or (j-1)%4==3): roc= 15-(i-1)%8
187  if ((j-1)%4==1 or (j-1)%4==2): roc= (i-1)%8
188 
189  if (disk > 0 and bld >0):
190 
191  shell= "BpI"
192 
193  if ((j-1)%4==0 or (j-1)%4==3): roc=7-(i-1)%8
194  if ((j-1)%4==1 or (j-1)%4==2): roc=8+(i-1)%8
195 
196  if (disk > 0 and bld <0):
197 
198  shell= "BpO"
199 
200  if ((j-1)%4==0 or (j-1)%4==3): roc=7-(i-1)%8;
201  if ((j-1)%4==1 or (j-1)%4==2): roc=8+(i-1)%8;
202 
203 
204  FPix_Name = "FPix_" + str(shell) + "_D" + str(abs(disk)) + '_BLD'+ str(abs(bld)) + '_PNL' + str(abs(pnl)) + '_RNG'+ str(abs(r)) + "_ROC " + str(roc) +""
205  FPIXCounter.append(FPix_Name)
206  return FPIXCounter
207 
208 
def FPIX_list(inputFile)
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
#define str(s)

◆ getFileInPath()

def DeadROC_duringRun.getFileInPath (   rfile)

Definition at line 9 of file DeadROC_duringRun.py.

References submitPVValidationJobs.split().

Referenced by BPIX_list().

9 def getFileInPath(rfile):
10  import os
11  for dir in os.environ['CMSSW_SEARCH_PATH'].split(":"):
12  if os.path.exists(os.path.join(dir,rfile)): return os.path.join(dir,rfile)
13  return None
14 
15 
def getFileInPath(rfile)

Variable Documentation

◆ deadROCList_offline

DeadROC_duringRun.deadROCList_offline

Definition at line 210 of file DeadROC_duringRun.py.

◆ deadROCList_online

DeadROC_duringRun.deadROCList_online

Definition at line 209 of file DeadROC_duringRun.py.

◆ detIDsFileName

DeadROC_duringRun.detIDsFileName

Definition at line 16 of file DeadROC_duringRun.py.

◆ dir

DeadROC_duringRun.dir

Definition at line 23 of file DeadROC_duringRun.py.

Referenced by Config.ProcessFragment.__dir__(), python.rootplot.core.Options.__init__(), TFileDirectory._cd(), electrons_cff._get_bitmapVIDForEle_docstring(), python.rootplot.core.add_from_config_files(), helpers.addESProducers(), SiStripTFile.addPath(), MillePedeMonitor.addToDirectory(), reco::IsoDeposit.algoWithin(), l1t::L1TStage2CaloAnalyzer.analyze(), DiMuonVertexMonitor.analyze(), PatBJetVertexAnalyzer.analyze(), tadqm::TrackAnalyzer.analyze(), DTTrigTest.analyze(), DTLocalTriggerSynchTask.analyze(), fwlite::AnalyzerWrapper< T >.AnalyzerWrapper(), reco::isodeposit::AngleCone.AngleCone(), reco::isodeposit::AngleConeVeto.AngleConeVeto(), python.rootplot.core.Options.append_from_package(), helper::SimpleJetTrackAssociator.associate(), helper::SimpleJetTrackAssociator.associateTransient(), reco::GhostTrackState.axisDistance(), LayerCrossingSide.barrelSide(), BeamHaloPropagator.BeamHaloPropagator(), SiStripCommissioningSource.beginRun(), SiStripCorrelateNoise.beginRun(), bitonicMerge(), bitonicSort(), ConfigurableHisto.book(), SplittingConfigurableHisto.book(), AlignmentMonitorBase.book1D(), AlignmentMonitorBase.book2D(), TrackToTrackComparisonHists.book_generic_tracks_histos(), TrackToTrackComparisonHists.book_matching_tracks_histos(), SUSYDQMAnalyzer.bookHistograms(), HiggsValidation.bookHistograms(), Phase2ITMonitorRecHit.bookHistograms(), NanoAODDQM.bookHistograms(), TTbarSpinCorrHepMCAnalyzer.bookHistograms(), TrackToTrackComparisonHists.bookHistograms(), IsolatedTracksNxN.bookHistograms(), TrackToTrackComparisonHists.bookHistos(), AlignmentMonitorBase.bookProfile(), SplitVertexResolution.bookResidualsHistogram(), PrimaryVertexValidation.bookResidualsHistogram(), DMRChecker.bookResidualsHistogram(), DMRChecker.bookSplitDMRHistograms(), PrimaryVertexValidation.bookVertexHistograms(), FWME0SegmentProxyBuilder.build(), FWCSCSegmentProxyBuilder.build(), SeedFromGenericPairOrTriplet.buildSeed(), CtfSpecialSeedGenerator.buildSeeds(), btagbtvdeep::TrackPairInfoBuilder.buildTrackPairInfo(), PPSAlignmentConfigurationESSource.buildVectorFromDirectory(), FWGEMSegmentProxyBuilder.buildViewType(), FWDTSegmentProxyBuilder.buildViewType(), dqm::implementation::NavigatorBase.cd(), EcalHitMaker.cellLine(), ProxyPixelTopology.channel(), ProxyMTDTopology.channel(), ProxyStripTopology.channel(), check_sorted(), evf::DirManager.checkDirEmpty(), ExternalLHEProducer.closeDescriptors(), SignedDecayLength3D.closestApproachToJet(), SignedImpactParameter3D.closestApproachToJet(), IPTools.closestApproachToJet(), hgcal::EGammaPCAHelper.clusterDepthCompatibility(), hybridBitonicSortUtils.compAndSwap(), DirectMuonNavigation.compatibleEndcapLayers(), SimpleForwardNavigableLayer.compatibleLayers(), DirectTrackerNavigation.compatibleLayers(), DirectMuonNavigation.compatibleLayers(), SimpleBarrelNavigableLayer.compatibleLayers(), MuonForwardNavigableLayer.compatibleLayers(), MuonBarrelNavigableLayer.compatibleLayers(), NuclearInteractionFTFSimulator.compute(), GEMSuperChamber.computeDeltaPhi(), ME0Chamber.computeDeltaPhi(), DTDigitizer.computeTime(), EcalHitMaker.configureGeometry(), EcalShowerContainmentCorrections.correctionXY(), EcalHitMaker.correspondingEdge(), SiStripCommissioningSource.createCablingTasks(), FedCablingHistograms.createSummaryHisto(), CommissioningHistograms.createSummaryHisto(), SiStripCommissioningSource.createTasks(), SimpleNavigableLayer.crossingState(), MaterialBudgetData.dataStartTrack(), dd_to_html(), reco::IsoDeposit.depositAndCountWithin(), reco::IsoDeposit.depositWithin(), MultipleScatteringGeometry.detLayers(), EcalHitMaker.diagonalEdge(), CaloGeometryHelper.diagonalmove(), SiStripTFile.dirContent(), HelixArbitraryPlaneCrossing.direction(), HelixArbitraryPlaneCrossing2Order.direction(), TangentCircle.direction(), TangentHelix.directionAtVertex(), BeamHaloPropagator.directionCheck(), SiStripCommissioningSource.directory(), AlignmentMonitorBase.directory(), cond2xml.CondXmlProcessor.discover(), getPayloadData.discover(), SignedImpactParameter3D.distanceWithJetAxis(), SiStripCorrelateNoise.DoPlots(), EmDQMPostProcessor.dqmEndJob(), JetMETDQMPostProcessor.dqmEndJob(), TriggerRatesMonitorClient.dqmEndJob(), Comparator.DrawGaussSigmaOverMeanSlice(), Comparator.DrawGaussSigmaOverMeanXSlice(), Comparator.DrawGaussSigmaSlice(), Comparator.DrawMeanSlice(), Comparator.DrawSigmaSlice(), DTTMax.DTTMax(), L1MuGMTConfig.dumpLUTs(), L1MuGMTConfig.dumpRegs(), CrystalPad.edge(), CaloTower.emP4(), FWLiteEnabler.enable(), EcalPedHists.endJob(), SiStripCommissioningSource.endJob(), EcalURecHitHists.endJob(), EcalCosmicsHists.endJob(), DQMHistNormalizer.endRun(), reco::btau.etaRel(), FWGUIManager.exportImagesOfAllViews(), Config.Process.extend(), helpers.extendWithPrePostfix(), CombinedSVComputer.fillCommonVariables(), MaterialBudgetCastorHistos.fillStartTrack(), MaterialBudgetHcalHistos.fillStartTrack(), TrackCountingTagPlotter.finalize(), TrackProbabilityTagPlotter.finalize(), DQMGenericTnPClient.findAllSubdirectories(), HLTMuonRefMethod.findAllSubdirectories(), HLTGenValClient.findAllSubdirectories(), DQMGenericClient.findAllSubdirectories(), PPSAlignmentConfigurationESSource.findDirectoryWithName(), evf::DirManager.findHighestRun(), evf::DirManager.findHighestRunDir(), SiStripTFile.findHistos(), JetCoreMCtruthSeedGenerator.findIntersection(), DeepCoreSeedGenerator.findIntersection(), edm::storage::LocalFileSystem.findMount(), evf::DirManager.findRunDir(), InOutConversionSeedFinder.findSeeds(), StraightTrackAlignment.finish(), DTSegmentUpdator.fit(), VectorHitBuilderAlgorithm.fit(), VectorHitBuilderAlgorithm.fit2Dzx(), VectorHitBuilderAlgorithm.fit2Dzy(), reco::GhostTrackState.flightDistance(), util.rrapi.RRApi.get(), rrapi.RRApi.get(), hcal_runs.get_all(), hcal_runs_valdas.get_all(), hcal_runs.get_single(), hcal_runs_valdas.get_single(), getCentralityFromFile(), EDMtoMEConverter.getData(), ClusterShapeHitFilter.getDrift(), AlCaHOCalibProducer.getFreeTrajectoryState(), ClusterShapeTrackFilter.getGlobalDirs(), SiPixelGainCalibrationReadDQMFile.getHistograms(), CrossingPtBasedLinearizationPointFinder.getLinearizationPoint(), CaloSubdetectorTopology.getNeighbourIndex(), CaloTopology.getNeighbours(), CaloSubdetectorTopology.getNeighbours(), getObject(), getplot(), TangentCircle.getPosition(), dqm::implementation::IGetter.getSubdirs(), CTPPSGeometry.globalToLocalDirection(), CaloTower.hadP4(), EcalHitMaker.hcalCellLine(), HCovarianceVSxy.HCovarianceVSxy(), HelixBarrelPlaneCrossing2OrderLocal.HelixBarrelPlaneCrossing2OrderLocal(), Comparator.Histo(), RectangularEtaPhiTrackingRegion.hits(), CosmicTrackingRegion.hits_(), MultiHitGeneratorFromChi2.hitSets(), HResolution.HResolution(), hybridBitonicMergeRef(), hybridBitonicSortRef(), DTTMax::InfoLayer.InfoLayer(), reco::GhostTrackPrediction.init(), l1tpf::corrector.init_(), RectangularEtaPhiTrackingRegion.initEtaRange(), SiStripDetKey.initFromPath(), SiStripFecKey.initFromPath(), SiStripFedKey.initFromPath(), RunManagerMT.initG4(), fastsim::NuclearInteractionFTF.interact(), DTChamberEfficiencyTask.interpolate(), RKPropagatorInS.invertDirection(), ThirdHitPrediction.isCompatibleWithMultipleScattering(), StraightLinePropagator.jacobian(), L3NominalEfficiencyConfigurator.L3NominalEfficiencyConfigurator(), LightRay.LightRay(), IPTools.linearImpactParameter(), PreparePVTrends.list_files(), SteppingHelixPropagator.loadState(), ProxyStripTopology.localPitch(), ProxyStripTopology.localStripLength(), CTPPSGeometry.localToGlobalDirection(), ls_cert_type(), main(), photons_cff.make_bitmapVID_docstring(), SteppingHelixPropagator.makeAtomStep(), Types.makeCppPSet(), SiStripSpyDisplayModule.MakeDigiHist_(), HistogramManager.makePathName(), SiStripSpyDisplayModule.MakeProcessedRawDigiHist_(), SiStripSpyDisplayModule.MakeRawDigiHist_(), SETSeedFinder.makeSeed(), ProxyPixelTopology.measurementError(), ProxyMTDTopology.measurementError(), ProxyStripTopology.measurementError(), ProxyPixelTopology.measurementPosition(), ProxyMTDTopology.measurementPosition(), ProxyStripTopology.measurementPosition(), TFileDirectory.mkdir(), TFileService.mkdir(), CaloGeometryHelper.move(), PFECALHashNavigator.move(), spr.newECALIdEW(), spr.newECALIdNS(), SimpleForwardNavigableLayer.nextLayers(), SimpleBarrelNavigableLayer.nextLayers(), MuonForwardNavigableLayer.nextLayers(), MuonBarrelNavigableLayer.nextLayers(), OffsetAnalyzerDQM.OffsetAnalyzerDQM(), trklet.openfile(), TransverseBoundPlaneFactory.operator()(), PropagationDirectionChooser.operator()(), GroupedCkfTrajectoryBuilder.oppositeDirection(), python.rootplot.core.option_diff(), TrajectoryFactoryBase.orderedTrajectoryMeasurements(), CaloTower.p4(), CaloTower.p4_HO(), ProxyPixelTopology.pixel(), ProxyMTDTopology.pixel(), MuonResidualsBfieldAngleFitter.plot(), MuonResidualsPositionFitter.plot(), MuonResiduals1DOFFitter.plot(), MuonResidualsAngleFitter.plot(), MuonResiduals6DOFrphiFitter.plot(), MuonResiduals5DOFFitter.plot(), MuonResiduals6DOFFitter.plot(), MuonResidualsTwoBin.plot(), MuonResidualsFitter.plotsimple(), MuonResidualsTwoBin.plotsimple(), MuonResidualsFitter.plotweighted(), MuonResidualsTwoBin.plotweighted(), edmplugin::PluginManager.PluginManager(), ProxyMTDTopology.positionCorrection(), ProxyPixelTopology.positionCorrection(), ProxyStripTopology.positionCorrection(), HelixBarrelPlaneCrossing2OrderLocal.positionOnly(), FullModelHadronicProcess.PostStepDoIt(), EcalHitMaker.preshowerCellLine(), ClusterShape.processColumn(), SteppingHelixPropagatorESProducer.produce(), GeantPropagatorESProducer.produce(), SETMuonSeedProducer.produce(), L1MuGlobalMuonTrigger.produce(), TemplatedInclusiveVertexFinder< InputContainer, VTX >.produce(), TemplatedSecondaryVertexProducer< IPTI, VTX >.produce(), TestHits.projectHit(), TestSmoothHits.projectHit(), TestTrackHits.projectHit(), SiStripRecHitsValid.projectHit(), GlobalRecHitsAnalyzer.projectHit(), GlobalRecHitsProducer.projectHit(), SiStripTrackingRecHitsValid.projectHit(), FWGUIManager.promptForConfigurationFile(), FWViewBase.promptForSaveImageTo(), SteppingHelixPropagator.propagate(), StraightLinePropagator.propagateParametersOnCylinder(), RKPropagatorInS.propagateParametersOnPlane(), SimpleNavigableLayer.propagator(), SiPixelGenError.pushfile(), SiPixelTemplate2D.pushfile(), SiPixelTemplate.pushfile(), hcal_runs.query(), hcal_runs_valdas.query(), edmplugin.readCacheFile(), LegacyIOHelper.readdir(), RectangularEtaPhiTrackingRegion.RectangularEtaPhiTrackingRegion(), SteppingHelixPropagator.refToMagVolume(), SteppingHelixPropagator.refToMatVolume(), PhotonOfflineClient.retrieveHisto(), DTLocalTriggerBaseTask.runTMAnalysis(), CalibrationHistograms.save(), CommissioningHistograms.save(), JanAlignmentAlgorithm.saveDiagnostics(), Styles.SavePlot(), SeedFromGenericPairOrTriplet.seed(), SeedFromGenericPairOrTriplet.seedFromPair(), SeedFromGenericPairOrTriplet.seedFromTriplet(), DTCombinatorialPatternReco4D.segmentSpecialZed(), CalibrationTask.setCurrentFolder(), CalibrationScanTask.setCurrentFolder(), VariablePlotter.setDir(), DTSegmentCand.setDirection(), DTRecSegment4D.setDirection(), DTRecSegment2D.setDirection(), PFJetMonitor.setDirectory(), PFMETMonitor.setDirectory(), PFCandidateMonitor.setDirectory(), PFCandidateManager.setDirectory(), Benchmark.setDirectory(), PlotAlignmentValidation.setOutputDir(), SetPropagationDirection(), GsfPropagatorAdapter.setPropagationDirection(), BeamHaloPropagator.setPropagationDirection(), GsfPropagatorWithMaterial.setPropagationDirection(), SmartPropagator.setPropagationDirection(), PropagatorWithMaterial.setPropagationDirection(), Propagator.setPropagationDirection(), EcalHitMaker.setTrackParameters(), PlotAlignmentValidation.setTreeBaseDir(), vid_id_tools.setupAllVIDIdsInModule(), RecoTauValidation_cfi.SetYmodulesToLog(), CaloGeometryHelper.simplemove(), spr.simpleMove(), JanAlignmentAlgorithm.solve(), KFSplittingFitter.sorter(), RecHitSorter.sortHits(), InOutConversionSeedFinder.startSeed(), PFECALHashNavigator.stdmove(), PFECALHashNavigator.stdsimplemove(), LaserSorter.streamFileName(), ProxyStripTopology.strip(), reco::IsoDeposit.sumWithin(), ReferenceTrajectory.surfaceSide(), TrajectorySeed.swap(), TangentCircle.TangentCircle(), TB06Tree.TB06Tree(), TB06TreeH2.TB06TreeH2(), reco::GhostTrackPrediction.track(), TrackCountingTagPlotter.TrackCountingTagPlotter(), TrackerDpgAnalysis.TrackerDpgAnalysis(), TrackProbabilityTagPlotter.TrackProbabilityTagPlotter(), ConversionSeedFinder.trackStateFromClusters(), reco::JetSignalVertexCompatibilityAlgo.trackVertexCompat(), trackVertexCompat(), CosmicMuonTrajectoryBuilder.trajectories(), DTTrigGeomUtils.trigDir(), DTTrigGeomUtils.trigToSeg(), MaterialBudgetHcalProducer.update(), DTSegmentUpdator.update(), L1MuonPixelTrackFitter.valPhi(), muonisolation::TrackExtractor.veto(), muonisolation::PixelTrackExtractor.veto(), muonisolation::CandViewExtractor.veto(), PFCandWithSuperClusterExtractor.veto(), egammaisolation::EgammaTrackExtractor.veto(), muonisolation::TrackExtractor.vetos(), muonisolation::PixelTrackExtractor.vetos(), egammaisolation::EgammaTrackExtractor.vetos(), SiStripEnumsAndStrings.view(), vtxErrorLong(), WatcherStreamFileReader.WatcherStreamFileReader(), SimpleNavigableLayer.wellInside(), TH1Store.write(), pos::PixelTTCciConfig.writeASCII(), pos::PixelMaxVsf.writeASCII(), pos::PixelPortCardConfig.writeASCII(), pos::PixelMaskAllPixels.writeASCII(), pos::PixelLTCConfig.writeASCII(), pos::PixelLowVoltageMap.writeASCII(), pos::PixelGlobalDelay25.writeASCII(), pos::PixelTBMSettings.writeASCII(), pos::PixelTrimAllPixels.writeASCII(), pos::PixelFEDConfig.writeASCII(), pos::PixelTKFECConfig.writeASCII(), pos::PixelFEDCard.writeASCII(), pos::PixelDetectorConfig.writeASCII(), pos::PixelPortcardMap.writeASCII(), pos::PixelNameTranslation.writeASCII(), pos::PixelDACSettings.writeASCII(), pos::PixelCalibConfiguration.writeASCII(), ApeEstimatorSummary.writeHists(), and l1tpf::corrector.writeToFile().

◆ dirBPix

DeadROC_duringRun.dirBPix

Definition at line 26 of file DeadROC_duringRun.py.

◆ dirFPix

DeadROC_duringRun.dirFPix

Definition at line 27 of file DeadROC_duringRun.py.

◆ f

DeadROC_duringRun.f

Definition at line 218 of file DeadROC_duringRun.py.

◆ f1

DeadROC_duringRun.f1

Definition at line 219 of file DeadROC_duringRun.py.

Referenced by RecAnalyzerHF.analyzeHcal(), pat::eventhypothesis::AndFilter.AndFilter(), BTagEntry.BTagEntry(), EcalShapeBase.buildMe(), ClusterShapeHitFilter.ClusterShapeHitFilter(), HcalPulseShapes.convolve(), EvolutionECAL.DegradationMeanEM50GeV(), TPNFit.doFit(), TMatacq.doFit(), VVIObjFDetails.dzero(), analyzer::SiPixelLorentzAngle.endJob(), DTMeanTimerFitter.evaluateVDriftAndReso(), fftjetcms.fftjet_JetFunctor_parser(), fftjetcms.fftjet_PeakFunctor_parser(), Fit_MaximumPoint(), FakeBeamMonitor.FitAndFill(), BeamMonitor.FitAndFill(), DTMeanTimerFitter.fitTMax(), MuonResidualsFitter.histogramChi2GaussianFit(), gen::Hydjet2Hadronizer.Hydjet2Hadronizer(), npstat.interpolate_cubic(), npstat.interpolate_linear(), npstat.interpolate_quadratic(), interpolateLinear(), npstat.interpolation_coefficients(), PerigeeConversions.jacobianParameters2Cartesian(), L1GtTriggerMenuXmlProducer.L1GtTriggerMenuXmlProducer(), l1t::L1TGlobalUtil.L1TGlobalUtil(), L1TUtmTriggerMenuESProducer.L1TUtmTriggerMenuESProducer(), make_and_ddfilter(), EcalTBHodoscopeGeometry.newCell(), HcalDDDGeometry.newCell(), CaloTowerGeometry.newCell(), ZdcGeometry.newCell(), HGCalTBGeometry.newCell(), HGCalGeometry.newCell(), CastorGeometry.newCell(), EcalPreshowerGeometry.newCell(), EcalEndcapGeometry.newCell(), EcalBarrelGeometry.newCell(), HcalGeometry.newCell(), HcalDDDGeometry.newCellFast(), HcalGeometry.newCellFast(), HcalDDDGeometry.newCellImpl(), HcalGeometry.newCellImpl(), heppy::Davismt2.nsols(), heppy::Davismt2.nsols_massless(), LegacyIOHelper.open(), CastorDbASCIIIO::DetIdLess.operator()(), pat::eventhypothesis::OrFilter.OrFilter(), l1t::L1TGlobalUtil.OverridePrescalesAndMasks(), TH2Analyzer.ProcessSlice(), PixelVertexProducerMedian.produce(), HIPixelMedianVtxProducer.produce(), CSCGasCollisions.readCollisionTable(), gen::Py8HMC3InterfaceBase.readSettings(), gen::Py8InterfaceBase.readSettings(), SeedMultiplicityComparisonPlot(), mathSSE::Vec4< double >.set(), mathSSE::Vec2< float >.set(), mathSSE::Vec4< align::Scalar >.set(), mathSSE::Vec4< double >.set1(), mathSSE::Vec4< align::Scalar >.set1(), gen::Pythia6Service.setPYUPDAParams(), gen::Pythia6Service.setSLHAParams(), StandaloneTrackMonitor.StandaloneTrackMonitor(), SummaryHistoRatio(), SummaryHistoRatioGraph(), heppy::mt2w_bisect::mt2w.teco(), mathSSE::Vec2< float >.Vec2(), mathSSE::Vec4< double >.Vec4(), mathSSE::Vec4< align::Scalar >.Vec4(), EcalTrapezoidParameters.vertexList(), VVIObjF.VVIObjF(), RootTreeHandler.writeTree(), and ZSPJPTJetCorrector.ZSPJPTJetCorrector().

◆ f2

DeadROC_duringRun.f2

Definition at line 220 of file DeadROC_duringRun.py.

Referenced by RecAnalyzerHF.analyzeHcal(), pat::eventhypothesis::AndFilter.AndFilter(), EcalShapeBase.buildMe(), PixelTrackCleanerBySharedHits.cleanTracks(), ClusterShapeHitFilter.ClusterShapeHitFilter(), EnergyLossUpdator.computeElectrons(), HcalPulseShapes.convolve(), EvolutionECAL.DegradationMeanEM50GeV(), TPNFit.doFit(), TMatacq.doFit(), VVIObjFDetails.dzero(), fftjetcms.fftjet_JetFunctor_parser(), fftjetcms.fftjet_PeakFunctor_parser(), heppy::Davismt2.find_high(), gen::Hydjet2Hadronizer.Hydjet2Hadronizer(), npstat.interpolate_cubic(), npstat.interpolate_quadratic(), npstat.interpolation_coefficients(), PerigeeConversions.jacobianParameters2Cartesian(), L1GtTriggerMenuXmlProducer.L1GtTriggerMenuXmlProducer(), make_and_ddfilter(), TMultiDimFet.MakeGramSchmidt(), heppy::Davismt2.mt2_bisect(), HcalDDDGeometry.newCell(), HGCalTBGeometry.newCell(), HGCalGeometry.newCell(), EcalEndcapGeometry.newCell(), EcalBarrelGeometry.newCell(), HcalGeometry.newCell(), HcalDDDGeometry.newCellFast(), HcalGeometry.newCellFast(), heppy::Davismt2.nsols(), heppy::Davismt2.nsols_massless(), pat::eventhypothesis::OrFilter.OrFilter(), SeedMultiplicityComparisonPlot(), mathSSE::Vec4< double >.set(), mathSSE::Vec2< float >.set(), mathSSE::Vec4< align::Scalar >.set(), sortNtupleByEvent(), SummaryHistoRatio(), SummaryHistoRatioGraph(), heppy::mt2w_bisect::mt2w.teco(), mathSSE::Vec2< float >.Vec2(), mathSSE::Vec4< double >.Vec4(), mathSSE::Vec4< align::Scalar >.Vec4(), EcalTrapezoidParameters.vertexList(), VVIObjF.VVIObjF(), and ZSPJPTJetCorrector.ZSPJPTJetCorrector().

◆ filename_offline

DeadROC_duringRun.filename_offline

Definition at line 19 of file DeadROC_duringRun.py.

◆ filename_online

DeadROC_duringRun.filename_online

Definition at line 18 of file DeadROC_duringRun.py.

◆ hnameB

DeadROC_duringRun.hnameB

Definition at line 29 of file DeadROC_duringRun.py.

◆ MaskedROC_DuringRun

DeadROC_duringRun.MaskedROC_DuringRun

Definition at line 212 of file DeadROC_duringRun.py.

◆ minlad

DeadROC_duringRun.minlad

Definition at line 31 of file DeadROC_duringRun.py.

◆ outFileName

DeadROC_duringRun.outFileName

Definition at line 215 of file DeadROC_duringRun.py.

◆ outFileName_offline

DeadROC_duringRun.outFileName_offline

Definition at line 217 of file DeadROC_duringRun.py.

◆ outFileName_online

DeadROC_duringRun.outFileName_online

Definition at line 216 of file DeadROC_duringRun.py.

◆ runNum

DeadROC_duringRun.runNum

◆ shell

DeadROC_duringRun.shell

Definition at line 33 of file DeadROC_duringRun.py.