CMS 3D CMS Logo

Functions | Variables
AlCaHLTBitMon_ParallelJobs Namespace Reference

Functions

def defineOptions ()
 
def getConfigTemplateFilename ()
 
def mkHLTKeyListList (hltkeylistfile)
 
def parallelJobs (hltkeylistfile, jsonDir, globalTag, templateName, queue, cafsetup)
 

Variables

 DEBUG
 DEBUG. More...
 
 options
 
 p
 

Function Documentation

def AlCaHLTBitMon_ParallelJobs.defineOptions ( )

Definition at line 98 of file AlCaHLTBitMon_ParallelJobs.py.

References edm.print(), and str.

99  parser = OptionParser()
100 
101  parser.add_option("-k", "--keylist",
102  dest="hltKeyListFile",
103  default="lista_key.txt",
104  help="text file with HLT keys")
105 
106  parser.add_option("-j", "--json",
107  dest="jsonDir",
108  help="directory with the corresponding json files")
109 
110  parser.add_option("-g", "--globalTag",
111  dest="globalTag",
112  help="the global tag to use in the config files")
113 
114  parser.add_option("-t", "--template",
115  dest="template",
116  default="default",
117  help="the template to use for the config files")
118 
119  parser.add_option("-q", "--queue",
120  dest="queue",
121  default="cmscaf1nd",
122  help="the queue to use (default=cmscaf1nd)")
123 
124  parser.add_option("-c", "--cafsetup", action="store_true",
125  dest="cafsetup",
126  default=False,
127  help="wether the caf setup is sourced in the scripts")
128 
129  (options, args) = parser.parse_args()
130 
131  if len(sys.argv) == 1:
132  print("\nUsage: %s --help"%sys.argv[0])
133  sys.exit(0)
134 
135  if str(options.hltKeyListFile) == 'None':
136  print("Please provide a file with HLT keys")
137  sys.exit(0)
138 
139  if str(options.jsonDir) == 'None':
140  print("Please provide a directory containing the json files")
141  sys.exit(0)
142 
143  if str(options.globalTag) == 'None':
144  print("Please provide a global tag")
145  sys.exit(0)
146 
147  return options
148 
149 
150 #---------------------------------------------MAIN
151 
S & print(S &os, JobReport::InputFile const &f)
Definition: JobReport.cc:66
#define str(s)
def AlCaHLTBitMon_ParallelJobs.getConfigTemplateFilename ( )

Definition at line 24 of file AlCaHLTBitMon_ParallelJobs.py.

Referenced by parallelJobs().

25  template = os.path.expandvars('$CMSSW_BASE/src/Alignment/CommonAlignmentProducer/data/AlCaHLTBitMon_cfg_template_py')
26  if os.path.exists(template):
27  return template
28  template = os.path.expandvars('$CMSSW_RELEASE_BASE/src/Alignment/CommonAlignmentProducer/data/AlCaHLTBitMon_cfg_template_py')
29  if os.path.exists(template):
30  return template
31  return 'None'
32 
def AlCaHLTBitMon_ParallelJobs.mkHLTKeyListList (   hltkeylistfile)

Definition at line 33 of file AlCaHLTBitMon_ParallelJobs.py.

Referenced by parallelJobs().

33 def mkHLTKeyListList(hltkeylistfile):
34  keylistlist = []
35  f = open(hltkeylistfile, 'r')
36  for line in f:
37  keylistlist.append(line.replace('\n',''))
38  f.close()
39  return keylistlist
40 
def AlCaHLTBitMon_ParallelJobs.parallelJobs (   hltkeylistfile,
  jsonDir,
  globalTag,
  templateName,
  queue,
  cafsetup 
)

Definition at line 41 of file AlCaHLTBitMon_ParallelJobs.py.

References getConfigTemplateFilename(), and mkHLTKeyListList().

41 def parallelJobs(hltkeylistfile,jsonDir,globalTag,templateName,queue,cafsetup):
42  PWD = os.path.abspath('.')
43 
44  if templateName == 'default':
45  templateFile = getConfigTemplateFilename()
46  else:
47  templateFile = os.path.abspath(os.path.expandvars(templateName))
48 
49  tfile = open(templateFile, 'r')
50  template = tfile.read()
51  tfile.close()
52  template = template.replace('%%%GLOBALTAG%%%', globalTag)
53 
54  keylistlist = mkHLTKeyListList(hltkeylistfile)
55  index = 0
56  for keylist in keylistlist:
57 
58  configName = 'AlCaHLTBitMon_%d_cfg.py'%index
59  jobName = 'AlCaHLTBitMon_%d_job.csh'%index
60  jsonFile = os.path.abspath('%(dir)s/%(index)d.json' % {'dir' : jsonDir, 'index' : index})
61  dataFile = os.path.abspath('%(dir)s/%(index)d.data' % {'dir' : jsonDir, 'index' : index})
62  logFile = 'AlCaHLTBitMon_%d'%index
63 
64  dfile = open(dataFile, 'r')
65  data = dfile.read()
66  dfile.close()
67 
68  config = template.replace('%%%JSON%%%', jsonFile);
69  config = config.replace('%%%DATA%%%', data);
70  config = config.replace('%%%KEYNAME%%%', keylist);
71  config = config.replace('%%%LOGFILE%%%', logFile);
72 
73  cfile = open(configName, 'w')
74  for line in config:
75  cfile.write(line)
76  cfile.close()
77 
78  jfile = open(jobName, 'w')
79  jfile.write('#!/bin/tcsh\n\n')
80  if cafsetup == True:
81  jfile.write('source /afs/cern.ch/cms/caf/setup.csh\n\n')
82 
83  jfile.write('cd $1\n\n')
84  jfile.write('eval `scramv1 run -csh`\n\n')
85  jfile.write('cmsRun %s\n\n'%configName)
86  jfile.write('cp %s.log $2'%logFile)
87  jfile.close()
88 
89  if os.path.exists('./%s'%keylist) == False:
90  os.system('mkdir ./%s'%keylist)
91 
92  os.system('chmod u+x %s'%jobName)
93  #print('bsub -q %(queue)s %(jobname)s %(pwd)s %(pwd)s/%(outdir)s' % {'queue' : queue, 'jobname' : jobName, 'pwd' : PWD, 'outdir' : keylist})
94  os.system('bsub -q %(queue)s %(jobname)s %(pwd)s %(pwd)s/%(outdir)s' % {'queue' : queue, 'jobname' : jobName, 'pwd' : PWD, 'outdir' : keylist})
95 
96  index = index + 1
97 
def parallelJobs(hltkeylistfile, jsonDir, globalTag, templateName, queue, cafsetup)

Variable Documentation

AlCaHLTBitMon_ParallelJobs.DEBUG

DEBUG.

Definition at line 22 of file AlCaHLTBitMon_ParallelJobs.py.

AlCaHLTBitMon_ParallelJobs.options

Definition at line 152 of file AlCaHLTBitMon_ParallelJobs.py.

AlCaHLTBitMon_ParallelJobs.p

Definition at line 153 of file AlCaHLTBitMon_ParallelJobs.py.

Referenced by BPHSoftMuonSelect.accept(), GenParticleDecaySelector.add(), helper::CandDecayStoreManager.add(), PreMixingCaloParticleWorker.add(), PixelToLNKAssociateFromAscii.addConnections(), TrackerGeometry.addDet(), MTDGeometry.addDet(), TrackerGeometry.addDetUnit(), MTDGeometry.addDetUnit(), ParticleLevelProducer.addGenJet(), EveService.AddGlobalElement(), edmNew::DetSetVector< T >.addItem(), ReferenceTrajectory.addMaterialEffectsBrl(), GaussNoiseFP420.addNoise(), SiGaussianTailNoiseAdder.addNoise(), ParticleAllocator.AddParticle(), FBaseSimEvent.addParticles(), ParabolaFit.addPoint(), PFTrackTransformer.addPoints(), PFTrackTransformer.addPointsAndBrems(), BetaCalculatorECAL.addStepToXtal(), edm::ProductRegistryHelper.addToRegistry(), EventAction.addTrack(), edm::PrincipalCache.adjustIndexesAfterProductRegistryAddition(), edm::PreMixingModule::AdjustPileupDistribution.AdjustPileupDistribution(), edm::soa::impl::TableItrAdvance< I, Args >.advance(), edm::soa::impl::TableItrAdvance< 0, Args... >.advance(), edm::soa::impl::ConstTableItrAdvance< I, Args >.advance(), edm::soa::impl::ConstTableItrAdvance< 0, Args... >.advance(), SiStripGainRandomCalculator.algoAnalyze(), SiStripGainCosmicCalculator.algoBeginJob(), SiStripCalibLorentzAngle.algoBeginJob(), AnalyticalCurvilinearJacobian.AnalyticalCurvilinearJacobian(), AnalyticalPropagatorESProducer.AnalyticalPropagatorESProducer(), ParticleDecayDrawer.analyze(), ParticleTreeDrawer.analyze(), myFastSimVal.analyze(), DDTestVectors.analyze(), RPCDigiValid.analyze(), JetAnaPythia< Jet >.analyze(), HiBasicGenTest.analyze(), DDCMSDetector.analyze(), L1TMuonBarrelParamsViewer.analyze(), DDTestNavigateGeometry.analyze(), ElectronTagProbeAnalyzer.analyze(), PrintTotemDAQMapping.analyze(), TrackerHitAnalyzer.analyze(), HLTMCtruth.analyze(), CaloTowersValidation.analyze(), StandaloneTrackMonitor.analyze(), SiPixelPhase1HitsV.analyze(), ElasticPlotDQMSource.analyze(), ElectronSeedAnalyzer.analyze(), EwkMuLumiMonitorDQM.analyze(), CTPPSPixelDQMSource.analyze(), WriteCTPPSBeamParameters.analyze(), SimplePhotonAnalyzer.analyze(), CTPPSProtonReconstructionEfficiencyEstimatorMC.analyze(), ResolutionCreator.analyze(), CTPPSProtonReconstructionEfficiencyEstimatorData.analyze(), ParticleListDrawer.analyze(), TotemRPDQMSource.analyze(), edm::FlatEGunASCIIWriter.analyze(), TrackBuildingAnalyzer.analyze(), EcalPreshowerSimHitsValidation.analyze(), HcalSimHitsValidation.analyze(), JetTester.analyze(), ElectronStudy.analyze(), V0Monitor.analyze(), SiPixelHitEfficiencySource.analyze(), TrackParameterAnalyzer.analyze(), BoostIODBReader< DataType, RecordType >.analyze(), EnergyScaleAnalyzer.analyze(), EcalSimHitsValidation.analyze(), MuTriggerAnalyzer.analyze(), FourVectorHLT.analyze(), EcalRecHitsValidation.analyze(), BDHadronTrackMonitoringAnalyzer.analyze(), TestPythiaDecays.analyze(), HLTrigReport.analyze(), HGCalTimingAnalyzer.analyze(), IsolatedParticlesGeneratedJets.analyze(), HcalRecHitsValidation.analyze(), HcalLutAnalyzer.analyze(), HitEff.analyze(), HeavyFlavorValidation.analyze(), TTbarSpinCorrHepMCAnalyzer.analyze(), TestOutliers.analyze(), EcalTPGParamBuilder.analyze(), L1GenTreeProducer.analyze(), DisplayGeom.analyze(), EcalDigisValidation.analyze(), HGCalTBAnalyzer.analyze(), TopMonitor.analyze(), PhotonMonitor.analyze(), ListIds.analyze(), MuonMonitor.analyze(), HGCalSimHitValidation.analyze(), JetTester_HeavyIons.analyze(), JetAnalyzer_HeavyIons.analyze(), StudyHLT.analyze(), EcalMixingModuleValidation.analyze(), BPHMonitor.analyze(), IsolatedGenParticles.analyze(), PrimaryVertexAnalyzer4PUSlimmed.analyze(), Rivet::RivetAnalysis.analyze(), CTPPSCommonDQMSource.analyzeProtons(), CTPPSCommonDQMSource.analyzeTracks(), ProtonTransport.ApplyBeamCorrection(), HLTMuonDimuonL3Filter.applyDiMuonSelection(), MuScleFitUtils.applyScale(), approx_expf_P< 6 >(), L1MuDTEtaProcessor.assign(), L1MuBMEtaProcessor.assign(), CSCUpgradeMotherboardLUTGenerator.assignRoll(), CSCDriftSim.avalancheCharge(), Basic3DVector< float >.Basic3DVector(), AlignmentTrackSelector.basicCuts(), AlignmentMuonSelector.basicCuts(), BasicTrajectoryState.BasicTrajectoryState(), HitEff.beginJob(), ZdcSimpleReconstructor.beginRun(), HcalSimpleReconstructor.beginRun(), SiStripLAProfileBooker.beginRun(), ZdcHitReconstructor.beginRun(), HcalHitReconstructor.beginRun(), EcalPedestalHistory.beginRun(), CtfSpecialSeedGenerator.beginRun(), HFPreReconstructor.beginRun(), HBHEPhase1Reconstructor.beginRun(), ExternalLHEProducer.beginRunProduce(), DTTracoChip.bestCand(), CSCGEMMotherboard.bestMatchingPad(), CSCAnodeLCTProcessor.bestTrackSelector(), edm.binary_search_all(), PhysicsTools::BitSet.bits(), GctFormatTranslateV35.blockToFibres(), GctFormatTranslateV38.blockToFibres(), GctFormatTranslateMCLegacy.blockToFibres(), GctFormatTranslateV35.blockToGctInternEmCand(), GctFormatTranslateV38.blockToGctInternEmCand(), GctFormatTranslateV35.blockToGctInternEtSums(), GctFormatTranslateV38.blockToGctInternEtSums(), GctFormatTranslateV35.blockToGctInternEtSumsAndJetCluster(), GctFormatTranslateV38.blockToGctInternEtSumsAndJetCluster(), GctFormatTranslateV38.blockToGctInternHtMissPostWheel(), GctFormatTranslateV38.blockToGctInternHtMissPreWheel(), GctFormatTranslateV35.blockToGctInternRingSums(), GctFormatTranslateV38.blockToGctInternRingSums(), GctFormatTranslateV35.blockToGctJetClusterMinimal(), GctFormatTranslateV38.blockToGctJetClusterMinimal(), GctFormatTranslateV35.blockToGctJetPreCluster(), GctFormatTranslateV38.blockToGctJetPreCluster(), GctFormatTranslateV35.blockToGctTrigObjects(), GctFormatTranslateV38.blockToGctTrigObjects(), GctFormatTranslateV35.blockToGctWheelInputInternEtAndRingSums(), GctFormatTranslateV38.blockToGctWheelInputInternEtAndRingSums(), GctFormatTranslateV35.blockToGctWheelOutputInternEtAndRingSums(), GctFormatTranslateV38.blockToGctWheelOutputInternEtAndRingSums(), GctFormatTranslateV35.blockToRctCaloRegions(), GctFormatTranslateV38.blockToRctCaloRegions(), GctFormatTranslateV35.blockToRctEmCand(), GctFormatTranslateV38.blockToRctEmCand(), GctFormatTranslateMCLegacy.blockToRctEmCand(), CTPPSPixelDQMSource.bookHistograms(), HLTObjectsMonitor.bookHistograms(), RawParticle.boost(), BTagEntry.BTagEntry(), BtagPerformanceESProducer.BtagPerformanceESProducer(), DTBtiCard.btiList(), DTTrig.BtiTrigs(), FWPFCandidateDetailView.build(), FWSiPixelClusterProxyBuilder.build(), FWTrackHitsDetailView.build(), FWConvTrackHitsDetailView.build(), EPOS::IO_EPOS.build_end_vertex(), EPOS::IO_EPOS.build_particle(), EPOS::IO_EPOS.build_production_vertex(), SiStripCondObjBuilderFromDb.buildAnalysisRelatedObjects(), HcalDigitizer.buildHOSiPMCells(), buildLookupTables(), ME0PadDigiProducer.buildPads(), GEMPadDigiProducer.buildPads(), DAFTrackProducerAlgorithm.buildTrack(), TrackExtenderWithMTDT< TrackCollection >.buildTrack(), TrackProducerAlgorithm< reco::Track >.buildTrack(), TrackProducerAlgorithm< reco::GsfTrack >.buildTrack(), MuonSeedTrack.buildTrackAtPCA(), MuonTrackLoader.buildTrackAtPCA(), MuonTrackLoader.buildTrackExtra(), TrackExtenderWithMTDT< TrackCollection >.buildTrackExtra(), MuonTrackLoader.buildTrackUpdatedAtPCA(), ConstrainedTreeBuilder.buildTree(), ConstrainedTreeBuilderT.buildTree(), FWTableWidget.buttonReleasedInBody(), FastCircleFit.calculate(), Basic2DGenericPFlowPositionCalc.calculateAndSetPositionActual(), SiPixelDigitizerAlgorithm.calculateInstlumiFactor(), SiStripDigitizerAlgorithm.calculateInstlumiScale(), reco::TauMassTagInfo.calculateTrkP4(), eetest::CandForTest.CandForTest(), BasicMultiTrajectoryState.canUpdateLocalParameters(), BasicTrajectoryState.canUpdateLocalParameters(), TwoBodyDecayModel.cartesianSecondaryMomenta(), condbon.cdbon_read_rec(), FWGeometryTableViewBase.cdNode(), FWGeometryTableViewBase.cdUp(), GEMEtaPartition.centreOfPad(), ME0EtaPartition.centreOfPad(), spr.cGenSimInfo(), ME0SimHitMatcher.chamberIds(), CSCSimHitMatcher.chamberIds(), DTSimHitMatcher.chamberIds(), GEMSimHitMatcher.chamberIds(), RPCSimHitMatcher.chamberIds(), GEMDigiMatcher.chamberIds(), GEMRecHitMatcher.chamberIds(), SimHitMatcher.chamberIdsGEM(), CSCSimHitMatcher.chamberIdsToString(), GEMDigiMatcher.chamberIdsWithPads(), spr.chargeIsolation(), spr.chargeIsolationCone(), spr.chargeIsolationEcal(), spr.chargeIsolationHcal(), MuonSeedSimpleCleaner.checkPt(), edm::service::CheckTransitions.CheckTransitions(), ResonanceDecayFilterHook.checkVetoResonanceDecays(), IsoTrig.chgIsolation(), SiPixelDigitizerAlgorithm.chooseScenario(), Rivet::HiggsTemplateCrossSections.classifyEvent(), ctfseeding::HitExtractorSTRP.cleanedOfClusters(), CaloSD.cleanHitCollection(), HLTPerformanceInfo.clearModules(), FastSingleTrackerRecHit.clone(), FastProjectedTrackerRecHit.clone(), FastMatchedTrackerRecHit.clone(), edm::ViewBase.clone(), FastTrackerRecHit.clone(), MuonsFromRefitTracksProducer.cloneAndSwitchTrack(), cloneDecayTree(), SiStripFineDelayHit.closestCluster(), CMSMonopolePhysics.CMSMonopolePhysics(), CmsShowMain.CmsShowMain(), CmsShowModelPopup.colorSetChanged(), CmsShowEDI.colorSetChanged(), edm::LuminosityBlock.commit_(), edm::Run.commit_(), edm::Event.commit_(), edm::Event.commit_aux(), cms::MD5Result.compactForm(), HltDiff.compare(), GsfMultipleScatteringUpdator.compute(), MultipleScatteringUpdator.compute(), GsfBetheHeitlerUpdator.compute(), TEveEllipsoidProjected.ComputeBBox(), RodPlaneBuilderFromDet.computeBounds(), PerigeeLinearizedTrackState.computeChargedJacobians(), EnergyLossUpdator.computeElectrons(), AnalyticalCurvilinearJacobian.computeInfinitesimalJacobian(), tauImpactParameter::TrackHelixVertexFitter.computeLorentzVectorPar(), tauImpactParameter::TrackHelixVertexFitter.computeMotherLorentzVectorPar(), PerigeeLinearizedTrackState.computeNeutralJacobians(), tauImpactParameter::TrackHelixVertexFitter.computePar(), PlaneBuilderForGluedDet.computeRectBounds(), spr.coneChargeIsolation(), EcalTrigTowerConstituentsMap.constituentsOf(), CSCGEMMotherboard.constructLCTsGEM(), TwoBodyDecayTrajectory.constructSingleTsosWithErrors(), hcaldqm::ContainerXXX< STDTYPE >.ContainerXXX(), converter::SuperClusterToCandidate.convert(), converter::StandAloneMuonTrackToCandidate.convert(), converter::TrackToCandidate.convert(), CaloTowersCreationAlgo.convert(), convertToPFCandidatePtr(), cond::persistency.copyIov(), SimpleZSPJPTJetCorrector.correctionEtEtaPhiP(), SimpleZSPJPTJetCorrector.correctionPUEtEtaPhiP(), ElectronEnergyCalibrator.correctLinearity(), VVIObjDetails.cosint(), sistripvvi::VVIObjDetails.cosint(), popcon::EcalChannelStatusHandler.cosmicsAnalysis(), pat::EventHypothesis.count(), l1t::MTF7Payload.count(), cms::CRC32Calculator.CRC32Calculator(), l1t::MicroGMTRankPtQualLUTFactory.create(), l1t::Stage2Layer1FirmwareFactory.create(), l1t::Stage1Layer2FirmwareFactory.create(), l1t::Stage2Layer2FirmwareFactory.create(), l1t::MicroGMTMatchQualLUTFactory.create(), l1t::MicroGMTExtrapolationLUTFactory.create(), l1t::MicroGMTCaloIndexSelectionLUTFactory.create(), l1t::MicroGMTAbsoluteIsolationCheckLUTFactory.create(), l1t::MicroGMTRelativeIsolationCheckLUTFactory.create(), spu.create_dir(), spu.create_file(), FlatHexagon.createCorners(), TruncatedPyramid.createCorners(), FlatTrd.createCorners(), TSLToyGen.createHists(), MuonSensitiveDetector.createHit(), BasicTrajectoryState.createLocalParameters(), tauImpactParameter::ParticleBuilder.createLorentzVectorParticle(), CaloDetIdAssociator.crossedElement(), CSCUpgradeMotherboardLUTGenerator.cscWgToRollLUT(), TtFullLepKinSolver.cubic(), CustomPhysicsList.CustomPhysicsList(), CustomPhysicsListSS.CustomPhysicsListSS(), BsJpsiPhiFilter.cuts(), BdecayFilter.cuts(), popcon::EcalChannelStatusHandler.daqOut(), HGCalGeometry.dbString(), DD_NC(), Histos.debug(), BiasedTauDecayer.decay(), GEMCoPadProcessor.declusterize(), ME0Motherboard.declusterize(), FullModelReactionDynamics.Defs1(), FWGUIEventFilter.deleteEntry(), reco::parser::ExpressionVar.delStorage(), fftjetcms.densePeakTreeFromStorable(), PhysicsTools::VarProcessor.deriv(), edm::value_ptr_traits< ParameterSetDescription >.destroy(), edm::value_ptr_traits< T >.destroy(), edm::value_ptr_traits< ParameterDescriptionNode >.destroy(), edm::value_ptr_traits< IndexIntoFile::IndexIntoFileItrImpl >.destroy(), RPCSimHitMatcher.detIds(), DTSimHitMatcher.detIds(), ME0SimHitMatcher.detIds(), CSCSimHitMatcher.detIds(), GEMSimHitMatcher.detIds(), GEMDigiMatcher.detIds(), GEMRecHitMatcher.detIds(), GEMSimHitMatcher.detIdsCoincidences(), SimHitMatcher.detIdsGEM(), SimHitMatcher.detIdsGEMCoincidences(), GEMDigiMatcher.detIdsWithCoPads(), PixelCPEBase.detParam(), FWEveDigitSetScalableMarkerGL.DirectDraw(), TemplatedJetProbabilityComputer< Container, Base >.discriminator(), TemplatedJetBProbabilityComputer< Container, Base >.discriminator(), VertexCompatibleWithBeam.distanceToBeam(), DTTracoChip.DoAdjBtiLts(), SiStripPlotGain.DoAnalysis(), CSCGEMMotherboard.doesWiregroupCrossStrip(), FWRPZView.doFishEyeDistortion(), lhef.domToLines(), Herwig6Hadronizer.doSharedResources(), FWRPZView.doShiftOriginToBeamSpot(), TSLToyGen.doToyExperiments(), Pythia8::PowhegHooksBB4L.doVetoFSREmission(), edm::Worker.doWorkAsync(), RPCEfficiencySecond.dqmEndJob(), DQMNet.dqmhash(), TwoBodyDecayDerivatives.dqsdpx(), TwoBodyDecayDerivatives.dqsdpy(), TwoBodyDecayDerivatives.dqsdpz(), FP420G4Hit.Draw(), edm::RootFile.dropOnInput(), DTSimHitMatcher.dtChamberIdsToString(), DTConfigDBProducer.DTConfigDBProducer(), DTSC.DTSectCollsort1(), DTSC.DTSectCollsort2(), DTTracoChip.DTTracoChip(), reco::PFBlockElementTrack.Dump(), hcaldqm::ContainerXXX< STDTYPE >.dump(), DAClusterizerInZ.dump(), LMFDat.dump(), cmsutil::SimpleAllocHashMultiMap< K, V, Hasher, Equals, Alloc >.dump(), DAClusterizerInZ_vect.dump(), DAClusterizerInZT_vect.dump(), hitfit::Top_Decaykin.dump_ev(), edmtest::HcalDumpConditions.dumpIt(), CastorDumpConditions.dumpIt(), HLTrigReport.dumpReport(), ResidualRefitting.dumpTrackRef(), ZeeCalibration.duringLoop(), EcalRecHitWorkerSimple.EcalRecHitWorkerSimple(), ECALRegFEDSelector.ECALRegFEDSelector(), DTTracoChip.edgeBTI(), EgammaHLTTrackIsolation.electronIsolation(), CaloTowersCreationAlgo.emShwrLogWeightPos(), CaloTowersCreationAlgo.emShwrPos(), lhef::LHEReader::XMLHandler.endElement(), CTPPSOpticsPlotter.endJob(), CTPPSAcceptancePlotter.endJob(), CTPPSProtonReconstructionValidator.endJob(), edm::Schedule.endJob(), edmNew::DetSetVector< T >.equal_range(), DTBtiChip.eraseTrigger(), BinomialProbability.error(), metsig::SignAlgoResolutions.eval(), TMultiDimFet.Eval(), VariablePower.eval(), TMultiDimFet.EvalFactor(), MuonCaloCompatibility.evaluate(), L1ExtraParticleMapProd.evaluateQuadSameObjectTrigger(), edm::test::TestProcessor.event(), edm::test::EventSetupTestHelper.EventSetupTestHelper(), timestudy::ExternalWorkSleepingProducer.ExternalWorkSleepingProducer(), TrackTimeValueMapProducer.extractTrackVertexTime(), TrajectoryExtrapolatorToLine.extrapolate(), AnalyticalImpactPointExtrapolator.extrapolateSingleState(), AnalyticalTrajectoryExtrapolatorToLine.extrapolateSingleState(), FastCircle.FastCircle(), CTPPSFastTrackingProducer.FastReco(), edm::CFWriter.fctTest(), CTPPSPixelDAQMapping.fedIds(), RunPTMTempDat.fetchData(), RunDat.fetchData(), RunCrystalErrorsDat.fetchData(), RunConfigDat.fetchData(), RunFEConfigDat.fetchData(), RunMemTTErrorsDat.fetchData(), RunMemChErrorsDat.fetchData(), RunPNErrorsDat.fetchData(), RunTPGConfigDat.fetchData(), RunTTErrorsDat.fetchData(), FEConfigWeightDat.fetchData(), FEConfigFgrDat.fetchData(), FEConfigLUTDat.fetchData(), FEConfigSlidingDat.fetchData(), FEConfigSpikeDat.fetchData(), FEConfigTimingDat.fetchData(), MonH4TablePositionDat.fetchData(), RunLaserRunDat.fetchData(), MonShapeQualityDat.fetchData(), RunCommentDat.fetchData(), CaliGeneralDat.fetchData(), DCUCapsuleTempDat.fetchData(), DCUIDarkPedDat.fetchData(), DCUVFETempDat.fetchData(), FEConfigFgrEETowerDat.fetchData(), FEConfigLinParamDat.fetchData(), MODCCSFEDat.fetchData(), MODCCSTRDat.fetchData(), MODDCCOperationDat.fetchData(), DCUIDarkDat.fetchData(), CaliGainRatioDat.fetchData(), CaliHVScanRatioDat.fetchData(), DCUCapsuleTempRawDat.fetchData(), FEConfigLUTGroupDat.fetchData(), MonDelaysTTDat.fetchData(), FEConfigFgrEEStripDat.fetchData(), RunH4TablePositionDat.fetchData(), CaliCrystalIntercalDat.fetchData(), CaliTempDat.fetchData(), FEConfigFgrParamDat.fetchData(), FEConfigLUTParamDat.fetchData(), FEConfigPedDat.fetchData(), MonLaserStatusDat.fetchData(), MonOccupancyDat.fetchData(), DCULVRTempsDat.fetchData(), DCULVRBTempsDat.fetchData(), MonLaserPulseDat.fetchData(), MonPedestalsOnlineDat.fetchData(), FEConfigWeightGroupDat.fetchData(), MonRunDat.fetchData(), FEConfigFgrGroupDat.fetchData(), MonPedestalOffsetsDat.fetchData(), ODDelaysDat.fetchData(), FEConfigLinDat.fetchData(), MonCrystalConsistencyDat.fetchData(), FEConfigBadTTDat.fetchData(), MonLaserBlueDat.fetchData(), MonLaserIRedDat.fetchData(), MonLaserRedDat.fetchData(), MonLed1Dat.fetchData(), MonLed2Dat.fetchData(), ODWeightsSamplesDat.fetchData(), MonLaserGreenDat.fetchData(), MonPNPedDat.fetchData(), ODBadXTDat.fetchData(), ODBadTTDat.fetchData(), FEConfigBadStripDat.fetchData(), FEConfigBadXTDat.fetchData(), FEConfigParamDat.fetchData(), MonMemChConsistencyDat.fetchData(), ODTowersToByPassDat.fetchData(), ODVfeToRejectDat.fetchData(), MODCCSHFDat.fetchData(), MonTTConsistencyDat.fetchData(), MonMemTTConsistencyDat.fetchData(), MonPedestalsDat.fetchData(), MonTestPulseDat.fetchData(), ODGolBiasCurrentDat.fetchData(), ODPedestalOffsetsDat.fetchData(), MonPNBlueDat.fetchData(), MonPNIRedDat.fetchData(), MonPNLed1Dat.fetchData(), MonPNLed2Dat.fetchData(), MonPNMGPADat.fetchData(), MonPNRedDat.fetchData(), MonPNGreenDat.fetchData(), MonPulseShapeDat.fetchData(), ODWeightsDat.fetchData(), MODDCCDetailsDat.fetchData(), DCULVRVoltagesDat.fetchData(), DCUCCSDat.fetchData(), ITimingDat.fetchData(), RunDCSHVDat.fetchHistoricalData(), RunDCSMagnetDat.fetchLastData(), RunDCSLVDat.fetchLastData(), RunDCSHVDat.fetchLastData(), fftjetcms.fftjet_Function_parser(), fftjetcms.fftjet_PeakSelector_parser(), reco::PatternSet< N >.fill(), PixelCPEClusterRepair.fill2DTemplIDs(), CTPPSBeamParametersESSource.fillBeamParameters(), edm::RootOutputFile.fillBranches(), HcalTB04Analysis.fillBuffer(), AnalysisRootpleProducer.fillCaloJet(), AnalysisRootpleProducerOnlyMC.fillChargedJet(), AnalysisRootpleProducer.fillChargedJet(), MTDCPEBase.fillDetParams(), PixelCPEBase.fillDetParams(), CmsShowEDI.fillEDIFrame(), ZeePlots.fillEleMCInfo(), dqm::TrackAnalyzer.fillHistosForState(), HFShowerLibrary.fillHits(), AnalysisRootpleProducerOnlyMC.fillInclusiveJet(), AnalysisRootpleProducer.fillInclusiveJet(), GenParticleProducer.fillIndices(), AnalysisRootpleProducerOnlyMC.fillMCParticles(), AnalysisRootpleProducer.fillMCParticles(), edm::Schedule.fillModuleAndConsumesInfo(), TSLToyGen.fillPar(), Phase2StripCPE.fillParam(), StripCPE.fillParams(), FastTimerServiceClient.fillPathSummaryPlots(), QcdLowPtDQM.fillPixelClusterInfos(), edm.fillProcessHistoryBranch(), TSLToyGen.fillPull1(), TSLToyGen.fillPull2(), SVTagInfoValidationAnalyzer.fillRecoToSim(), recoBSVTagInfoValidationAnalyzer.fillRecoToSim(), TopDecaySubset.fillReferences(), ESSummaryClient.fillReportSummary(), SVTagInfoValidationAnalyzer.fillSimToReco(), recoBSVTagInfoValidationAnalyzer.fillSimToReco(), ClusterShapeHitFilter.fillStripData(), RunDCSMagnetDat.fillTheMap(), RunDCSLVDat.fillTheMap(), RunDCSHVDat.fillTheMap(), RunDCSHVDat.fillTheMapByTime(), MillePedeMonitor.fillTrack(), AnalysisRootpleProducer.fillTracks(), AnalysisRootpleProducer.fillTracksJet(), EopVariables.fillVariables(), edm.fillView(), ZeePlots.fillZMCInfo(), BTagSkimMC.filter(), STFilter.filter(), PartonShowerCsHepMCFilter.filter(), PartonShowerBsHepMCFilter.filter(), LHEJetFilter.filter(), PythiaFilterMultiMother.filter(), ElectronIdMVAProducer.filter(), PythiaHepMCFilterGammaGamma.filter(), PythiaFilterMultiAncestor.filter(), JetFlavourCutFilter.filter(), JetFlavourFilter.filter(), PythiaFilterEMJet.filter(), PythiaFilterZgamma.filter(), PythiaFilterGammaJet.filter(), PythiaFilterGammaJetIsoPi0.filter(), PythiaFilterGammaJetWithBg.filter(), PythiaFilterGammaJetWithOutBg.filter(), PythiaFilterZJetWithOutBg.filter(), PythiaFilterZJet.filter(), GenericDauHepMCFilter.filter(), PythiaFilterEMJetHeep.filter(), edm::FwdPtrCollectionFilter< T, S, H >.filter(), MCSingleParticleYPt.filter(), HLTMuonPointingFilter.filter(), TwoVBGenFilter.filter(), HighMultiplicityGenFilter.filter(), LQGenFilter.filter(), MCSmartSingleParticleFilter.filter(), Zto2lFilter.filter(), MCLongLivedParticles.filter(), MCDecayingPionKaonFilter.filter(), MCDijetResonance.filter(), MCMultiParticleFilter.filter(), MCZll.filter(), PythiaFilter.filter(), PythiaFilterHT.filter(), PythiaFilterMotherSister.filter(), DJpsiFilter.filter(), FourLepFilter.filter(), HZZ4lFilter.filter(), MCParticlePairFilter.filter(), MCSingleParticleFilter.filter(), PythiaHLTSoupFilter.filter(), ZgMassFilter.filter(), PythiaDauFilter.filter(), PythiaDauVFilter.filter(), PythiaProbeFilter.filter(), ZgammaMassFilter.filter(), PythiaMomDauFilter.filter(), HGCalTBCheckGunPostion.filter(), HerwigMaxPtPartonFilter.filter(), ProtonTaggerFilter.filter(), PythiaFilterIsolatedTrack.filter(), JetVertexChecker.filter(), PythiaDauVFilterMatchID.filter(), PythiaFilterTTBar.filter(), VBFGenJetFilter.filterGenLeptons(), tkMSParameterization::Elems.find(), cms::DDAlgoArguments.find(), cond::persistency::RunInfoProxy.find(), edm::MapOfVectors< std::string, AnalysisDescription * >.find(), edm::DataFrameContainer.find(), edm::DetSetVector< T >.find(), edm::DetSetRefVector< T, C >.find(), edmNew::DetSetVector< T >.find(), edm.find_if_in_all(), edm::DetSetVector< T >.find_or_insert(), LocalFileSystem.findCachePath(), StripClusterizerAlgorithm.findDetId(), edmNew::DetSetVector< T >.findItem(), edm::MapOfVectors< std::string, AnalysisDescription * >.findKey(), TopDecaySubset.findLastParticleInChain(), findLastSelf(), ElectronCalibration.findMaxHit(), DQMImplNet< DQMNet::Object >.findObject(), JetFlavourCutFilter.findParticle(), JetFlavourFilter.findParticle(), BsJpsiPhiFilter.findParticle(), BdecayFilter.findParticle(), pat::PATGenCandsFromSimTracksProducer.findRef(), Pythia8::PowhegHooksBB4L.findresscale(), CSCXonStrip_MatchGatti.findXOnStrip(), MCTruthHelper< P >.firstCopy(), GEMEtaPartition.firstStripInPad(), ME0EtaPartition.firstStripInPad(), SymmetryFit.fit(), CSCCondSegFit.fit(), LA_Filler_Fitter.fit_width_profile(), CSCSegFit.fitlsq(), MuonSegFit.fitlsq(), GEMCSCSegFit.fitlsq(), JetCoreClusterSplitter.fittingSplit(), edm::ProvenanceAdaptor.fixProcessHistory(), tauImpactParameter::TrackHelixVertexFitter.freeParName(), MCTruthHelper< P >.fromHardProcessBeforeFSR(), TkMSParameterization.fromTo(), GammaFunctionGenerator.gammaFrac(), GeantPropagatorESProducer.GeantPropagatorESProducer(), edm::RandomXiThetaGunProducer.generateParticle(), FFTJetProducer.genJetPreclusters(), hitfit.gentop(), FakeCPE::Map.get(), edm::RangeMap< det_id_type, edm::OwnVector< B > >.get(), get_4(), dqmservices::DQMFileIterator::LumiEntry.get_data_path(), StripCPE.getAlgoParam(), edm::GlobalSchedule.getAllModuleDescriptions(), edm::Schedule.getAllModuleDescriptions(), edm::StreamSchedule.getAllModuleDescriptions(), edm.getAnyPtr(), SiStripQuality.getBadApvs(), SiStripQuality.getBadFibers(), MultiTrackSelector.getBestVertex(), EcalSelectiveReadoutProducer.getBinOfMax(), l1t::MP7BufferDumpToRaw.getBlocks(), MatacqProducer.getCalibTriggerType(), TtSemiEvtSolution.getCalLept(), TtSemiEvtSolution.getCalLepW(), CaloHitMaker.getCalorimeter(), DTTSS.getCarry(), HcalGeometry.getCells(), CaloSubdetectorGeometry.getCells(), MatcherUsingTracksAlgorithm.getChi2(), CaloSubdetectorGeometry.getClosestCell(), EcalPreshowerGeometry.getClosestCellInPlane(), fireworks.GetColorValuesForPaletteExtra(), CSCComparatorDigiFitter.getComparatorDigiCoordinates(), ROOT::Math::Transform3DPJ.GetComponents(), L1GtVhdlWriterCore.getCondChipVhdContentFromTriggerMenu(), HIPixelClusterVtxProducer.getContainedHits(), HLTPixelClusterShapeFilter.getContainedHits(), ClusterCompatibilityProducer.getContainedHits(), edm::productholderindexhelper.getContainedTypeFromWrapper(), FastTimeDDDConstants.getCorners(), SCEnergyCorrectorSemiParm.getCorrections(), ProtonTransport.getCorrespondenceMap(), HLTScalersClient::CountLSFifo_t.getCount(), SiStripThreshold.getData(), getDaughters(), Pythia8::PowhegHooksBB4L.getdechardness(), ROOT::Math::Transform3DPJ.GetDecomposition(), TFitParticleMCPInvSpher.getDerivative(), LaserSorter.getDetailedTriggerType(), mySiStripNoises.getDetIds(), SiStripNoises.getDetIds(), SiStripPedestals.getDetIds(), SiPixelGainCalibrationForHLT.getDetIds(), SiPixelGainCalibrationOffline.getDetIds(), SiPixelGainCalibration.getDetIds(), SiStripBadStrip.getDetIds(), SiStripSummary.getDetIds(), HDQMSummary.getDetIds(), SiStripThreshold.getDetIds(), DTSC.getDTSectCollPhCand(), DTSectColl.getDTSectCollPhCand(), DTSC.getDTSectCollThCand(), DTSectColl.getDTSectCollThCand(), DTTSS.getDTTSCand(), DTTSM.getDTTSCand(), DTTSPhi.getDTTSS(), pftools::CaloEllipse.getEccentricity(), edm.getEnvironmentVariable(), TopologyWorker.getetaphi(), BasicHepMCValidation::ParticleMonitor.GetFinal(), ExoticaDQM.getGenParticleTrajectoryAtBeamline(), ClusterShapeTrackFilter.getGlobalDirs(), IsoTrig.getGoodTracks(), HCALResponse.getHCALEnergyResponse(), HFShower.getHits(), LMFDat.getKeyList(), PseudoTopProducer.getLast(), StEvtSolution.getLept(), TtDilepEvtSolution.getLeptNeg(), TtDilepEvtSolution.getLeptPos(), StEvtSolution.getLepW(), TwoBodyDecayLinearizationPointFinder.getLinearizationPoint(), pftools::CaloEllipse.getMajorMinorAxes(), StorageFactory.getMaker(), HLTPerformanceInfo.getModuleOnPath(), tauImpactParameter::TrackHelixVertexFitter.getMother(), SiPixelGainCalibrationForHLT.getNCols(), SiPixelGainCalibrationOffline.getNCols(), SiPixelGainCalibration.getNCols(), popcon::EcalSRPHandler.getNewObjects(), popcon::EcalTPGWeightIdMapHandler.getNewObjects(), popcon::EcalDAQHandler.getNewObjects(), popcon::EcalTPGBadStripHandler.getNewObjects(), popcon::EcalTPGBadTTHandler.getNewObjects(), popcon::EcalTPGFineGrainEBIdMapHandler.getNewObjects(), popcon::EcalTPGLinConstHandler.getNewObjects(), popcon::EcalTPGLutIdMapHandler.getNewObjects(), popcon::EcalTPGWeightGroupHandler.getNewObjects(), popcon::EcalTPGBadXTHandler.getNewObjects(), popcon::EcalTPGFineGrainEBGroupHandler.getNewObjects(), popcon::EcalTPGFineGrainTowerEEHandler.getNewObjects(), popcon::EcalTPGFineGrainStripEEHandler.getNewObjects(), popcon::EcalTPGPedestalsHandler.getNewObjects(), popcon::EcalTPGSlidingWindowHandler.getNewObjects(), popcon::EcalTPGLutGroupHandler.getNewObjects(), popcon::EcalTPGSpikeThresholdHandler.getNewObjects(), popcon::EcalPedestalsHandler.getNewObjectsH2(), popcon::EcalPedestalsHandler.getNewObjectsP5(), NuclearTrackCorrector.getNewTrackExtra(), BsJpsiPhiFilter.getNextBs(), BdecayFilter.getNextBs(), MixCollection< T >.getObject(), LMFCorrCoefDat.getParameters(), FastLineRecognition.getPatterns(), ClusterShapeHitFilter.getpd(), TMom.getPeak(), PCrossingFrame< T >.getPileups(), FastTimeDDDConstants.getPosition(), pftools::CaloEllipse.getPosition(), DPFIsolation.getPredictions(), edm.getProduct(), edm::RootDelayedReader.getProduct_(), HDRShower.getR(), mySiStripNoises.getRange(), SiStripNoises.getRange(), SiStripPedestals.getRange(), SiPixelGainCalibrationForHLT.getRange(), SiPixelGainCalibrationOffline.getRange(), SiPixelGainCalibration.getRange(), SiStripBadStrip.getRange(), SiStripApvGain.getRange(), SiStripSummary.getRange(), HDQMSummary.getRange(), SiStripThreshold.getRange(), SiPixelGainCalibrationForHLT.getRangeAndNCols(), SiPixelGainCalibrationOffline.getRangeAndNCols(), SiPixelGainCalibration.getRangeAndNCols(), SiStripNoises.getRangeByPos(), SiStripBadStrip.getRangeByPos(), StEvtSolution.getRecLept(), TtSemiEvtSolution.getRecLept(), TtSemiEvtSolution.getRecLepW(), tauImpactParameter::TrackHelixVertexFitter.getRefitLorentzVectorParticles(), tauImpactParameter::TrackHelixVertexFitter.getRefitTracks(), SiStripApvGain.getRegistryPointers(), pat::helper::ResolutionHelper.getResolE(), pat::helper::ResolutionHelper.getResolEt(), pat::helper::ResolutionHelper.getResolPt(), pat::helper::ResolutionHelper.getResolPx(), pat::helper::ResolutionHelper.getResolPy(), pat::helper::ResolutionHelper.getResolPz(), pat::helper::ResolutionHelper.getResolTheta(), PerformancePayloadFromBinnedTFormula.getResult(), PerformancePayloadFromTFormula.getResult(), ClusterShapeHitFilter.getsd(), ClusterShapeHitFilter.getSizes(), SiStripPI.getTheRange(), AlignmentPI.getTheRange(), pftools::CaloEllipse.getTheta(), DTTSS.getTrack(), DTTSM.getTrack(), DTSC.getTrackPh(), DTSectColl.getTrackPh(), DTSC.getTrackTh(), DTSectColl.getTrackTh(), FlatHexagon.getTransform(), FlatTrd.getTransform(), TruncatedPyramid.getTransform(), CaloCellGeometry.getTransform(), ConversionSeedFilter.getTSOS(), StormLcgGtStorageMaker.getTURL(), StormStorageMaker.getTURL(), ODWeightsDat.getWeight(), ODWeightsSamplesDat.getWeightNumber(), edm.getWrapperBasePtr(), getX509SubjectFromFile(), CSCUpgradeAnodeLCTProcessor.ghostCancellationLogicOneWire(), CSCAnodeLCTProcessor.ghostCancellationLogicOneWire(), reco::GhostTrackPrediction.GhostTrackPrediction(), HLTriggerJSONMonitoring.globalBeginRun(), PFTrackAlgoTools.goodPtResolution(), GlobalTrackerMuonAlignment.gradientGlobal(), GsfMaterialEffectsESProducer.GsfMaterialEffectsESProducer(), GsfTrajectoryFitterESProducer.GsfTrajectoryFitterESProducer(), GsfTrajectorySmoother.GsfTrajectorySmoother(), GsfTrajectorySmootherESProducer.GsfTrajectorySmootherESProducer(), CaloTowersCreationAlgo.hadShwrPos(), FWGeometryTableViewBase::FWViewCombo.HandleButton(), FWPSetCellEditor.HandleKey(), XrdAdaptor::RequestManager.handleOpen(), MCTruthHelper< P >.hardProcessMotherCopy(), TkPixelMeasurementDet.hasBadComponents(), DDLogicalPart.hasDDValue(), PrimaryVertexValidation.hasFirstLayerPixelHits(), TauDecay.hasResonance(), HcalHardcodeParameters.HcalHardcodeParameters(), HcalLinearCompositionFunctor.HcalLinearCompositionFunctor(), HCALResponse.HCALResponse(), HelixExtrapolatorToLine2Order.HelixExtrapolatorToLine2Order(), Generator.HepMC2G4(), QualityCutsAnalyzer::histogram_element_t.histogram_element_t(), ctfseeding::HitExtractorPIX.hits(), SeedingLayerSetsHits.hits(), DTSimHitMatcher.hitWiresInDTChamberId(), DTSimHitMatcher.hitWiresInDTSuperLayerId(), HLTPixelIsolTrackFilter.hltFilter(), HLTMuonDimuonL2Filter.hltFilter(), HLTMuonDimuonL2FromL1TFilter.hltFilter(), HLTMuonTrimuonL3Filter.hltFilter(), HLTDoublet< T1, T2 >.hltFilter(), HLTmmkkFilter.hltFilter(), HLTmmkFilter.hltFilter(), identity(), MTDGeometry.idToDet(), TrackerGeometry.idToDet(), MTDGeometry.idToDetUnit(), TrackerGeometry.idToDetUnit(), cond::persistency.importIovs(), MFGrid3D.index(), edm::reftobase::IndirectHolder< T >.IndirectHolder(), triggerExpression::PathReader.init(), FWViewContextMenuHandlerGL.init(), ProtonReconstructionAlgorithm.init(), DTBtiChip.init(), fit::RootMinuit< Function >.init(), SiPixelDigitizerAlgorithm.initCal(), IdealZDCTrapezoid.initCorners(), IdealObliquePrism.initCorners(), IdealCastorTrapezoid.initCorners(), IdealZPrism.initCorners(), LocalFileSystem.initFSInfo(), SiStripDetVOffFakeBuilder.initialize(), CMSCGEN.initialize(), edm::StreamSchedule.initializeEarlyDelete(), EcalEndcapGeometry.initializeParms(), EcalCondDBInterface.insertConfigDataSet(), EcalCondDBInterface.insertDataSet(), JetFlavourClustering.insertGhosts(), popcon::EcalDCSHandler.insertHVDataSetToOffline(), popcon::EcalDCSHandler.insertLVDataSetToOffline(), edm.insertSelectedProcesses(), SimpleDiskBounds.inside(), RectangularPlaneBounds.inside(), CaloCellGeometry.inside(), EcalHitMaker.inside3D(), HCALResponse.interHD(), CSCUpgradeMotherboard.intersection(), SiStripQuality.IsApvBad(), ThirdHitPrediction.isCompatibleWithMultipleScattering(), SiStripQuality.IsFiberBad(), isFirst(), MuonIdProducer.isGoodTrack(), EGEnergyCorrector.IsInitialized(), HiGammaJetSignalDef.IsIsolated(), HiGammaJetSignalDef.IsIsolatedJP(), HiGammaJetSignalDef.IsIsolatedPP(), SiStripQuality.IsModuleBad(), SiStripDetVOff.IsModuleHVOff(), SiStripDetVOff.IsModuleLVOff(), SiStripQuality.IsModuleUsable(), SiStripDetVOff.IsModuleVOff(), PerformancePayloadFromBinnedTFormula.isOk(), PerformancePayloadFromTFormula.isOk(), pat::helper::ParametrizationHelper.isPhysical(), edm::service.isProcessWideService(), CSGContinuousAction.isRunning(), edmNew::DetSetVector< T >.isValid(), FWInteractionList.itemChanged(), FFTJetProducer.iterateJetReconstruction(), edm.iterateTrieLeaves(), PhysicsTools::TreeTrainer.iteration(), IterativeHelixExtrapolatorToLine.IterativeHelixExtrapolatorToLine(), jacobianCartesianToCurvilinear(), JacobianCartesianToLocal.JacobianCartesianToLocal(), PerigeeConversions.jacobianCurvilinear2Perigee(), jacobianCurvilinearToCartesian(), PerigeeConversions.jacobianPerigee2Curvilinear(), fftjetcms.jetFromStorable(), join(), KFSwitching1DUpdatorESProducer.KFSwitching1DUpdatorESProducer(), KFTrajectorySmoother.KFTrajectorySmoother(), KFUpdatorESProducer.KFUpdatorESProducer(), hitfit::Lepjets_Event.kt(), hitfit::Gentop_Args.kt_res_str(), HDQMUtil.langaupro(), popcon::EcalChannelStatusHandler.laserAnalysis(), MCTruthHelper< P >.lastCopy(), MCTruthHelper< P >.lastDaughterCopyBeforeFSR(), GEMEtaPartition.lastStripInPad(), ME0EtaPartition.lastStripInPad(), DTSimHitMatcher.layerIds(), CSCAnodeLCTProcessor.lctSearch(), PerformancePayloadFromBinnedTFormula.limitPos(), PerformancePayloadFromTFormula.limitPos(), G4SimEvent.load(), BTagCalibrationReader::BTagCalibrationReaderImpl.load(), cond::persistency::KeyList.load(), CovarianceParameterization.load(), hcaldqm::ContainerXXX< STDTYPE >.load(), MP7PacketReader.load(), edmplugin::PluginManager.load(), EcalDeadChannelRecoveryNN< DetIdT >.load(), DTTSTheta.loadDTTSTheta(), loadFFTJetInterpolationTable(), HGCalGeomParameters.loadGeometryHexagon(), HcalPatternSource.loadPatterns(), DTSectColl.loadSectColl(), gs.loadStringArchiveFromArchive(), DTTracoCard.loadTRACO(), DTTSPhi.loadTSPhi(), LoadWeights(), LocalCacheFile.LocalCacheFile(), DTBtiCard.localClear(), DTTracoCard.localClear(), IdealObliquePrism.localCorners(), IdealZPrism.localCorners(), StripCPEgeometric.localParameters(), StripCPE.localParameters(), Phase2StripCPE.localParameters(), StripCPEfromTrackAngle.localParameters(), fit::Likelihood< Sample, PDF, Yield >.log(), LookToRead_Look_Exact(), LookToRead_Look_Lookahead(), LookToRead_Read(), LookToRead_Seek(), LookToRead_Skip(), QualityCutsAnalyzer.LoopOverJetTracksAssociation(), PPSTools.LorentzVector2HectorParticle(), edm.lower_bound_all(), LzmaDecode(), main(), SimWatcherMaker< T >.make(), EMTFSubsystemCollector.make_copad_gem(), make_range(), HFClusterAlgo.makeCluster(), HGCalCLUEAlgo.makeClusters(), HGCalImagingAlgo.makeClusters(), egHLT::TrigCodes.makeCodes(), hcaldqm::quantity::FEDQuantity.makeCopy(), hcaldqm::quantity::EventType.makeCopy(), TagProbeFitter.makeEfficiencyPlot1D(), DTSurveyChamber.makeErrors(), HSCPValidator.makeGenPlots(), TMultiDimFet.MakeGramSchmidt(), DTSurveyChamber.makeMatrix(), edm::WorkerMaker< T >.makeModule(), DQMImplNet< DQMNet::Object >.makeObject(), TotemRPDQMHarvester.MakePlaneEfficiencyHistograms(), HSCPValidator.makeRecoPlots(), edm::Maker.makeReplacementModule(), FWParameterSetterBase.makeSetterFor(), makeVecForEventShape(), DTSurveyChamber.makeVector(), edm::reftobase::IndirectHolder< T >.makeVectorHolder(), edm::MapOfVectors< std::string, AnalysisDescription * >.MapOfVectors(), DQMImplNet< DQMNet::Object >.markObjectsDead(), L1TOccupancyClientHistogramService.maskBins(), MuScleFitUtils.massProb(), ErrorsPropagationAnalyzer.massResolution(), MuScleFitUtils.massResolution(), CSCSimHitMatcher.match(), GEMSimHitMatcher.match(), RPCSimHitMatcher.match(), ME0SimHitMatcher.match(), SiStripRecHitMatcher.match(), Pythia8::PowhegHooksBB4L.match_decay(), PerformancePayloadFromTable.matches(), CSCGEMMotherboard.matchingPads(), PerformancePayloadFromTable.maxPos(), CSCTriggerPrimitivesReader.MCStudies(), RectangularMTDTopology.measurementPosition(), RectangularPixelTopology.measurementPosition(), MeasurementTrackerESProducer.MeasurementTrackerESProducer(), TrackMerger.merge(), CTPPSRPAlignmentCorrectionsDataESSourceXML.Merge(), dqmstorepb::ROOTFilePB_Histo.MergePartialFromCodedStream(), dqmstorepb::ROOTFilePB.MergePartialFromCodedStream(), PerformancePayloadFromTable.minPos(), FWInteractionList.modelChanges(), FWDigitSetProxyBuilder.modelChanges(), Phase2TrackerDigitizerAlgorithm.module_killing_DB(), HLTPerformanceInfo.moduleIndexInPath(), CosmicParametersDefinerForTP.momentum(), RKCurvilinearDistance< T, N >.momentum(), ParametersDefinerForTP.momentum(), CurvilinearState.momentum(), multiTrajectoryStateMode.momentumFromModeP(), multiTrajectoryStateMode.momentumFromModePPhiEta(), MTDCPEESProducer.MTDCPEESProducer(), MTDTimeCalibESProducer.MTDTimeCalibESProducer(), mtrReset(), CalorimetryManager.MuonMipSimulation(), ZMuMuIsolationAnalyzer.muTag(), MyAlloc(), CmsMTDStringToEnum.name(), CmsTrackerStringToEnum.name(), popcon::EcalChannelStatusHandler.nBadLaserModules(), FBaseSimEvent.nChargedTracks(), HGCalGeometry.neighborZ(), cms::MuonTCMETValueMapProducer.nLayers(), DCacheStorageMaker.normalise(), DTTSTheta.nSegm(), DTTSPhi.nSegm(), DTSectColl.nSegmPh(), DTSectColl.nSegmTh(), FullModelReactionDynamics.NuclearReaction(), pat::ObjectResolutionCalc.ObjectResolutionCalc(), HLTMultipletFilter.objects(), edm::MapOfVectors< std::string, AnalysisDescription * >.offset(), oldComputeBetheBloch(), oldComputeElectrons(), oldMUcompute(), timestudy::OneSleepingProducer.OneSleepingProducer(), DQMNet.onPeerConnect(), dqmservices::DQMStreamerReader.openNextFileImp_(), gen::EvtGenInterface.operatesOnParticles(), PropagationDirectionChooser.operator()(), VertexCompatibleWithBeam.operator()(), TrackClassFilter.operator()(), CaloParticleSelector.operator()(), ZGoldenFilter.operator()(), MTDNavigationSchool::delete_layer.operator()(), reco::tau::PFRecoTauChargedHadronFromGenericTrackPlugin< TrackClass >.operator()(), sort_pair_first< T1, T2, Pred >.operator()(), TrackingParticleSelector.operator()(), MuonNavigationSchool::delete_layer.operator()(), hitfit::LeptonTranslatorBase< ALepton >.operator()(), ExtractBarrelDetLayerR.operator()(), edm::service::close_and_delete.operator()(), hitfit::JetTranslatorBase< AJet >.operator()(), fftjetcms::Polynomial.operator()(), ROOT::Math::Transform3DPJ.operator()(), operator<<(), hitfit.operator<<(), OwnIt< T >.operator=(), edm::Guid.operator=(), DTTracoChip.operator=(), edm::Guid.operator==(), edmNew::DetSetVector< T >.operator[](), CaloTower.outerEt(), OutFile_Open(), p1evlf(), TopDecaySubset.p4(), pat::helper::ParametrizationHelper.p4fromParameters(), L1GTDigiToRaw.packGMT(), hitfit::Pair_Table.Pair_Table(), G4SimEvent.param(), l1t::Parameter.Parameter(), fit::RootMinuitCommands< Function >.parameter(), fit::RootMinuit< Function >.parameterIndex(), edm::ProductProvenance.parentage(), parseFFTJetScaleCalculator(), spu.parseoct(), CmsShowMainBase.partialWriteToConfigFile(), Generator.particleAssignDaughters(), MCPdgIndexFilter.pass(), SeedFinderSelector.pass(), DDSelLevelCollector.path(), popcon::EcalChannelStatusHandler.pedAnalysis(), ecaldqm.phi(), dqmservices::JsonWritingTimeoutPoolOutputModule.physicalAndLogicalNameForNewFile(), hitfit::Resolution.pick(), SiPixelDigitizerAlgorithm.pixel_inefficiency(), PixelCPEClusterRepairESProducer.PixelCPEClusterRepairESProducer(), PixelCPEGenericESProducer.PixelCPEGenericESProducer(), PixelCPETemplateRecoESProducer.PixelCPETemplateRecoESProducer(), PrimaryVertexValidation.pixelHitsCheck(), pos::PixelPortCardConfig.PixelPortCardConfig(), root.plot(), SymmetryFit.pol2_from_pol2(), SymmetryFit.pol2_from_pol3(), pat::helper::ParametrizationHelper.polarP4fromParameters(), polevlf(), edmNew::DetSetVector< T >.pop_back(), FullModelHadronicProcess.PostStepDoIt(), TrackingAction.PostUserTrackingAction(), CmsShowSearchFiles.prefixChoosen(), fireworks.prepareTrack(), GEMPadDigiCluster.print(), ME0PadDigiCluster.print(), Combinatorics.Print(), hcaldqm::ContainerXXX< STDTYPE >.print(), L1MuDTEtaProcessor.print(), L1MuBMEtaProcessor.print(), DTConfigBti.print(), TMultiDimFet.Print(), edm::ParameterSwitchBase.printCase(), edm::ParameterSwitchBase.printCaseT(), SiStripPsuDetIdMap.printControlMap(), FastTimerService.printEvent(), Phase2Tracker.printHex(), sistrip.printHex(), JetFlavourCutFilter.printHisto(), JetFlavourFilter.printHisto(), popcon::EcalDCSHandler.printHVDataSet(), popcon::EcalDCSHandler.printLVDataSet(), SiStripPsuDetIdMap.printMap(), FBaseSimEvent.printMCTruth(), TMultiDimFet.PrintPolynomialsSpecial(), FastTimerService.printSummary(), IsolatedTracksCone.printTrack(), IsolatedTracksNxN.printTrack(), TrackFinder.process(), PFTauElecRejectionBenchmark.process(), sistrip::MeasureLA.process_reports(), PFAlgo.processBlock(), l1t::Stage2Layer2DemuxEGAlgoFirmwareImp1.processEvent(), l1t::Stage2Layer2DemuxTauAlgoFirmwareImp1.processEvent(), edm::ProductResolverIndexHelper.processIndex(), edm::StreamSchedule.processOneStreamAsync(), ctpps::RawDataUnpacker.processOptoRxFrameSerial(), CTPPSDirectProtonSimulation.processProton(), FWGeoTopNodeGL.ProcessSelection(), edm::FlatRandomMultiParticlePGunProducer.produce(), edm::RandomMultiParticlePGunProducer.produce(), edm::FlatRandomPtThetaGunProducer.produce(), edm::FlatRandomEThetaGunProducer.produce(), edm::GaussRandomPThetaGunProducer.produce(), edm::FileRandomKEThetaGunProducer.produce(), edm::CloseByParticleGunProducer.produce(), reco::modules::CaloRecHitCandidateProducer< HitCollection >.produce(), PseudoTopProducer.produce(), ParticleDecayProducer.produce(), edm::FlatRandomOneOverPtGunProducer.produce(), edm::FlatRandomEGunProducer.produce(), edm::FlatRandomPtGunProducer.produce(), ParticleLevelProducer.produce(), edm::MultiParticleInConeGunProducer.produce(), edm::ExpoRandomPtGunProducer.produce(), CastorFastTowerProducer.produce(), pat::PATTauSlimmer.produce(), edm::ExpoRandomPGunProducer.produce(), CastorFastClusterProducer.produce(), EcalIsolatedParticleCandidateProducer.produce(), PFMuonUntagger.produce(), GenParticlePruner.produce(), IPTCorrector.produce(), MCTrackMatcher.produce(), IsolatedEcalPixelTrackCandidateProducer.produce(), PFConversionProducer.produce(), ConeIsolation.produce(), pat::PATMuonSlimmer.produce(), CaloTowerCandidateCreator.produce(), EgammaHLTCaloTowerProducer.produce(), TtSemiEvtSolutionMaker.produce(), TtHadEvtSolutionMaker.produce(), edm::FlatRandomPtAndDxyGunProducer.produce(), GenParticles2HepMCConverter.produce(), ShallowDigisProducer.produce(), CaloTowerFromL1TSeededCreatorForTauHLT.produce(), ImpactParameter.produce(), HLTDisplacedmumumuVtxProducer.produce(), SiStripRegFEDSelector.produce(), HLTTauMCProducer.produce(), HLTDisplacedmumuVtxProducer.produce(), PFTrackProducer.produce(), HLTDisplacedtktkVtxProducer.produce(), HLTDisplacedtktktkVtxProducer.produce(), ZdcHitReconstructor.produce(), edm::BeamHaloProducer.produce(), CaloTowerFromL1TCreatorForTauHLT.produce(), TotemRPUVPatternFinder.produce(), CaloTowerCreatorForTauHLT.produce(), HLTmumutktkVtxProducer.produce(), CTPPSProtonProducer.produce(), ECALRegFEDSelector.produce(), LeptonInJetProducer< T >.produce(), FakeTrackProducer< T >.produce(), HcalHitReconstructor.produce(), HLTmumutkVtxProducer.produce(), IsolatedPixelTrackCandidateProducer.produce(), RecHitCorrector.produce(), IsolatedPixelTrackCandidateL1TProducer.produce(), PATObjectCrossLinker.produce(), ConvBremSeedProducer.produce(), TrackingParticleSelectorByGen.produce(), CastorTowerProducer.produce(), NanoAODBaseCrossCleaner.produce(), LHE2HepMCConverter.produce(), FastPrimaryVertexWithWeightsProducer.produce(), HFPhase1Reconstructor.produce(), CTPPSSimHitProducer.produce(), FlavorHistoryProducer.produce(), pat::PATTriggerProducer.produce(), FastPrimaryVertexProducer.produce(), TemplatedSecondaryVertexProducer< IPTI, VTX >.produce(), BaseMVAValueMapProducer< T >.produce(), GenPUProtonProducer.produce(), IPProducer< Container, Base, Helper >.produce(), HBHEPhase1Reconstructor.produce(), edm::ProductProvenance.ProductProvenance(), TrackingRecHitPropagator.project(), spr.propagateCALO(), AnalyticalPropagator.propagateParametersOnCylinder(), AnalyticalPropagator.propagateParametersOnPlane(), StraightLinePropagator.propagateWithPath(), PropagatorWithMaterialESProducer.PropagatorWithMaterialESProducer(), edm::eventsetup::EventSetupProvider.proxyProviderDescriptions(), PtHatEmpReweightUserHook.PtHatEmpReweightUserHook(), EmissionVetoHook1.pTpowheg(), PTrajectoryStateOnDet.PTrajectoryStateOnDet(), LA_Filler_Fitter.pull(), DAClusterizerInZ.purge(), DAClusterizerInZ_vect.purge(), DAClusterizerInZT_vect.purge(), DQMImplNet< DQMNet::Object >.purgeDeadObjects(), edm::RefToBaseVector< T >.push_back(), mySiStripNoises.put(), SiStripDetVOff.put(), SiStripNoises.put(), SiStripPedestals.put(), SiPixelGainCalibrationOffline.put(), SiPixelGainCalibrationForHLT.put(), SiPixelGainCalibration.put(), SiStripApvGain.put(), SiStripBadStrip.put(), SiStripSummary.put(), HDQMSummary.put(), edm::RangeMap< det_id_type, edm::OwnVector< B > >.put(), SiStripThreshold.put(), SiStripQuality.put_replace(), KfTrackProducerBase.putInEvt(), GsfTrackProducerBase.putInEvt(), TrackProducerWithSCAssociation.putInEvt(), PYBIND11_MODULE(), Cylinder.radius(), edm::RandomMultiParticlePGunProducer.RandomMultiParticlePGunProducer(), ThirdHitPredictionFromCircle::HelixRZ.rAtZ(), cms::DDAlgoArguments.rawArgument(), HepMCFileReader.rdstate(), StoreESCondition.readESChannelStatusFromFile(), LaserSorter.readFormatVersion(), EcalTPGDBApp.readFromConfDB_TPGPedestals(), AsciiNeutronReader.readNextEvent(), CSCAnodeLCTProcessor.readoutALCTs(), CSCCathodeLCTProcessor.readoutCLCTs(), ReadPatterns(), PixelToLNKAssociateFromAscii.readRange(), TotemRPUVPatternFinder.recognizeAndSelect(), HemisphereAlgo.reconstruct(), ProtonReconstructionAlgorithm.reconstructFromMultiRP(), ProtonReconstructionAlgorithm.reconstructFromSingleRP(), TrackClassifier.reconstructionInformation(), PerigeeLinearizedTrackState.refittedParamFromEquation(), HITRegionalPixelSeedGenerator.regions(), CondDBESSource.registerProxies(), edm::test::EventSetupTestHelper.registerProxies(), evf::FastMonitoringThread::MonitorData.registerVariables(), DQMImplNet< DQMNet::Object >.removePeer(), FWCollectionSummaryWidgetConnectionHolder.reserve(), hcaldqm::ContainerXXX< STDTYPE >.reset(), HLTrigReport.reset(), FW3DViewDistanceMeasureTool.resetAction(), cond::CredentialStore.resetAdmin(), edm::test::EventSetupTestHelper.resetAllProxies(), LA_Filler_Fitter.result(), PerformancePayloadFromTable.resultPos(), PerformancePayloadFromBinnedTFormula.resultPos(), PerformancePayloadFromTFormula.resultPos(), Combinatorics.Rotate(), FullModelReactionDynamics.Rotate(), TwoBodyDecayModel.rotationMatrix(), susybsm::HSCParticle.rpc(), RawToDigiConverter.run(), CSCGEMMotherboardME11.run(), GEMCoPadProcessor.run(), CSCGEMMotherboardME21.run(), HIPAlignmentAlgorithm.run(), DTTSS.run(), CSCCathodeLCTProcessor.run(), DTTSM.run(), DTSC.run(), CSCUpgradeMotherboard.run(), DQMNet.run(), edm::Path.runAllModulesAsync(), RawToDigiConverter.runCommon(), ConvBremPFTrackFinder.runConvBremFinder(), DTTSTheta.runDTTSTheta(), L1MuDTEtaProcessor.runEtaMatchingUnit(), L1MuBMEtaProcessor.runEtaMatchingUnit(), edm::UnscheduledCallProducer.runNowAsync(), DTTSPhi.runTSPhi(), RZLine.RZLine(), JME::JetResolutionObject.saveToFile(), FWPFCandidateWithHitsProxyBuilder.scaleProduct(), PowhegResHook.scaleResonance(), EEBadScFilter.scan5x5(), BSFitter.scanPDF(), DTTrig.SCPhTrigs(), DTTrig.SCThTrigs(), LHCInfoImpl.search(), cond::persistency.search(), edm.search_if_in_all(), DTSectColl.SectCollPhSegment(), DTSectColl.SectCollThSegment(), SecToLook_Read(), SecToRead_Read(), DTTSTheta.segment(), DTTSPhi.segment(), AlCaHBHEMuonProducer.select(), CaloDualConeSelector< HBHERecHit >.selectCallback(), CaloConeSelector< T >.selectCallback(), BPhysicsOniaDQM.selGlobalMuon(), MuScleFitMuonSelector.selGlobalMuon(), MuScleFit.selGlobalMuon(), BPhysicsOniaDQM.selTrackerMuon(), MuScleFitMuonSelector.selTrackerMuon(), MuScleFit.selTrackerMuon(), DQMImplNet< DQMNet::Object >.sendObjectListToPeers(), CandCommonVertexFitterBase.set(), PFCandCommonVertexFitterBase.set(), CandKinematicVertexFitter.set(), hitfit::Fourvec_Event.set_nu_p(), hitfit::Fourvec_Event.set_obj_p(), hitfit::Fourvec_Event.set_x_p(), EcalUncalibRecHitWorkerFixedAlphaBetaFit.setAlphaBeta(), pos::PixelPortCardConfig.setAOHGain(), cond::persistency::ConnectionPool.setAuthenticationPath(), edm::StableProvenance.setBranchDescription(), pat::PackedCandidate.setCaloFraction(), TrackInformation.setCaloSurfaceParticleP(), FWRPZView.setContext(), pos::PixelPortCardConfig.setDataBaseAOHGain(), DTConfigBti.setDefaults(), edm::eventsetup::EventSetupRecordProvider.setDependentProviders(), pos::PixelPortCardConfig.setdeviceValues(), EcalUncalibRecHitFixedAlphaBetaAlgo< C >.SetDynamicPedestal(), TotemG4Hit.setEntry(), reco::FFTJet< float >.setFourVec(), TrackInformation.setGenParticleP(), HcalDbHardcode.setHB(), HcalDbHardcode.setHBUpgrade(), pat::PackedCandidate.setHcalFraction(), HcalDbHardcode.setHE(), HcalDbHardcode.setHEUpgrade(), HcalDbHardcode.setHF(), HcalDbHardcode.setHFUpgrade(), HcalDbHardcode.setHO(), EcalSimRawData.setHParity(), TrackInformation.setIDonCaloSurface(), pat::PackedCandidate.setIsIsolatedChargedHadron(), edm.setIsMergeable(), MonLaserStatusDat.setLaserFanout(), MonLaserStatusDat.setLaserFilter(), MonLaserStatusDat.setLaserPower(), MonLaserStatusDat.setLaserWavelength(), CSCBaseElectronicsSim.setLayerId(), MEzCalculator.SetLepton(), L1TOccupancyClientHistogramService.setMaskedBins(), CmsShowNavigator.setMaxNumberOfFilesToChain(), AnalyticalPropagator.setMaxRelativeChangeInBz(), MEzCalculator.SetMET(), METzCalculator.SetMET(), METzCalculator.SetMuon(), SiStripSummary.setObj(), HDQMSummary.setObj(), LRHelpFunctions.setObsFitParameters(), heppy::IsolationComputer.setPackedCandidates(), SiPixelDbItem.setPackedVal(), FWGeoTopNodeGLScene.SetPad(), DDI::Solid.setParameters(), FP420G4Hit.setParentId(), BscG4Hit.setParentId(), TotemG4Hit.setParentId(), CMSmplIonisationWithDeltaModel.SetParticle(), UrbanMscModel93.SetParticle(), TMCReader.setpartition(), ME0TriggerDigi.setPartition(), TopologyWorker.setPartList(), CSCCorrelatedLCTDigi.setPattern(), PFEGammaProducer.setPFEGParameters(), PFAlgo.setPFPhotonParameters(), PFAlgo.setPFVertexParameters(), reco::FFTJet< float >.setPileup(), CrossingFrame< T >.setPileups(), FlatHexagon.setPosition(), FlatTrd.setPosition(), reco::CaloCluster.setPosition(), Plane.setPosPrec(), QIE8Simulator.setPreampOutputCut(), Signal.setprintable(), BPHChi2Select.setProbMin(), edm::MergeableRunProductProcesses.setProcessesWithMergeableRunProducts(), BscG4Hit.setProcessId(), SetPropagationDirection(), AlCaIsoTracksProducer.setPtEtaPhi(), InputGenJetsParticleSelector.setPtMin(), MonLaserPulseDat.setPulseHeightMean(), MonLaserPulseDat.setPulseHeightRMS(), MonLaserPulseDat.setPulseWidthMean(), MonLaserPulseDat.setPulseWidthRMS(), pat::PackedCandidate.setPuppiWeight(), gen::TauolappInterface.setRandomEngine(), pat::PackedCandidate.setRawCaloFraction(), pat::PackedCandidate.setRawHcalFraction(), DynamicTruncation.setRecoP(), HLTPerformanceInfo.setStatusOfModulesFromPath(), GeomDet.setSurfaceDeformation(), TrackAlgoCompareUtil.SetTrackingParticleD0Dz(), RecoTracktoTP.SetTrackingParticleMomentumPCA(), TPtoRecoTrack.SetTrackingParticleMomentumPCA(), PhiSymmetryCalibration_step2.setUp(), PhiSymmetryCalibration_step2_SM.setUp(), PdtEntry.setup(), TFWLiteSelectorBasic.setupNewFile(), BscG4Hit.setVx(), BscG4Hit.setVy(), BscG4Hit.setVz(), Cone.side(), Plane.side(), hitfit::Resolution.sigma(), metsig::SignAlgoResolutions.SignAlgoResolutions(), SimpleZSPJPTJetCorrector.SimpleZSPJPTJetCorrector(), VVIObjDetails.sincosint(), sistripvvi::VVIObjDetails.sincosint(), VVIObjDetails.sinint(), sistripvvi::VVIObjDetails.sinint(), SiStripRecHitMatcherESProducer.SiStripRecHitMatcherESProducer(), SiTrackerMultiRecHitUpdatorESProducer.SiTrackerMultiRecHitUpdatorESProducer(), ThirdHitPredictionFromInvLine.size(), cond::SmallWORMDict.SmallWORMDict(), BeamDivergenceVtxGenerator.smearMomentum(), TSLToyGen.smearParticles(), PhotonCoreProducer.solveAmbiguity(), edm.sort_all(), CSCGEMMotherboardME11.sortLCTs(), DTTSM.sortTSM1(), DTTSM.sortTSM2(), DTTSS.sortTSS1(), DTTSS.sortTSS2(), fftjetcms.sparsePeakTreeFromStorable(), ForwardDetLayer.specificSurface(), BarrelDetLayer.specificSurface(), PhysicsTools.split(), DAClusterizerInZ.split(), DAClusterizerInZ_vect.split(), DAClusterizerInZT_vect.split(), LumiCalculator.splitpathstr(), edm.stable_sort_all(), SteppingHelixPropagatorESProducer.SteppingHelixPropagatorESProducer(), sistrip::MeasureLA.store_calibrations(), sistrip::MeasureLA.store_methods_and_granularity(), StraightLinePropagatorESProducer.StraightLinePropagatorESProducer(), IsoTrig.studyTiming(), APVGain.subdetectorPlane(), APVGain.subdetectorSide(), LA_Filler_Fitter.subset_probability(), hitfit::Lepjets_Event.sum(), LA_Filler_Fitter.summarize_ensembles(), ME0SimHitMatcher.superChamberIds(), GEMSimHitMatcher.superChamberIds(), GEMDigiMatcher.superChamberIds(), GEMRecHitMatcher.superChamberIds(), GEMSimHitMatcher.superChamberIdsCoincidences(), ME0SimHitMatcher.superChamberIdsCoincidences(), SimHitMatcher.superChamberIdsGEM(), SimHitMatcher.superChamberIdsGEMCoincidences(), GEMDigiMatcher.superChamberIdsWithCoPads(), GEMDigiMatcher.superChamberIdsWithPads(), DTSimHitMatcher.superlayerIds(), Surface.Surface(), PTrajectoryStateOnDet.surfaceSide(), TrajectoryStateOnSurface.surfaceSide(), edm::SwitchBaseProductResolver.SwitchBaseProductResolver(), reco::TemplatedSoftLeptonTagInfo< REF >.taggingVariables(), edm::test::TestProcessor.TestProcessor(), TestPythiaDecays.TestPythiaDecays(), edm::TestSource.TestSource(), root.tf1(), root.tf1_t(), TFileAdaptor.TFileAdaptor(), HDRShower.thetaFunction(), DiskSectorBounds.thickness(), SimpleCylinderBounds.thickness(), CSCFitAFEBThr.ThresholdNoise(), SiStripFineDelayTOF.timeOfFlightCosmic(), TkTransientTrackingRecHitBuilderESProducer.TkTransientTrackingRecHitBuilderESProducer(), FastTimeGeometry.topology(), cms::MD5Result.toString(), TempTrajectory.toTrajectory(), MultiTrackValidator.tpDR(), reco::TransientTrackFromFTS.track(), MultiTrackValidator.trackDR(), trackerStablePhiSort(), tauImpactParameter::TrackHelixVertexFitter.TrackHelixVertexFitter(), reco.trackingParametersAtClosestApproachToBeamSpot(), TrackingRecHitPropagatorESProducer.TrackingRecHitPropagatorESProducer(), PF_PU_FirstVertexTracks.TrackMatch(), HcalIsoTrkAnalyzer.trackP(), StudyHLT.trackPID(), QcdUeDQM.trackSelection(), DTTracoCard.tracoList(), DTTrig.TracoTrigs(), ExhaustiveMuonTrajectoryBuilder.trajectories(), TrackTransformer.transform(), edm::TransientDataFrame< SIZE >.TransientDataFrame(), TransientTrackBuilder.TransientTrackBuilder(), TransientTrackBuilderESProducer.TransientTrackBuilderESProducer(), DTBtiChip.trigger(), DTTracoChip.trigger(), DTBtiChip.triggerData(), DTTracoChip.triggerData(), edmplugin::PluginManager.tryToLoad(), TSCBLBuilderWithPropagatorESProducer.TSCBLBuilderWithPropagatorESProducer(), DTTrig.TSPhTrigs(), DTTrig.TSThTrigs(), CmsTrackerStringToEnum.type(), CmsMTDStringToEnum.type(), SimpleJetCorrectionUncertainty.uncertaintyBin(), HLTPerformanceInfo.uniqueModule(), MCTruthHelper< P >.uniqueMother(), pat::PackedCandidate.unpackCovariance(), L1GlobalTriggerRawToDigi.unpackGMT(), unsafe_expf_impl(), unsafe_logf_impl(), MonopoleSteppingAction.update(), SiTrackerMultiRecHitUpdator.update(), HLTScalersClient::CountLSFifo_t.update(), BasicTrajectoryState.update(), CmsShowModelPopup.updateDisplay(), MuonSensitiveDetector.updateHit(), CTPPSProtonReconstructionEfficiencyEstimatorData::ArmData.UpdateOptics(), CurvilinearTrajectoryParameters.updateP(), LocalTrajectoryParameters.updateP(), SteppingAction.UserSteppingAction(), l1t::MTF7Payload.valid(), L1MuonPixelTrackFitter.valInversePt(), btagbtvdeep.vertexDdotP(), VertexClassifier.vertexInformation(), TrackClassifier.vertexInformation(), QcdLowPtDQM.vertexZFromClusters(), DAClusterizerInZ.vertices(), DAClusterizerInZ_vect.vertices(), DAClusterizerInZT_vect.vertices(), edm.walkTrie(), QuickTrackAssociatorByHitsImpl.weightedNumberOfTrackClusters(), PosteriorWeightsCalculator.weights(), TrapezoidalPlaneBounds.widthAtHalfLength(), NanoAODOutputModule.write(), CTPPSProtonReconstructionPlotter::SingleRPPlots.write(), CTPPSProtonReconstructionPlotter::MultiRPPlots.write(), EPOS::IO_EPOS.write_event(), FEConfigFgrDat.writeArrayDB(), FEConfigSpikeDat.writeArrayDB(), FEConfigLUTDat.writeArrayDB(), FEConfigSlidingDat.writeArrayDB(), FEConfigWeightDat.writeArrayDB(), FEConfigTimingDat.writeArrayDB(), MODCCSFEDat.writeArrayDB(), MODDCCOperationDat.writeArrayDB(), MODCCSTRDat.writeArrayDB(), DCUIDarkPedDat.writeArrayDB(), MonShapeQualityDat.writeArrayDB(), DCUCapsuleTempDat.writeArrayDB(), FEConfigLinParamDat.writeArrayDB(), DCUIDarkDat.writeArrayDB(), FEConfigFgrEETowerDat.writeArrayDB(), DCUVFETempDat.writeArrayDB(), DCUCapsuleTempRawDat.writeArrayDB(), FEConfigLUTGroupDat.writeArrayDB(), FEConfigFgrEEStripDat.writeArrayDB(), MonH4TablePositionDat.writeArrayDB(), MonOccupancyDat.writeArrayDB(), MonPedestalsOnlineDat.writeArrayDB(), FEConfigLUTParamDat.writeArrayDB(), FEConfigFgrParamDat.writeArrayDB(), DCULVRBTempsDat.writeArrayDB(), FEConfigPedDat.writeArrayDB(), MonLaserPulseDat.writeArrayDB(), FEConfigWeightGroupDat.writeArrayDB(), CaliGainRatioDat.writeArrayDB(), FEConfigFgrGroupDat.writeArrayDB(), MonPedestalOffsetsDat.writeArrayDB(), MonDelaysTTDat.writeArrayDB(), FEConfigLinDat.writeArrayDB(), CaliCrystalIntercalDat.writeArrayDB(), MonPNPedDat.writeArrayDB(), CaliTempDat.writeArrayDB(), MonLaserRedDat.writeArrayDB(), MonLed2Dat.writeArrayDB(), MonLaserIRedDat.writeArrayDB(), MonLaserGreenDat.writeArrayDB(), MonLaserBlueDat.writeArrayDB(), MonLed1Dat.writeArrayDB(), FEConfigParamDat.writeArrayDB(), MonMemChConsistencyDat.writeArrayDB(), MODCCSHFDat.writeArrayDB(), MonTestPulseDat.writeArrayDB(), MonTTConsistencyDat.writeArrayDB(), MonMemTTConsistencyDat.writeArrayDB(), MonCrystalConsistencyDat.writeArrayDB(), MonPedestalsDat.writeArrayDB(), MonPNIRedDat.writeArrayDB(), MonPNLed2Dat.writeArrayDB(), MonPNMGPADat.writeArrayDB(), MonPNRedDat.writeArrayDB(), MonPNLed1Dat.writeArrayDB(), MonPNBlueDat.writeArrayDB(), MonPNGreenDat.writeArrayDB(), MODDCCDetailsDat.writeArrayDB(), DCULVRVoltagesDat.writeArrayDB(), DCUCCSDat.writeArrayDB(), ITimingDat.writeArrayDB(), edm::RootOutputFile.writeBranchIDListRegistry(), GctFormatTranslateBase.writeRawHeader(), NanoAODOutputModule.writeRun(), edm::RootOutputFile.writeThinnedAssociationsHelper(), CTPPSRPAlignmentCorrectionsMethods.writeToXML(), cms::DDCMSDetElementCreator.~DDCMSDetElementCreator(), DTTopology.~DTTopology(), EcalIsolationCorrector.~EcalIsolationCorrector(), ESTrendTask.~ESTrendTask(), FW3DViewDistanceMeasureTool.~FW3DViewDistanceMeasureTool(), FWEveText.~FWEveText(), FWModelContextMenuHandler.~FWModelContextMenuHandler(), KineParticleFilter.~KineParticleFilter(), MagneticFieldProvider< float >.~MagneticFieldProvider(), MFGrid.~MFGrid(), MTDTransientTrackingRecHitBuilder.~MTDTransientTrackingRecHitBuilder(), fastsim::MuonBremsstrahlung.~MuonBremsstrahlung(), MuonTransientTrackingRecHitBuilder.~MuonTransientTrackingRecHitBuilder(), tauImpactParameter::ParticleBuilder.~ParticleBuilder(), PixelTopology.~PixelTopology(), SensitiveDetectorMakerBase.~SensitiveDetectorMakerBase(), ME0ReDigiProducer::TemporaryGeometry.~TemporaryGeometry(), TEveEllipsoid.~TEveEllipsoid(), Topology.~Topology(), and tauImpactParameter::TrackTools.~TrackTools().