CMS 3D CMS Logo

Functions | Variables
newFWLiteAna Namespace Reference

Functions

def addBuildPiece (targetBuild, buildPiece)
 
def createBuildFile (buildfile)
 
def extractBuildFilePiece (buildfile, copy, target='dummy')
 

Variables

 action
 
 args
 
 base
 

Main Program

More...
 
 bin
 
 build
 
 buildCopy
 
 buildPiece
 
 ccRE
 
 copy
 
 default
 
 dest
 
 dirList
 
 firstDir
 
 found
 
 fullBuild
 
 fullName
 
 help
 
 match
 
 name
 
 options
 
 parser
 
 pieces
 
 release_base
 
 searchList
 
 secondDir
 
 target
 
 targetBuild
 
 targetCC
 
 type
 

Function Documentation

◆ addBuildPiece()

def newFWLiteAna.addBuildPiece (   targetBuild,
  buildPiece 
)
Adds needed piece for new executable.  Returns true upon
success.

Definition at line 63 of file newFWLiteAna.py.

63 def addBuildPiece (targetBuild, buildPiece):
64  """Adds needed piece for new executable. Returns true upon
65  success."""
66  backup = targetBuild + ".bak"
67  shutil.copyfile (targetBuild, backup)
68  oldBuild = open (backup, 'r') newBuild = open (targetBuild, 'w')
69  environRE = re.compile (r'<\s*environment')
70  success = False
71  for line in oldBuild:
72  newBuild.write (line)
73  if environRE.search (line):
74  newBuild.write ('\n\n')
75  newBuild.write (buildPiece)
76  success = True
77  oldBuild.close()
78  newBuild.close()
79  return success
80 
81 
82 
83 
def addBuildPiece(targetBuild, buildPiece)
Definition: newFWLiteAna.py:63

◆ createBuildFile()

def newFWLiteAna.createBuildFile (   buildfile)
Creates a BuildFile if one doesn't already exist

Definition at line 54 of file newFWLiteAna.py.

54 def createBuildFile (buildfile):
55  """Creates a BuildFile if one doesn't already exist"""
56  if os.path.exists (buildfile):
57  return
58  build = open (buildfile, 'w')
59  build.write ("<!-- -*- XML -*- -->\n\n<environment>\n\n</environment>\n")
60  build.close()
61 
62 
def createBuildFile(buildfile)
Definition: newFWLiteAna.py:54

◆ extractBuildFilePiece()

def newFWLiteAna.extractBuildFilePiece (   buildfile,
  copy,
  target = 'dummy' 
)
Extracts necessary piece of the buildfile.  Returns empty
string if not found.

Definition at line 12 of file newFWLiteAna.py.

12 def extractBuildFilePiece (buildfile, copy, target = 'dummy'):
13  """Extracts necessary piece of the buildfile. Returns empty
14  string if not found."""
15  try:
16  build = open (buildfile, 'r')
17  except:
18  raise RuntimeError("Could not open BuildFile '%s' for reading. Aboring." \
19  % buildfile)
20  # make my regex
21  startBinRE = re.compile (r'<\s*bin\s+name=(\S+)')
22  endBinRE = re.compile (r'<\s*/bin>')
23  exeNameRE = re.compile (r'(\w+)\.exe')
24  ccName = os.path.basename (copy)
25  match = ccRE.match (ccName)
26  if match:
27  ccName = match.group (1)
28  retval = ''
29  foundBin = False
30  for line in build:
31  # Are we in the middle of copying what we need?
32  if foundBin:
33  retval += line
34  # Are we copying what we need and reach the end?
35  if foundBin and endBinRE.search (line):
36  # all done
37  break
38  # Is this the start of a bin line with the right name?
39  match = startBinRE.search (line)
40  if match:
41  # strip of .exe if it's there
42  exeName = match.group (1)
43  exeMatch = exeNameRE.search (exeName)
44  if exeMatch:
45  exeName = exeMatch.group (1)
46  if exeName == ccName:
47  foundBin = True
48  line = re.sub (exeName, target, line)
49  retval = line
50  build.close()
51  return retval
52 
53 
def extractBuildFilePiece(buildfile, copy, target='dummy')
Definition: newFWLiteAna.py:12

Variable Documentation

◆ action

newFWLiteAna.action

Definition at line 104 of file newFWLiteAna.py.

◆ args

newFWLiteAna.args

Definition at line 108 of file newFWLiteAna.py.

◆ base

newFWLiteAna.base

Main Program

Definition at line 92 of file newFWLiteAna.py.

Referenced by SiStripQuality.add(), MuonBaseNumber.addBase(), algorithm(), FedTimingAlgorithm.analyse(), ApvTimingAlgorithm.analyse(), HcalLutAnalyzer.analyze(), EcalTPGParamBuilder.analyze(), FWCaloDataHistProxyBuilder.assertCaloDataSlice(), FWHFTowerProxyBuilderBase.assertCaloDataSlice(), FWHGTowerProxyBuilderBase.assertCaloDataSlice(), npstat::HistoAxis.binNumberMapper(), FWGUIManager.createView(), FWTriggerTableView.dataChanged(), trklet::KFin.digi(), edm::stream.doAcquireIfNeeded(), DTDigi.DTDigi(), trackerTFP::KalmanFilterFormats.endJob(), LA_Filler_Fitter.ensemble_summary(), mkfit.execTrackerInfoCreatorPlugin(), DDTrackerLinear.execute(), edm::serviceregistry::ServicesManager.fillListOfMakers(), fireworks::OptionNode.fillOptionForType(), GenParticlesHelper.findDescendents(), CaloRecHit.flagField(), MiniFloatConverter.float32to16round(), FWLegoCandidate.FWLegoCandidate(), FWLegoEvePFCandidate.FWLegoEvePFCandidate(), reco::GenJet.genParticle(), ecaldqm::MESetMulti.getIndex(), HcalDTCHeader.getSlotData(), CastorCTDCHeader.getSpigotData(), HcalDCCHeader.getSpigotData(), HGCalWaferMask.getTypeMode(), HGCalWaferMask.goodTypeMode(), SmartSelectionMonitor.hasTag(), Primary4DVertexHarvester.incrementME(), FWSimpleRepresentationChecker.inheritsFrom(), ConstantStepOdeSolver.interpolateCoordinate(), ConstantStepOdeSolver.interpolateIntegrated(), npstat::ArrayND< Numeric >.interpolateLoop(), notcub::CachingHostAllocator.IntPow(), notcub::CachingDeviceAllocator.IntPow(), mtd_digitizer.loadSimHitAccumulator(), LA_Filler_Fitter.make_and_fit_symmchi2(), SymmetryFit.name(), notcub::CachingHostAllocator.NearestPowerOf(), notcub::CachingDeviceAllocator.NearestPowerOf(), operator<<(), logintpack.pack16log(), logintpack.pack16logCeil(), logintpack.pack16logClosed(), logintpack.pack8log(), logintpack.pack8logCeil(), logintpack.pack8logClosed(), dqmservices::JsonWritingTimeoutPoolOutputModule.physicalAndLogicalNameForNewFile(), cms::alpakatools::detail.power(), l1t::stage2::emtf.PowInt(), CSCTFUnpacker.produce(), edm.public_base_classes(), EcalTPGParamBuilder.realignBaseline(), trklet::KFin.redigi(), CmsAnnotation.Render(), LA_Filler_Fitter.result(), rtrim(), mtd_digitizer.saveSimHitAccumulator(), FW3DViewBase.setClip(), CaloRecHit.setFlagField(), CmsShowMainBase.setup(), npstat::ArrayND< Numeric >.sumBelowLoop(), FWTableViewManager.tableFormatsImpl(), edm::productholderindexhelper.typeIsViewCompatible(), logintpack.unpack16log(), logintpack.unpack16logClosed(), logintpack.unpack8log(), logintpack.unpack8logClosed(), TTBV.val(), edm::Lumi3DReWeighting.weight3D_init(), and reweight::LumiReWeighting.weight3D_init().

◆ bin

newFWLiteAna.bin

Definition at line 161 of file newFWLiteAna.py.

Referenced by cms::cuda::HistoContainer< T, NBINS, SIZE, S, I, NHISTS >.__attribute__(), CastorChannelCoder.adc(), HcalQIECoder.adc(), CastorQIECoder.adc(), EcalHitResponse.add(), trklet::VMStubsMEMemory.addStub(), trklet::VMStubsTEMemory.addVMStub(), SiStripGainFromData.algoEndJob(), FedTimingAlgorithm.analyse(), ApvTimingAlgorithm.analyse(), PatZjetsElectronAnalyzer.analyze(), GEMEfficiencyAnalyzer.analyze(), HcalTriggerPrimitiveAlgo.analyzeHF2016(), HcalTriggerPrimitiveAlgo.analyzeHFQIE10(), CentralityBins.areaMeanOfBin(), CentralityBins.areaSigmaOfBin(), PhysicsPerformanceDBWriterTFormula_fromfile_WPandPL.beginJob(), PhysicsPerformanceDBWriterFromFile_WPandPayload_IOV.beginJob(), PhysicsPerformanceDBWriterFromFile_WPandPayload.beginJob(), DTNoiseComputation.beginRun(), CommissioningTask::HistoSet.bin(), PhysicsTools::Calibration::Histogram< float >.binContent(), PhysicsTools::Calibration::Histogram2D< Value_t, AxisX_t, AxisY_t >.binContent(), PhysicsTools::Calibration::Histogram3D< Value_t, AxisX_t, AxisY_t, AxisZ_t >.binContent(), PhysicsTools::Calibration::Histogram< float >.binError(), PhysicsTools::Calibration::Histogram2D< Value_t, AxisX_t, AxisY_t >.binError(), PhysicsTools::Calibration::Histogram3D< Value_t, AxisX_t, AxisY_t, AxisZ_t >.binError(), GenericBinFinderInZ< float, GeomDet >.binIndex(), GeneralBinFinderInZforGeometricSearchDet< float >.binIndex(), MagBinFinders::GeneralBinFinderInZ< double >.binIndex(), CentralityBins.bMeanOfBin(), FastTimerService::PlotsPerPath.book(), GEMBaseValidation.bookDetectorOccupancy(), PhotonOfflineClient.bookHisto(), PhotonAnalyzer.bookHisto(), L1TdeStage2EMTF.bookHistograms(), L1TStage2EMTF.bookHistograms(), L1TStage2uGMT.bookHistograms(), L1TStage2uGMTInputBxDistributions.bookHistograms(), PSMonitor.bookHistograms(), L1TStage2BMTF.bookHistograms(), GEMBaseValidation.bookPIDHist(), RPCMonitorDigi.bookRegionME(), CentralityBins.bSigmaOfBin(), BSvsPVPlots(), DetIdAssociator.buildMap(), cms::alpakatools::CachingAllocator< TDev, TQueue, typename >.CachingAllocator(), PixelLumiDQM.calculateBunchMask(), Quantile.calculateQ(), CalibrationHistosUsingDb.CalibrationHistosUsingDb(), HcalTimeSlewSim.charge(), SplitVertexResolution.checkBinOrdering(), CutBasedElectronID.cicSelection(), ScaleRecordHelper.columnName(), PlotCompareUtility.compare(), MuonME0DigisHarvestor.ComputeBKG(), MuonGEMBaseHarvestor.computeEfficiency(), HTrackVariables.computeEfficiency(), FlavourHistograms< T >.ComputeEfficiency(), GlobalMuonMatchAnalyzer.computeEfficiencyEta(), GlobalMuonMatchAnalyzer.computeEfficiencyPt(), ComputeOOTFractionvsFill(), ComputeOOTFractionvsRun(), ecaldqm::MESet::const_iterator.const_iterator(), MuonResidualsFitter.correctBField(), SimpleJetCorrector.correction(), SamplingAlgorithm.correctProfile(), JME::JetParameters.createVector(), CTPPSCompositeESSource.CTPPSCompositeESSource(), divide(), FlavourHistograms< T >.divide(), CSCOfflineMonitor.doEfficiencies(), MuonTestSummary.doKinematicsTests(), MuonTestSummary.doResidualsTests(), EmDQMPostProcessor.dqmEndJob(), RPCRecHitValidClient.dqmEndJob(), HLTMuonRefMethod.dqmEndJob(), L1TOccupancyClient.dqmEndJob(), DiMuonMassBiasClient.dqmEndJob(), SiPixelLorentzAnglePCLHarvester.dqmEndJob(), L1TOccupancyClient.dqmEndLuminosityBlock(), DTEfficiencyTest.dqmEndLuminosityBlock(), OnlineBeamMonitor.dqmEndRun(), AlcaBeamMonitor.dqmEndRun(), JME::JetResolutionObject.dump(), CastorDbASCIIIO.dumpObject(), CentralityBins.eccentricityMeanOfBin(), CentralityBins.eccentricityRPMeanOfBin(), CentralityBins.eccentricityRPSigmaOfBin(), CentralityBins.eccentricitySigmaOfBin(), DTNoiseCalibration.endJob(), DTNoiseComputation.endJob(), L1TBPTX.endLuminosityBlock(), HLTScalersClient.endLuminosityBlock(), AlcaBeamMonitorClient.endRun(), pixelCPEforGPU.errorFromDB(), pat::ObjectResolutionCalc.etaBin(), SimHitsValidationHcal::etaRange.etaRange(), trklet::TripletEngine.execute(), trklet::TrackletEngineDisplaced.execute(), trklet::TrackletProcessorDisplaced.execute(), trklet::VMRouterCM.execute(), trklet::VMRouter.execute(), l1tVertexFinder::VertexFinder.fastHistoEmulation(), FastFedCablingTask.fill(), OptoScanTask.fill(), LatencyTask.fill(), FineDelayTask.fill(), SummaryGeneratorControlView.fill(), SummaryGeneratorReadoutView.fill(), CalibrationScanTask.fill(), CalibrationTask.fill(), TotemT2Segmentation.fill(), ecaldqm::MESetDet2D.fill(), BeamSpotPI::DisplayParameters< PayloadType >.fill(), gainCalibHelper::SiPixelGainCalibrationByRegionComparisonBase< myType, PayloadType, nIOVs, ntags >.fill(), ecaldqm::MESetDet2D.fill_(), Fill_L2Cluster(), CSCValHists.fillCalibHist(), EvtPlaneProducer.fillCastor(), MillePedeDQMModule.fillExpertHisto_HG(), SiPixelDataQuality.fillGlobalQualityPlot(), EvtPlaneProducer.fillHF(), HGCalHistoSeedingImpl.fillHistoClusters(), DQMMessageLoggerClient.fillHistograms(), DQMFEDIntegrityClient.fillHistograms(), NPUTablesProducer.fillNPUObjectTable(), Phase1PixelROCMaps.fillSelectedRocs(), HGCalHistoSeedingImpl.fillSmoothHistoClusters(), HGCalHistoSeedingImpl.fillSmoothPhiHistoClusters(), HGCalHistoSeedingImpl.fillSmoothRPhiHistoClusters(), DQMProvInfo.fillSummaryMapBin(), EvtPlaneProducer.fillTracker(), PrimaryVertexValidation.fillTrendPlotByIndex(), SplitVertexResolution.fillTrendPlotByIndex(), Phase1PixelROCMaps.fillWholeModule(), cond::payloadInspector::Histogram1< AxisType, PayloadType, IOV_M >.fillWithBinAndValue(), CentralityFilter.filter(), cms::alpakatools::CachingAllocator< TDev, TQueue, typename >.findBin(), ecaldqm::binning.findBin1D(), HGCalHistoSeedingImpl.findHistoSeeds(), HIPplots.FindPeaks(), findSupport(), MagBRod.findVolume(), MagBLayer.findVolume(), MagGeometry.findVolume(), gpuPixelDoublets.for(), for(), trackerDTC::Stub.formatTMTT(), SiStripGainsPCLHarvester.gainQualityMonitor(), HcalHistogramDigi.get(), NoisyChannel.getAverage(), CentralityBins.getBin(), ecaldqm::MESetProjection.getBinContent(), ecaldqm::MESetDet2D.getBinContent(), ecaldqm::MESetProjection.getBinEntries(), ecaldqm::MESetDet2D.getBinEntries(), dqm::impl::MonitorElement.getBinEntries(), ecaldqm::MESetProjection.getBinError(), ecaldqm::MESetDet2D.getBinError(), CSCMonitorObject.GetBinError(), JME::JetResolutionObject::Definition.getBinName(), cms::cuda::allocator.getCachingDeviceAllocator(), cms::cuda::allocator.getCachingHostAllocator(), HiEvtPlaneFlatten.getCentRes1(), HiEvtPlaneFlatten.getCentRes10(), HiEvtPlaneFlatten.getCentRes2(), HiEvtPlaneFlatten.getCentRes20(), HiEvtPlaneFlatten.getCentRes25(), HiEvtPlaneFlatten.getCentRes30(), HiEvtPlaneFlatten.getCentRes40(), HiEvtPlaneFlatten.getCentRes5(), HiEvtPlaneFlatten.getCentResErr1(), HiEvtPlaneFlatten.getCentResErr10(), HiEvtPlaneFlatten.getCentResErr2(), HiEvtPlaneFlatten.getCentResErr20(), HiEvtPlaneFlatten.getCentResErr25(), HiEvtPlaneFlatten.getCentResErr30(), HiEvtPlaneFlatten.getCentResErr40(), HiEvtPlaneFlatten.getCentResErr5(), EcalBarrelGeometry.getClosestCell(), HiEvtPlaneFlatten.getCnt(), FitSlicesYTool.getFittedMean(), FitSlicesYTool.getFittedMeanWithError(), FitSlicesYTool.getFittedSigma(), FitSlicesYTool.getFittedSigmaWithError(), EGammaMvaEleEstimatorCSA14.GetMVABin(), EGammaMvaEleEstimator.GetMVABin(), CastorDbASCIIIO.getObject(), HcalObjRepresent::HcalDataContainer< Items, Item >.GetProjection(), HiEvtPlaneFlatten.getPt(), HiEvtPlaneFlatten.getPt2(), HiEvtPlaneFlatten.getPt2DB(), HiEvtPlaneFlatten.getPtcnt(), HiEvtPlaneFlatten.getPtDB(), JME::JetResolutionObject.getRecord(), PFResolutionMap.getRes(), trklet::VMStubsMEMemory.getStubBin(), HcalHistogramDigi.getSum(), SiStripSummaryCreator.getSummaryME(), HcalDDDRecConstants.getThickActive(), trklet::VMStubsMEMemory.getVMStubMEBin(), trklet::VMStubsTEMemory.getVMStubTEBinned(), HiEvtPlaneFlatten.getX(), HiEvtPlaneFlatten.getXDB(), HiEvtPlaneFlatten.getXoff(), HiEvtPlaneFlatten.getXoffDB(), HiEvtPlaneFlatten.getXYoffcnt(), HiEvtPlaneFlatten.getXYoffmult(), HiEvtPlaneFlatten.getY(), HiEvtPlaneFlatten.getYDB(), HiEvtPlaneFlatten.getYoff(), HiEvtPlaneFlatten.getYoffDB(), SummaryGenerator.histo2DScatter(), SummaryGenerator.histo2DSum(), EGammaMvaEleEstimator.IDIsoCombinedMvaValue(), JME::JetResolutionObject::Definition.init(), trklet::TrackletLUT.initVMRTable(), MagneticFieldMap.inTeslaZ(), EGammaMvaEleEstimator.isoMvaValue(), reweight::LumiReWeighting.ITweight(), reweight::LumiReWeighting.ITweight3BX(), CentralityBins.lowEdgeOfBin(), CaloHitResponse.makeAnalogSignal(), GEMDQMEfficiencyClientBase.makeEfficiency(), DTLocalTriggerEfficiencyTest.makeEfficiencyME(), PlotCompareUtility.makeHTML(), MSLayersKeeperX0AtEta.MSLayersKeeperX0AtEta(), multibsvspvplots(), MultiplicityTimeCorrelations.MultiplicityTimeCorrelations(), EGammaMvaEleEstimatorCSA14.mvaValue(), EGammaMvaEleEstimator.mvaValue(), CentralityBins.NcollMeanOfBin(), CentralityBins.NcollSigmaOfBin(), Quantile.next(), mkfit::axis_base< float, bin_index_t, M, N >.next_N_bin(), mkfit::axis_pow2_u1< float, bin_index_t, 16, 8 >.next_N_bin(), CentralityBins.NhardMeanOfBin(), CentralityBins.NhardSigmaOfBin(), DTTimeEvolutionHisto.normalizeTo(), CentralityBins.NpartMeanOfBin(), CentralityBins.NpartSigmaOfBin(), trklet::VMStubsMEMemory.nStubsBin(), trklet::VMStubsTEMemory.nVMStubsBinned(), egPM::Param< reco::ElectronSeed >.operator()(), ecaldqm::MESet::const_iterator.operator++(), npstat::HistoAxis.overflowIndex(), npstat::HistoAxis.overflowIndexWeighted(), JetResolution.parameter(), JetResolution.parameterEtaEval(), l1t::TriggerMenuParser.parseScales(), DTSegmentAnalysisTest.performClientDiagnostic(), HIPplots.plotAlignableChiSquare(), HLTTauPostProcessor.plotFilterEfficiencies(), HIPplots.plotHitMap(), Quantile.prev(), PrimaryVertexPlots(), L1TOccupancyClient.printDeadChannels(), edm::PreMixingModule::AdjustPileupDistribution.probability(), HcalQLPlotAnalAlgos.processDigi(), L1TStage2RatioClient.processHistograms(), L1TCSCTFClient.processHistograms(), DTDataIntegrityTask.processuROS(), HiEvtPlaneFlatProducer.produce(), CentralityBinProducer.produce(), EvtPlaneProducer.produce(), ecaldqm::MLClient.producePlots(), SummaryGenerator.profile1D(), SiPixelTrackComparisonHarvester.project2DalongDiagonal(), SamplingAlgorithm.pruneProfile(), EcalHitResponse.putAnalogSignal(), reco::castor::QieShape.QieShape(), SiStripGainFromCalibTree.qualityMonitor(), CalibratedHistogramXML.read(), ecaldqm::MESetDet2D.reset(), ecaldqm::MESetDet1D.reset(), ecaldqm::MESet.resetAll(), JetResolution.resolution(), L1MuDTEtaProcessor.runEtaTrackFinder(), L1MuBMEtaProcessor.runEtaTrackFinder(), ContentsXRange.runTest(), ContentsYRange.runTest(), DeadChannel.runTest(), NoisyChannel.runTest(), CompareToMedian.runTest(), CheckVariance.runTest(), SiPixelPhase1Analyzer.SaveDetectorVertices(), JME::JetResolutionObject.saveToFile(), FakeBeamMonitor.scrollTH1(), BeamMonitor.scrollTH1(), JME::JetParameters.set(), UpdateTProfile.setBinContent(), ecaldqm::MESetProjection.setBinContent(), ecaldqm::MESetDet2D.setBinContent(), UpdateTProfile.setBinContents(), ecaldqm::MESetProjection.setBinEntries(), ecaldqm::MESetDet2D.setBinEntries(), dqm::impl::MonitorElement.setBinEntries(), ecaldqm::MESetProjection.setBinError(), ecaldqm::MESetDet2D.setBinError(), CSCMonitorObject.SetBinError(), dqm::impl::MonitorElement.setBinLabel(), GEMDQMEfficiencyClientBase.setBins(), HiEvtPlaneFlatten.setCentRes1(), HiEvtPlaneFlatten.setCentRes10(), HiEvtPlaneFlatten.setCentRes2(), HiEvtPlaneFlatten.setCentRes20(), HiEvtPlaneFlatten.setCentRes25(), HiEvtPlaneFlatten.setCentRes30(), HiEvtPlaneFlatten.setCentRes40(), HiEvtPlaneFlatten.setCentRes5(), mkfit::TrackExtra.setCMSSWTrackIDInfoByTrkParams(), HcalCellType.setDepth(), SiStripHitEfficiencyHarvester.setEffBinLabels(), PatTriggerTagAndProbe.setErrors(), HcalCellType.setEta(), CTPPSCompositeESSource.setIntervalFor(), SiPixelPerformanceSummary.setRawDataErrorType(), TrackerOfflineValidation.setSummaryBin(), DTTimeEvolutionHisto.setTimeSlotValue(), ecaldqm::MESetTrend.shift_(), DTtTrigDBValidation.slFromBin(), DTResolutionAnalysisTest.slFromBin(), DTResolutionTest.slFromBin(), smartError(), smartGausProfile(), smartProfile(), DTtTrigDBValidation.stationFromBin(), DTResolutionAnalysisTest.stationFromBin(), DTResolutionTest.stationFromBin(), TrackerOfflineValidation.summarizeBinInContainer(), FakeBeamMonitor.testScroll(), BeamMonitor.testScroll(), EcalUncalibRecHitWorkerGlobal.timeCorrection(), EcalUncalibRecHitWorkerMultiFit.timeCorrection(), TrendPlotSingleBin(), CentralityBins.triangularityMeanOfBin(), CentralityBins.triangularitySigmaOfBin(), SimpleJetCorrectionUncertainty.uncertainty(), SimpleJetCorrectionUncertainty.uncertaintyBin(), SiStripFEDCheckPlugin.updateHistograms(), CommissioningTask.updateHistoSet(), edm::LumiReWeighting.weight(), reweight::LumiReWeighting.weight(), edm::LumiReWeighting.weightOOT(), reweight::LumiReWeighting.weightOOT(), CalibratedHistogramXML.write(), and SummaryOutputProducer.writeHistograms().

◆ build

◆ buildCopy

newFWLiteAna.buildCopy

Definition at line 113 of file newFWLiteAna.py.

◆ buildPiece

newFWLiteAna.buildPiece

Definition at line 153 of file newFWLiteAna.py.

◆ ccRE

newFWLiteAna.ccRE

Definition at line 10 of file newFWLiteAna.py.

◆ copy

newFWLiteAna.copy

Definition at line 110 of file newFWLiteAna.py.

◆ default

newFWLiteAna.default

Definition at line 101 of file newFWLiteAna.py.

◆ dest

newFWLiteAna.dest

Definition at line 101 of file newFWLiteAna.py.

◆ dirList

newFWLiteAna.dirList

Definition at line 168 of file newFWLiteAna.py.

◆ firstDir

newFWLiteAna.firstDir

Definition at line 158 of file newFWLiteAna.py.

◆ found

newFWLiteAna.found

Definition at line 118 of file newFWLiteAna.py.

Referenced by edm::Trie< T >._addEntry(), PxMeasurementDetSet.addBadFEDChannelPositions(), FastFedCablingHistosUsingDb.addDcuDetIds(), HcalLaserEventFilter2012.addEventString(), edm::MergeableRunProductMetadata.addProcess(), DetGroupMerger.addSameLevel(), edm::ProductRegistry.aliasToModules(), CreateIdealTkAlRecords.alignToGT(), FedTimingAlgorithm.analyse(), ApvTimingAlgorithm.analyse(), CkfDebugger.analyseRecHitExistance(), edmtest::ESTestAnalyzerA.analyze(), L1TdeStage2uGT.analyze(), BeamMonitor.analyze(), ParticleListDrawer.analyze(), ElectronCalibration.analyze(), L1TdeRCT.analyze(), ElectronCalibrationUniv.analyze(), TauTagValidation.analyze(), edmtest::ESTestAnalyzerAZ.analyze(), FSQ::HandlerTemplate< TInputCandidateType, TOutputCandidateType, filter >.analyze(), HitParentTest.analyzeAPDHits(), HitParentTest.analyzeHits(), AlignmentParameterStore.applyAlignableAbsolutePositions(), AlignmentParameterStore.applyAlignableRelativePositions(), reco::GraphMap.assignHighestScoreEdge(), DTHitAssociator.associateDTHitId(), DTHitAssociator.associateHit(), AlignmentParameterStore.attachAlignmentParameters(), SiStripCommissioningOfflineClient.beginRun(), HLTHiggsSubAnalysis.beginRun(), HLTExoticaSubAnalysis.beginRun(), GctFormatTranslateV35.blockToGctInternEmCand(), GctFormatTranslateV38.blockToGctInternEmCand(), GctFormatTranslateV35.blockToRctCaloRegions(), GctFormatTranslateV38.blockToRctCaloRegions(), GctFormatTranslateV35.blockToRctEmCand(), GctFormatTranslateV38.blockToRctEmCand(), GctFormatTranslateMCLegacy.blockToRctEmCand(), L1TTauOffline.bookHistograms(), MTDParametersFromDD.build(), CSCGeometryParsFromDD.build(), RPCConeBuilder.buildCones(), magneticfield::MagGeoBuilder.buildMagVolumes(), GEMEfficiencyAnalyzer.buildStartingState(), GEMEfficiencyAnalyzer.buildStartingStateAlignmentStyle(), GEMEfficiencyAnalyzer.buildStateOnSurfaceWithCSCSegment(), HGCalImagingAlgo.calculateLocalDensity(), calculateVertexSharedTracks(), CaloCellCrossing.CaloCellCrossing(), reco::modules::CandCombinerBase.CandCombinerBase(), HGCalDDDConstants.cellHex(), edm::Schedule.changeModule(), edm::storage::StorageMaker.check(), edm.checkForModuleDependencyCorrectness(), CaloSD.checkHit(), FedRawDataInputSource.checkNext(), TrajectorySegmentBuilder.cleanCandidates(), edm::storage::StatisticsSenderService.closedFile(), SiStripEventSummary.commissioningInfo(), pat::TriggerEvent.conditionCollections(), ConstrainedFitCandProducer< Fitter, InputCollection, OutputCollection, Init >.ConstrainedFitCandProducer(), l1tVertexFinder::TP.countLayers(), DDConstant.createConstantsFromEvaluator(), evf::EvFDaqDirector.createLumiSectionFiles(), reco::NamedCompositeCandidate.daughter(), reco::CompositeCandidate.daughter(), VertexFitterManager.describe(), VertexRecoManager.describe(), SiStripDetCabling.detNumber(), notcub::CachingDeviceAllocator.DeviceAllocate(), SiStripTFile.dirContent(), OutsideInMuonSeeder.doLayer(), HLTTauRefProducer.doPFTaus(), HLTVertexPerformanceAnalyzer.dqmBeginRun(), HLTBTagPerformanceAnalyzer.dqmBeginRun(), QcdUeDQM.dqmBeginRun(), DQMPFCandidateAnalyzer.dqmBeginRun(), METAnalyzer.dqmBeginRun(), QcdLowPtDQM.dqmBeginRun(), SusyPostProcessor.dqmEndJob(), Phase1PixelMaps.drawBarrelMaps(), Phase1PixelROCMaps.drawBarrelMaps(), Phase1PixelMaps.drawForwardMaps(), Phase1PixelROCMaps.drawForwardMaps(), Phase1PixelROCMaps.drawMaps(), Phase1PixelMaps.drawSummaryMaps(), spr.eHCALmatrix(), cond::CredentialStore.exportAll(), l1tVertexFinder::VertexFinder.fastHisto(), l1tVertexFinder::VertexFinder.fastHistoEmulation(), EcalHitMaker.fastInsideCell(), pos::PixelCalibConfiguration.fedCardsAndChannels(), cond::persistency.fetch(), PFElectronTranslator.fetchCandidateCollection(), PFPhotonTranslator.fetchCandidateCollection(), PFElectronTranslator.fetchGsfCollection(), APVGain.FetchMonitor(), SiStripHitEfficiencyWorker::EffME1.fill(), SiStripHitEfficiencyWorker::EffTkMap.fill(), StringBasedNTupler.fill(), HGVHistoProducerAlgo.fill_caloparticle_histos(), MaterialBudgetCastorHistos.fillPerStep(), MaterialBudgetHcalHistos.fillPerStep(), TrackingNtuple.fillSimHits(), TrackingNtuple.fillTrackingParticles(), TrackingNtuple.fillTrackingParticlesForSeeds(), TrackingNtuple.fillTrackingVertices(), MuonKinkFinder.fillTrkKink(), MultiCandGenEvtSelector.filter(), BadGlobalMuonTagger.filter(), RemovePileUpDominatedEventsGen.filter(), pat::TriggerEvent.filterCollections(), edm::Trie< T >.find(), HGCalImagingAlgo.findAndAssignClusters(), edm::TransformerBase.findMatchingIndex(), PlotAlignmentValidation.findObjectFromCanvas(), KinematicTree.findParticle(), FullModelHadronicProcess.FindRhadron(), FWDetailViewManager.findViewersFor(), MagGeometry.findVolume1(), GenJetParticleSelector.GenJetParticleSelector(), CTPPSPixelDigiCollection.get(), PixelDigiCollection.get(), VertexFitterManager.get(), VertexRecoManager.get(), PxMeasurementDetSet.getBadFEDChannelPositions(), egHLT::ComCodes.getCode(), EcalFedMap.getFedFromSlice(), spr.getHotCell(), cond::persistency::RUN_INFO::Table.getInclusiveTimeRange(), CalibrationInterface< T, CO >.getIndex(), trklet::ProcessBase.getISeed(), JetCorrectorParametersCollection.getL5Bin(), JetCorrectorParametersCollection.getL7Bin(), edm::ParentageRegistry.getMapped(), edm::ProcessHistoryRegistry.getMapped(), edm::pset::Registry.getMapped(), MatacqProducer.getMatacqEvent(), MatacqProducer.getMatacqFile(), MtdTracksValidation.getMatchedTP(), Primary4DVertexValidation.getMatchedTP(), METCorrectorParametersCollection.getMiniAodBin(), popcon::EcalLaser_weekly_Linearization_Check.getNewObjects(), cond::Utilities.getOptionValue(), Selector< pat::Electron >.getPasses(), PixelInactiveAreaFinder.getPhiSpanEndcap(), MTVHistoProducerAlgoForTracker.getSeedingLayerSetBin(), MuonAssociatorByHitsHelper.getShared(), MEtXYcorrectParametersCollection.getShiftDataFlavBin(), MEtXYcorrectParametersCollection.getShiftDyFlavBin(), MEtXYcorrectParametersCollection.getShiftMcFlavBin(), MEtXYcorrectParametersCollection.getShiftTTJetsFlavBin(), MEtXYcorrectParametersCollection.getShiftWJetsFlavBin(), EcalFedMap.getSliceFromFed(), CaloMeanResponse.getWeight(), GenWeightsTableProducer.globalBeginRun(), gen::EvtGenInterface.go_through_daughters(), CachingSeedCleanerBySharedInput.good(), cmdline::CmdLine.has(), cond::Utilities.hasOptionValue(), HistoExists(), TimingSD.hitExists(), TotemSD.hitExists(), FP420SD.HitExists(), MuonTruth.hitsFromSimTrack(), notcub::CachingHostAllocator.HostAllocate(), InitMsgView.hostName(), EventMsgView.hostName(), cond::CredentialStore.importForPrincipal(), PixelInactiveAreaFinder.inactiveAreas(), gen::EvtGenInterface.init(), edm::StreamSchedule.initializeEarlyDelete(), ConvBremSeedProducer.initializeLayerMap(), TrajectoryManager.initializeLayerMap(), l1tVertexFinder::InputData.InputData(), reco::parser::LazyInvoker.invoker(), GEMEffByGEMCSCSegmentSource.isME11SegmentMatched(), DDLParser.isParsed(), l1GtObjectStringToEnum(), l1TGtObjectStringToEnum(), LayerTriplets.layers(), KinematicTree.leftBranchSearch(), KinematicTree.leftBranchVertexSearch(), cond::CredentialStore.listConnections(), cond::CredentialStore.listPrincipals(), HcalGeomParameters.loadGeometry(), sistrip::RawToDigiUnpacker.locateStartOfFedBuffer(), edm::VectorInputSource.loopOverEvents(), reco::PFTau3ProngSummary.M_13(), reco::PFTau3ProngSummary.M_23(), reco::modules::ParameterAdapter< helpers::MCTruthPairSelector< T > >.make(), EMTFSubsystemCollector.make_copad_gem(), SiPixelDigitizerAlgorithm.make_digis(), HGCal3DClustering.makeClusters(), MultiClusterAssociatorByEnergyScoreImpl.makeConnections(), LCToCPAssociatorByEnergyScoreImpl.makeConnections(), PreshowerClusterAlgo.makeOneCluster(), ModuleTypeResolverMakerAlpaka.makeResolver(), TSGForOIDNN.makeSeedsFromHitDoublets(), TSGForOIFromL2.makeSeedsFromHits(), TSGForOIDNN.makeSeedsFromHits(), SiStripHitEfficiencyHarvester.makeSummary(), SiStripHitEffFromCalibTree.makeSummary(), SiStripHitEffFromCalibTree.makeSummaryVsBx(), TrackingNtuple.matchCluster(), edm::storage::StatisticsSenderService.matchedLfn(), spr.matchedSimTrack(), PrimaryVertexAnalyzer4PUSlimmed.matchRecoTrack2SimSignal(), Primary4DVertexValidation.matchRecoTrack2SimSignal(), JetPlusTrackCorrector.matchTracks(), FedRawDataInputSource.maybeOpenNewLumiSection(), PrimitiveSelection.merge(), edm::StreamSchedule.moduleDescriptionsInEndPath(), edm::StreamSchedule.moduleDescriptionsInPath(), CosmicParametersDefinerForTP.momentum(), MSLayersKeeperX0AtEta.MSLayersKeeperX0AtEta(), edm::IndexIntoFile::IndexIntoFileItrImpl.next(), edm::Trie< T >.node(), node_filter(), edm::service::MessageServicePSetValidation.noneExcept(), ObjectSelectorBase< SingleElementCollectionSelector< InputCollection, Selector, OutputCollection, StoreContainer, RefAdder >, OutputCollection, NonNullNumberSelector, PostProcessor, StoreManager, Base, ::reco::modules::EventSetupInit< SingleElementCollectionSelector< InputCollection, Selector, OutputCollection, StoreContainer, RefAdder > >::type >.ObjectSelectorBase(), CosmicTrackingParticleSelector.operator()(), Selector< pat::Electron >.passCut(), PFRecoTauDiscriminationByIsolationContainer.PFRecoTauDiscriminationByIsolationContainer(), HCalSD.plotProfile(), pos::PixelPortcardMap.PortCardAndAOH(), edmtest::PathsAndConsumesOfModulesTestService.preBeginJob(), DependencyGraph.preBeginJob(), TrackerMap.printall(), ParticleTreeDrawer.printInfo(), mkfit::Event.printStats(), HistogramProbabilityEstimator.probability(), MultiHitFromChi2EDProducer.produce(), GeneratorSmearedProducer.produce(), pat::PackedPFCandidateRefMixer.produce(), MuonLinksProducerForHLT.produce(), reco::modulesNew::MCTruthCompositeMatcher.produce(), TriggerObjectFilterByCollection.produce(), SiPixelFakeLorentzAngleESSource.produce(), OutsideInMuonSeeder.produce(), HGCalTrackCollectionProducer.produce(), GenJetTauTaggerProducer.produce(), FlavorHistoryProducer.produce(), pat::PATTauProducer.produce(), ProtonProducer.produce(), PFSimParticleProducer.produce(), IsolatedPixelTrackCandidateProducer.produce(), IsolatedPixelTrackCandidateL1TProducer.produce(), hitTripletEDProducerT::Impl< T_HitTripletGenerator, T_SeedingHitSets, T_IntermediateHitTriplets >.produce(), TopProjector< Top, Bottom, Matcher >.produce(), FastjetJetProducer.produceTrackJets(), edm::RootFile.readCurrentEvent(), edm::RootFile.readEvent(), edm::PoolSource.readEvent_(), edm::RootPrimaryFileSequence.readFile_(), edm::PoolSource.readIt(), GzInputStream.readLine(), edm::PoolSource.readLuminosityBlock_(), edm::RootEmbeddedFileSequence.readOneRandom(), edm::RootEmbeddedFileSequence.readOneRandomWithID(), edm::RootEmbeddedFileSequence.readOneSequential(), edm::RootEmbeddedFileSequence.readOneSequentialWithID(), edm::RootEmbeddedFileSequence.readOneSpecified(), PasswordReader.readPassword(), edm::PoolSource.readRun_(), EcalFloatCondObjectContainerXMLTranslator.readXML(), popcon::EcalPFRecHitThresholdsHandler.readXML(), popcon::EcalIntercalibHandler.readXML(), popcon::EcalTPGOddWeightIdMapHandler.readxmlFile(), popcon::EcalTPGWeightIdMapHandler.readxmlFile(), popcon::EcalTPGOddWeightGroupHandler.readxmlFile(), popcon::EcalTPGWeightGroupHandler.readxmlFile(), cond::CredentialStore.removeConnection(), edm::SystemTimeKeeper.removeModuleIfExists(), edm::PathsAndConsumesOfModules.removeModules(), cond::CredentialStore.removePrincipal(), edm::GlobalSchedule.replaceModule(), edm::StreamSchedule.replaceModule(), edm::detail.resolveMaker(), edm.resolveSymbolicLinks(), ModuleTypeResolverAlpaka.resolveType(), ConversionVertexFinder.run(), FWFileEntry.runFilter(), l1t::GlobalBoard.runGTL(), SiStripConfigDb.runs(), TrackerMap.save(), TrackerMap.save_as_fectrackermap(), TrackerMap.save_as_fedtrackermap(), TrackerMap.save_as_HVtrackermap(), TrackerMap.save_as_psutrackermap(), SeedingLayerSetsBuilder.SeedingLayerSetsBuilder(), StringCutEventSelector< Object, any >.select(), PFTauSelectorDefinition.select(), cond.selectAuthorization(), cond.selectConnection(), muon.selectionTypeFromString(), muon.selectorFromString(), cond::CredentialStore.selectPermissions(), cond.selectPrincipal(), edm::ProcessBlockHelperBase.selectProcess(), GsfElectronProducer.setAmbiguityData(), egHLT::ComCodes.setCode(), egHLT::TrigCodes.setCode(), edm::storage::StatisticsSenderService.setCurrentServer(), edm::Path.setEarlyDeleteHelpers(), PxMeasurementDetSet.setEmpty(), cond::CredentialStore.setPermission(), cond.setPermissionData(), SiTrackerMultiRecHit.sharesInput(), CSCRecHit2D.sharesInput(), edm::RootInputFileSequence.skipToItem(), edm::RootInputFileSequence.skipToItemInNewFile(), cond::CredentialStore.startSession(), GenWeightsTableProducer.streamBeginLuminosityBlock(), edm::EventProcessor.throwAboutModulesRequiringLuminosityBlockSynchronization(), edm::helper::IndexRangeAssociation.throwUnexpectedProductID(), HGVHistoProducerAlgo.tracksters_to_SimTracksters(), edm::TriggerNames.triggerIndex(), edmplugin::PluginFactory< R *(Args...)>.tryToCreate(), TrajectorySegmentBuilder.unlockedMeasurements(), CastorCtdcUnpacker.unpack(), cond::CredentialStore.unsetPermission(), FastFedCablingHistosUsingDb.update(), MaterialBudgetHcalProducer.update(), cond.updateConnectionData(), EventStringOutputBranches.updateEventStringNames(), cond.updatePrincipalData(), TriggerOutputBranches.updateTriggerNames(), edm::HiMixingModule.verifyRegistry(), CosmicParametersDefinerForTP.vertex(), TrimmedVertexFinder.vertices(), and GctFormatTranslateMCLegacy.writeRctEmCandBlocks().

◆ fullBuild

newFWLiteAna.fullBuild

Definition at line 123 of file newFWLiteAna.py.

◆ fullName

◆ help

newFWLiteAna.help

Definition at line 102 of file newFWLiteAna.py.

◆ match

newFWLiteAna.match

Definition at line 150 of file newFWLiteAna.py.

◆ name

newFWLiteAna.name

Definition at line 125 of file newFWLiteAna.py.

◆ options

newFWLiteAna.options

Definition at line 108 of file newFWLiteAna.py.

◆ parser

newFWLiteAna.parser

Definition at line 98 of file newFWLiteAna.py.

◆ pieces

newFWLiteAna.pieces

Definition at line 145 of file newFWLiteAna.py.

◆ release_base

newFWLiteAna.release_base

Definition at line 93 of file newFWLiteAna.py.

◆ searchList

newFWLiteAna.searchList

Definition at line 119 of file newFWLiteAna.py.

Referenced by BPHRecoCandidate.add(), and BPHDecayVertex.fTracks().

◆ secondDir

newFWLiteAna.secondDir

Definition at line 159 of file newFWLiteAna.py.

◆ target

newFWLiteAna.target

Definition at line 149 of file newFWLiteAna.py.

◆ targetBuild

newFWLiteAna.targetBuild

Definition at line 170 of file newFWLiteAna.py.

◆ targetCC

newFWLiteAna.targetCC

Definition at line 169 of file newFWLiteAna.py.

◆ type

newFWLiteAna.type

Definition at line 101 of file newFWLiteAna.py.