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

def DeadROC_duringRun.BPIX_list (   inputFile)

Definition at line 36 of file DeadROC_duringRun.py.

References funct.abs(), getFileInPath(), createfilelist.int, list(), 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)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger list("!*","!HLTx*"if it matches 2 triggers or more) will accept the event if all the matching triggers are FAIL.It will reject the event if any of the triggers are PASS or EXCEPTION(this matches the behavior of"!*"before the partial wildcard feature was incorporated).Triggers which are in the READY state are completely ignored.(READY should never be returned since the trigger paths have been run
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)
def DeadROC_duringRun.getFileInPath (   rfile)

Definition at line 9 of file DeadROC_duringRun.py.

References cms::dd.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 
std::vector< std::string_view > split(std::string_view, const char *)
def getFileInPath(rfile)

Variable Documentation

DeadROC_duringRun.deadROCList_offline

Definition at line 210 of file DeadROC_duringRun.py.

DeadROC_duringRun.deadROCList_online

Definition at line 209 of file DeadROC_duringRun.py.

DeadROC_duringRun.detIDsFileName

Definition at line 16 of file DeadROC_duringRun.py.

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(), usedOutput._getModulesFromOp(), printPaths._printOp(), Vispa.Plugins.ConfigEditor.ConfigDataAccessor.ConfigDataAccessor._readRecursive(), python.rootplot.core.add_from_config_files(), helpers.addESProducers(), SiStripTFile.addPath(), AlignmentMonitorBase.afterAlignment(), DTCombinatorialExtendedPatternReco.algoName(), reco::IsoDeposit.algoWithin(), DQMGenericTnPClient.analyze(), l1t::L1TStage2CaloAnalyzer.analyze(), TrackAnalyzer.analyze(), PatBJetVertexAnalyzer.analyze(), DTTrigTest.analyze(), DTLocalTriggerSynchTask.analyze(), fwlite::AnalyzerWrapper< T >.AnalyzerWrapper(), python.rootplot.core.Options.append_from_package(), LayerCrossingSide.barrelSide(), SiStripCommissioningSource.beginRun(), SiStripCorrelateNoise.beginRun(), dqm::dqmstoreimpl::DQMStore.book_(), SUSYDQMAnalyzer.bookHistograms(), HiggsValidation.bookHistograms(), NanoAODDQM.bookHistograms(), TTbarSpinCorrHepMCAnalyzer.bookHistograms(), IsolatedTracksNxN.bookHistograms(), BTLNavigableLayer.BTLNavigableLayer(), FWME0SegmentProxyBuilder.build(), FWCSCSegmentProxyBuilder.build(), btagbtvdeep::TrackPairInfoBuilder.buildTrackPairInfo(), FWGEMSegmentProxyBuilder.buildViewType(), FWDTSegmentProxyBuilder.buildViewType(), EcalHitMaker.cellLine(), evf::DirManager.checkDirEmpty(), ConversionSeedFinder.clear(), ExternalLHEProducer.closeDescriptors(), SignedDecayLength3D.closestApproachToJet(), SignedImpactParameter3D.closestApproachToJet(), IPTools.closestApproachToJet(), hgcal::EGammaPCAHelper.clusterDepthCompatibility(), NuclearInteractionFTFSimulator.compute(), ME0Chamber.computeDeltaPhi(), DTDigitizer.computeTime(), pos::PixelConfigFile.configurationDataExists(), EcalHitMaker.configureGeometry(), EcalHitMaker.correspondingEdge(), SiStripCommissioningSource.createCablingTasks(), SiStripCommissioningSource.createTasks(), SimpleNavigableLayer.crossingState(), MaterialBudgetData.dataStartTrack(), dd_to_html(), egammaisolation::EgammaTrackExtractor.deposit(), PFCandWithSuperClusterExtractor.deposit(), muonisolation::CandViewExtractor.deposit(), reco::IsoDeposit.depositAndCountWithin(), MultipleScatteringGeometry.detLayers(), HelixArbitraryPlaneCrossing.direction(), HelixArbitraryPlaneCrossing2Order.direction(), TangentCircle.direction(), TangentHelix.directionAtVertex(), BeamHaloPropagator.directionCheck(), 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(), CaloTower.emP4(), FWLiteEnabler.enable(), EcalPedHists.endJob(), SiStripCommissioningSource.endJob(), EcalURecHitHists.endJob(), EcalCosmicsHists.endJob(), DQMHistNormalizer.endRun(), ETLNavigableLayer.ETLNavigableLayer(), ZGlobalVsSAIsolationAnalyzer.evaluate(), FWGUIManager.exportImagesOfAllViews(), Config.Process.extend(), helpers.extendWithPrePostfix(), pos::PixelFECConfig.FECSlotFromFECNumber(), CombinedSVComputer.fillCommonVariables(), MaterialBudgetCastorHistos.fillStartTrack(), MaterialBudgetHcalHistos.fillStartTrack(), muonisolation::PixelTrackExtractor.fillVetos(), muonisolation::TrackExtractor.fillVetos(), TrackCountingTagPlotter.finalize(), TrackProbabilityTagPlotter.finalize(), evf::DirManager.findHighestRun(), evf::DirManager.findHighestRunDir(), dqm::dqmstoreimpl::DQMStore.findObject(), evf::DirManager.findRunDir(), InOutConversionSeedFinder.findSeeds(), DTSegmentUpdator.fit(), util.rrapi.RRApi.get(), rrapi.RRApi.get(), pos::PixelConfigFile.get(), dqm::dqmstoreimpl::DQMStore.get(), dqm::dqmstoreimpl::DQMStore::IGetter.getContents(), dqm::dqmstoreimpl::DQMStore.getContents(), EDMtoMEConverter.getData(), EDMtoMEConverter::Tokens< T >.getData(), ClusterShapeHitFilter.getDrift(), ClusterShapeTrackFilter.getGlobalDirs(), LMFDat.getKeyList(), CrossingPtBasedLinearizationPointFinder.getLinearizationPoint(), pos::PixelLTCConfig.getLTCConfigStream(), getObject(), Vispa.Plugins.EdmBrowser.EdmDataAccessor.EdmDataAccessor.getObjectProperties(), L1MuGMTConfig.getParameterSet(), pos::PixelConfigFile.getPath(), getplot(), pos::PixelDetectorConfig.getROCsList(), pos::PixelCalibConfiguration.getStreamedContent(), pos::PixelTTCciConfig.getTTCConfigStream(), CTPPSGeometry.globalToLocalDirection(), CaloTower.hadP4(), EcalHitMaker.hcalCellLine(), HCovarianceVSxy.HCovarianceVSxy(), HelixBarrelPlaneCrossing2OrderLocal.HelixBarrelPlaneCrossing2OrderLocal(), Comparator.Histo(), RectangularEtaPhiTrackingRegion.hits(), CosmicTrackingRegion.hits_(), MultiHitGeneratorFromChi2.hitSets(), HResolution.HResolution(), reco::GhostTrackPrediction.init(), SiStripDetKey.initFromPath(), SiStripFecKey.initFromPath(), SiStripFedKey.initFromPath(), RunManager.initG4(), RunManagerMT.initG4(), fastsim::NuclearInteractionFTF.interact(), DTChamberEfficiencyTask.interpolate(), RKPropagatorInS.invertDirection(), ThirdHitPrediction.isCompatibleWithMultipleScattering(), Benchmark.isInRange(), ZMuMuTrackUserData.isolation(), ZMuMuMuonUserData.isolation(), ZToMuMuIsoDepositSelector< Isolator >.isolation(), isolation(), StraightLinePropagator.jacobian(), L3NominalEfficiencyConfigurator.L3NominalEfficiencyConfigurator(), LightRay.LightRay(), IPTools.linearImpactParameter(), reco::GhostTrackState.linearize(), CTPPSGeometry.localToGlobalDirection(), MuonResidualsFitter.loglikelihood(), PPSTools.LorentzVector2HectorParticle(), ls_cert_type(), CaloGeometryHelper.magneticField(), BeamHaloPropagator.magneticField(), main(), TFileDirectory.make(), Types.makeCppPSet(), HistogramManager.makePathName(), SETSeedFinder.makeSeed(), ProxyStripTopology.measurementPosition(), dqm::dqmstoreimpl.mergePath(), SeedFromGenericPairOrTriplet.momentumFromPSet(), CaloGeometryHelper.move(), PFECALHashNavigator.move(), dqm::dqmstoreimpl::DQMStore.mtEnabled(), MuonBarrelNavigableLayer.MuonBarrelNavigableLayer(), MuonForwardNavigableLayer.MuonForwardNavigableLayer(), reco::ElectronSeed.name(), RectangularEtaPhiTrackingRegion.name(), MuonResiduals1DOFFitter.ndata(), MuonResiduals6DOFrphiFitter.ndata(), MuonResiduals5DOFFitter.ndata(), MuonResiduals6DOFFitter.ndata(), pos::PixelPortcardMap.numChannels(), pos::PixelDACSettings.numROCs(), Vispa.Plugins.ConfigEditor.ConfigDataAccessor.ConfigDataAccessor.open(), PropagationDirectionChooser.operator()(), GroupedCkfTrajectoryBuilder.oppositeDirection(), python.rootplot.core.option_diff(), TrajectoryFactoryBase.orderedTrajectoryMeasurements(), CaloTower.p4(), CaloTower.p4_HO(), PFCandidateManager.PFCandidateManager(), edmplugin::PluginManager.PluginManager(), HelixBarrelPlaneCrossing2OrderLocal.positionOnly(), FullModelHadronicProcess.PostStepDoIt(), EcalHitMaker.preshowerCellLine(), ClusterShape.processColumn(), GeantPropagatorESProducer.produce(), SteppingHelixPropagatorESProducer.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(), AnalyticalPropagator.propagateParametersOnPlane(), SimpleNavigableLayer.propagator(), pos::PixelConfigFile.put(), DTLocalTriggerBaseTask.runTMAnalysis(), CalibrationHistograms.save(), CommissioningHistograms.save(), dqm::dqmstoreimpl::DQMStore.save(), dqm::dqmstoreimpl::DQMStore.savePB(), Styles.SavePlot(), SeedFromGenericPairOrTriplet.seedFromTriplet(), DTCombinatorialPatternReco4D.segmentSpecialZed(), MonitorElementData::Path.set(), FW3DViewBase.setClip(), CalibrationScanTask.setCurrentFolder(), CalibrationTask.setCurrentFolder(), pos::PixelGlobalDelay25.setDelay(), VariablePlotter.setDir(), DTSegmentCand.setDirection(), DTRecSegment4D.setDirection(), DTRecSegment2D.setDirection(), Benchmark.setDirectory(), KFSplittingFitter.setHitCloner(), GsfPropagatorAdapter.setMaxDirectionChange(), GsfPropagatorWithMaterial.setMaxDirectionChange(), Propagator.setPropagationDirection(), EcalHitMaker.setTrackParameters(), vid_id_tools.setupAllVIDIdsInModule(), reco::IsoDeposit.setVeto(), RecoTauValidation_cfi.SetYmodulesToLog(), helper::SimpleJetTrackAssociator.SimpleJetTrackAssociator(), SiPixelGenError.SiPixelGenError(), SiPixelTemplate.SiPixelTemplate(), SiPixelTemplate2D.SiPixelTemplate2D(), InOutConversionSeedFinder.startSeed(), LaserSorter.streamFileName(), MuonResidualsAngleFitter.sumofweights(), MuonResidualsBfieldAngleFitter.sumofweights(), MuonResidualsPositionFitter.sumofweights(), reco::IsoDeposit.sumWithin(), TrajectorySeed.swap(), TangentCircle.TangentCircle(), TB06Tree.TB06Tree(), TB06TreeH2.TB06TreeH2(), reco::GhostTrackPrediction.track(), TrackCountingTagPlotter.TrackCountingTagPlotter(), TrackerDpgAnalysis.TrackerDpgAnalysis(), TrackProbabilityTagPlotter.TrackProbabilityTagPlotter(), reco::JetSignalVertexCompatibilityAlgo.trackVertexCompat(), trackVertexCompat(), CosmicMuonTrajectoryBuilder.trajectories(), DTTrigGeomUtils.trigDir(), DTSegmentUpdator.update(), L1MuonPixelTrackFitter.valPhi(), muonisolation::PixelTrackExtractor.veto(), muonisolation::TrackExtractor.veto(), egammaisolation::EgammaTrackExtractor.veto(), muonisolation::CandViewExtractor.veto(), PFCandWithSuperClusterExtractor.veto(), muonisolation::PixelTrackExtractor.vetos(), muonisolation::TrackExtractor.vetos(), egammaisolation::EgammaTrackExtractor.vetos(), WatcherStreamFileReader.WatcherStreamFileReader(), TH1Store.write(), ApeEstimatorSummary.writeHists(), pos::PixelConfigBase.~PixelConfigBase(), pos::PixelFEDCard.~PixelFEDCard(), pos::PixelNameTranslation.~PixelNameTranslation(), pos::PixelTBMSettings.~PixelTBMSettings(), Plotter.~Plotter(), and RecHitSorter.~RecHitSorter().

DeadROC_duringRun.dirBPix

Definition at line 26 of file DeadROC_duringRun.py.

DeadROC_duringRun.dirFPix

Definition at line 27 of file DeadROC_duringRun.py.

DeadROC_duringRun.f

Definition at line 218 of file DeadROC_duringRun.py.

DeadROC_duringRun.f1

Definition at line 219 of file DeadROC_duringRun.py.

Referenced by RecAnalyzerHF.analyzeHcal(), pat::eventhypothesis::AndFilter.AndFilter(), BTagEntry.BTagEntry(), EcalShapeBase.buildMe(), HcalPulseShapes.convolve(), DatabasePDG.DatabasePDG(), FastTimeGeometry.dbString(), HGCalGeometry.dbString(), EvolutionECAL.DegradationMeanEM50GeV(), TPNFit.doFit(), TMatacq.doFit(), VVIObjFDetails.dzero(), analyzer::SiPixelLorentzAngle.endJob(), DTMeanTimerFitter.evaluateVDriftAndReso(), fftjetcms.fftjet_JetFunctor_parser(), fftjetcms.fftjet_PeakFunctor_parser(), Fit_MaximumPoint(), BeamMonitor.FitAndFill(), DTMeanTimerFitter.fitTMax(), MuonResidualsFitter.histogramChi2GaussianFit(), npstat.interpolate_cubic(), npstat.interpolate_quadratic(), npstat.interpolation_coefficients(), PerigeeConversions.jacobianParameters2Cartesian(), JetCalibrationParameterSetTauJet.JetCalibrationParameterSetTauJet(), JetPartonNamespace::JetPartonCalibrationParameterSet.JetPartonCalibrationParameterSet(), L1GtTriggerMenuXmlProducer.L1GtTriggerMenuXmlProducer(), l1t::L1TGlobalUtil.L1TGlobalUtil(), L1TUtmTriggerMenuESProducer.L1TUtmTriggerMenuESProducer(), heppy::Davismt2.nsols(), heppy::Davismt2.nsols_massless(), CaloTowerGeometry.numberOfAlignments(), ZdcGeometry.numberOfAlignments(), CastorGeometry.numberOfAlignments(), EcalPreshowerGeometry.numberOfAlignments(), HcalGeometry.numberOfAlignments(), EcalEndcapGeometry.numberOfAlignments(), EcalBarrelGeometry.numberOfAlignments(), CastorDbASCIIIO::DetIdLess.operator()(), funct::GaussIntegrator.operator()(), pat::eventhypothesis::OrFilter.OrFilter(), l1t::L1TGlobalUtil.OverridePrescalesAndMasks(), TH2Analyzer.ProcessSlice(), PixelVertexProducerMedian.produce(), HIPixelMedianVtxProducer.produce(), CSCGasCollisions.readCollisionTable(), gen::Py8InterfaceBase.readSettings(), RPCTechnicalTrigger.RPCTechnicalTrigger(), SeedMultiplicityComparisonPlot(), mathSSE::Vec2< float >.set(), mathSSE::Vec4< align::Scalar >.set(), mathSSE::Vec4< align::Scalar >.set1(), gen::Pythia6Service.setPYUPDAParams(), gen::Pythia6Service.setSLHAParams(), StandaloneTrackMonitor.StandaloneTrackMonitor(), heppy::mt2w_bisect::mt2w.teco(), mathSSE::Vec2< float >.Vec2(), mathSSE::Vec2< T >.Vec2(), mathSSE::Vec4< double >.Vec4(), mathSSE::Vec4< align::Scalar >.Vec4(), EcalTrapezoidParameters.vertexList(), VVIObjF.VVIObjF(), RootTreeHandler.writeTree(), and ZSPJPTJetCorrector.ZSPJPTJetCorrector().

DeadROC_duringRun.f2

Definition at line 220 of file DeadROC_duringRun.py.

Referenced by RecAnalyzerHF.analyzeHcal(), pat::eventhypothesis::AndFilter.AndFilter(), EcalShapeBase.buildMe(), PixelTrackCleanerBySharedHits.cleanTracks(), EnergyLossUpdator.computeElectrons(), HcalPulseShapes.convolve(), DatabasePDG.DatabasePDG(), FastTimeGeometry.dbString(), HGCalGeometry.dbString(), EvolutionECAL.DegradationMeanEM50GeV(), TPNFit.doFit(), TMatacq.doFit(), VVIObjFDetails.dzero(), fftjetcms.fftjet_JetFunctor_parser(), fftjetcms.fftjet_PeakFunctor_parser(), heppy::Davismt2.find_high(), gen::Hydjet2Hadronizer.GetWeakDecayLimit(), gen::PomwigHadronizer.initializeDPDF(), npstat.interpolate_cubic(), npstat.interpolation_coefficients(), PerigeeConversions.jacobianParameters2Cartesian(), L1GtTriggerMenuXmlProducer.L1GtTriggerMenuXmlProducer(), TMultiDimFet.MakeGramSchmidt(), heppy::Davismt2.mt2_bisect(), heppy::Davismt2.nsols(), heppy::Davismt2.nsols_massless(), CaloTowerGeometry.numberOfAlignments(), ZdcGeometry.numberOfAlignments(), CastorGeometry.numberOfAlignments(), EcalPreshowerGeometry.numberOfAlignments(), HcalGeometry.numberOfAlignments(), EcalEndcapGeometry.numberOfAlignments(), EcalBarrelGeometry.numberOfAlignments(), funct::GaussIntegrator.operator()(), pat::eventhypothesis::OrFilter.OrFilter(), SeedMultiplicityComparisonPlot(), mathSSE::Vec2< float >.set(), mathSSE::Vec4< align::Scalar >.set(), sortNtupleByEvent(), heppy::mt2w_bisect::mt2w.teco(), mathSSE::Vec2< float >.Vec2(), mathSSE::Vec2< T >.Vec2(), mathSSE::Vec4< double >.Vec4(), mathSSE::Vec4< align::Scalar >.Vec4(), EcalTrapezoidParameters.vertexList(), VVIObjF.VVIObjF(), and ZSPJPTJetCorrector.ZSPJPTJetCorrector().

DeadROC_duringRun.filename_offline

Definition at line 19 of file DeadROC_duringRun.py.

DeadROC_duringRun.filename_online

Definition at line 18 of file DeadROC_duringRun.py.

DeadROC_duringRun.hnameB

Definition at line 29 of file DeadROC_duringRun.py.

DeadROC_duringRun.MaskedROC_DuringRun

Definition at line 212 of file DeadROC_duringRun.py.

DeadROC_duringRun.minlad

Definition at line 31 of file DeadROC_duringRun.py.

DeadROC_duringRun.outFileName

Definition at line 215 of file DeadROC_duringRun.py.

Referenced by main(), and ZdcTBAnalysis.setup().

DeadROC_duringRun.outFileName_offline

Definition at line 217 of file DeadROC_duringRun.py.

DeadROC_duringRun.outFileName_online

Definition at line 216 of file DeadROC_duringRun.py.

DeadROC_duringRun.runNum
DeadROC_duringRun.shell

Definition at line 33 of file DeadROC_duringRun.py.