CMS 3D CMS Logo

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

Functions

def defineOptions
 
def getConfigTemplateFilename
 
def mkHLTKeyListList
 
def parallelJobs
 

Variables

int DEBUG = 0
 DEBUG. More...
 
tuple options = defineOptions()
 
tuple p
 

Function Documentation

def AlCaHLTBitMon_ParallelJobs.defineOptions ( )

Definition at line 97 of file AlCaHLTBitMon_ParallelJobs.py.

References reco.print().

97 
98 def defineOptions():
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
std::string print(const Track &, edm::Verbosity=edm::Concise)
Track print utility.
Definition: print.cc:10
def AlCaHLTBitMon_ParallelJobs.getConfigTemplateFilename ( )

Definition at line 23 of file AlCaHLTBitMon_ParallelJobs.py.

Referenced by parallelJobs().

23 
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'
def AlCaHLTBitMon_ParallelJobs.mkHLTKeyListList (   hltkeylistfile)

Definition at line 32 of file AlCaHLTBitMon_ParallelJobs.py.

Referenced by parallelJobs().

32 
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
def AlCaHLTBitMon_ParallelJobs.parallelJobs (   hltkeylistfile,
  jsonDir,
  globalTag,
  templateName,
  queue,
  cafsetup 
)

Definition at line 40 of file AlCaHLTBitMon_ParallelJobs.py.

References getConfigTemplateFilename(), and mkHLTKeyListList().

40 
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

Variable Documentation

int AlCaHLTBitMon_ParallelJobs.DEBUG = 0

DEBUG.

Definition at line 21 of file AlCaHLTBitMon_ParallelJobs.py.

tuple AlCaHLTBitMon_ParallelJobs.options = defineOptions()

Definition at line 151 of file AlCaHLTBitMon_ParallelJobs.py.

Referenced by main().

tuple AlCaHLTBitMon_ParallelJobs.p
Initial value:
1 = parallelJobs(options.hltKeyListFile,
2  options.jsonDir,
3  options.globalTag,
4  options.template,
5  options.queue,
6  options.cafsetup)

Definition at line 152 of file AlCaHLTBitMon_ParallelJobs.py.

Referenced by GenParticleDecaySelector.add(), helper::CandDecayStoreManager.add(), GaussNoiseFP420.addNoise(), SiGaussianTailNoiseAdder.addNoise(), ParticleAllocator.AddParticle(), ParabolaFit.addPoint(), EventAction.addTkCaloStateInfo(), edm::ProductRegistryHelper.addToRegistry(), SiStripGainRandomCalculator.algoAnalyze(), AnalyticalPropagatorESProducer.AnalyticalPropagatorESProducer(), ParticleDecayDrawer.analyze(), ParticleTreeDrawer.analyze(), HiBasicGenTest.analyze(), PrintTotemDAQMapping.analyze(), IsolatedParticlesGeneratedJets.analyze(), edm::FlatEGunASCIIWriter.analyze(), BoostIODBReader< DataType, RecordType >.analyze(), TTbarSpinCorrHepMCAnalyzer.analyze(), ListIds.analyze(), ZdcSimpleReconstructor.beginRun(), HcalShapes.beginRun(), edm.binary_search_all(), PhysicsTools::BitSet.bits(), BtagPerformanceESProducer.BtagPerformanceESProducer(), FWSiPixelClusterProxyBuilder.build(), GEMPadDigiProducer.buildPads(), reco::TauMassTagInfo.calculateTrkP4(), eetest::CandForTest.CandForTest(), TwoBodyDecayModel.cartesianSecondaryMomenta(), GEMEtaPartition.centreOfPad(), ME0EtaPartition.centreOfPad(), GEMRecHitMatcher.chamberIds(), MuonSeedSimpleCleaner.checkPt(), VZeroFinder.checkTrackPair(), ResonanceDecayFilterHook.checkVetoResonanceDecays(), FastSingleTrackerRecHit.clone(), FastProjectedTrackerRecHit.clone(), FastMatchedTrackerRecHit.clone(), edm::ViewBase.clone(), cloneDecayTree(), cms::MD5Result.compactForm(), GsfMultipleScatteringUpdator.compute(), TEveEllipsoidProjected.ComputeBBox(), VolumeEnergyLossEstimator.computeBetheBloch(), RodPlaneBuilderFromDet.computeBounds(), VolumeEnergyLossEstimator.computeElectrons(), PlaneBuilderForGluedDet.computeRectBounds(), converter::SuperClusterToCandidate.convert(), converter::StandAloneMuonTrackToCandidate.convert(), converter::TrackToCandidate.convert(), OwnerPolicy::Transfer.copy(), SimpleZSPJPTJetCorrector.correctionEtEtaPhiP(), SimpleZSPJPTJetCorrector.correctionPUEtEtaPhiP(), cms::CRC32Calculator.CRC32Calculator(), l1t::MicroGMTRankPtQualLUTFactory.create(), l1t::Stage2Layer1FirmwareFactory.create(), l1t::Stage1Layer2FirmwareFactory.create(), l1t::Stage2Layer2FirmwareFactory.create(), l1t::MicroGMTMatchQualLUTFactory.create(), l1t::MicroGMTExtrapolationLUTFactory.create(), l1t::MicroGMTCaloIndexSelectionLUTFactory.create(), DDI::Store< N, I, K >.create(), l1t::MicroGMTAbsoluteIsolationCheckLUTFactory.create(), l1t::MicroGMTRelativeIsolationCheckLUTFactory.create(), CustomPhysicsList.CustomPhysicsList(), CustomPhysicsListSS.CustomPhysicsListSS(), BdecayFilter.cuts(), Histos.debug(), GEMRecHitMatcher.detIds(), FWEveDigitSetScalableMarkerGL.DirectDraw(), TemplatedJetProbabilityComputer< Container, Base >.discriminator(), VertexCompatibleWithBeam.distanceToBeam(), SiStripPlotGain.DoAnalysis(), reco::PFBlockElementTrack.Dump(), ECALRegFEDSelector.ECALRegFEDSelector(), BinomialProbability.error(), VolumeMultipleScatteringEstimator.estimate(), VariablePower.eval(), evf::EvffedFillerRB.EvffedFillerRB(), DDName.exists(), TrajectoryExtrapolatorToLine.extrapolate(), AnalyticalImpactPointExtrapolator.extrapolateSingleState(), AnalyticalTrajectoryExtrapolatorToLine.extrapolateSingleState(), edm::CFWriter.fctTest(), RunPTMTempDat.fetchData(), RunDat.fetchData(), RunCrystalErrorsDat.fetchData(), RunMemChErrorsDat.fetchData(), RunMemTTErrorsDat.fetchData(), RunPNErrorsDat.fetchData(), RunTTErrorsDat.fetchData(), MonH4TablePositionDat.fetchData(), RunConfigDat.fetchData(), RunFEConfigDat.fetchData(), RunLaserRunDat.fetchData(), RunTPGConfigDat.fetchData(), CaliGeneralDat.fetchData(), DCUCapsuleTempDat.fetchData(), DCUIDarkPedDat.fetchData(), DCUVFETempDat.fetchData(), MonShapeQualityDat.fetchData(), RunCommentDat.fetchData(), DCUIDarkDat.fetchData(), FEConfigFgrDat.fetchData(), FEConfigLUTDat.fetchData(), FEConfigSlidingDat.fetchData(), FEConfigSpikeDat.fetchData(), FEConfigTimingDat.fetchData(), FEConfigWeightDat.fetchData(), MODCCSFEDat.fetchData(), MODCCSTRDat.fetchData(), MODDCCOperationDat.fetchData(), CaliGainRatioDat.fetchData(), CaliHVScanRatioDat.fetchData(), DCUCapsuleTempRawDat.fetchData(), FEConfigFgrEETowerDat.fetchData(), FEConfigLinParamDat.fetchData(), MonDelaysTTDat.fetchData(), RunH4TablePositionDat.fetchData(), CaliTempDat.fetchData(), DCULVRBTempsDat.fetchData(), DCULVRTempsDat.fetchData(), FEConfigFgrEEStripDat.fetchData(), MonLaserStatusDat.fetchData(), MonOccupancyDat.fetchData(), MonPedestalsOnlineDat.fetchData(), FEConfigLUTParamDat.fetchData(), FEConfigPedDat.fetchData(), MonRunDat.fetchData(), FEConfigBadTTDat.fetchData(), ODWeightsSamplesDat.fetchData(), ODDelaysDat.fetchData(), FEConfigBadStripDat.fetchData(), FEConfigBadXTDat.fetchData(), ODBadTTDat.fetchData(), ODBadXTDat.fetchData(), ODTowersToByPassDat.fetchData(), ODVfeToRejectDat.fetchData(), ODGolBiasCurrentDat.fetchData(), ODPedestalOffsetsDat.fetchData(), MonPulseShapeDat.fetchData(), RunDCSMagnetDat.fetchLastData(), RunDCSLVDat.fetchLastData(), StripCPE.fillParams(), ESSummaryClient.fillReportSummary(), RunDCSMagnetDat.fillTheMap(), RunDCSLVDat.fillTheMap(), EopVariables.fillVariables(), BTagSkimMC.filter(), PartonShowerBsHepMCFilter.filter(), ElectronIdMVAProducer.filter(), PythiaFilterMultiMother.filter(), JetFlavourCutFilter.filter(), JetFlavourFilter.filter(), PythiaFilterZgamma.filter(), PythiaFilterZJetWithOutBg.filter(), PythiaFilterZJet.filter(), GenericDauHepMCFilter.filter(), MCMultiParticleFilter.filter(), TwoVBGenFilter.filter(), HighMultiplicityGenFilter.filter(), LQGenFilter.filter(), Zto2lFilter.filter(), MCLongLivedParticles.filter(), MCDijetResonance.filter(), MCZll.filter(), PythiaFilterHT.filter(), DJpsiFilter.filter(), FourLepFilter.filter(), HZZ4lFilter.filter(), MCSingleParticleFilter.filter(), PythiaFilter.filter(), PythiaDauFilter.filter(), PythiaHLTSoupFilter.filter(), ZgMassFilter.filter(), ZgammaMassFilter.filter(), HerwigMaxPtPartonFilter.filter(), PythiaFilterTTBar.filter(), edm::MapOfVectors< std::string, AnalysisDescription * >.find(), edm.find_if_in_all(), StripClusterizerAlgorithm.findDetId(), edm::MapOfVectors< std::string, AnalysisDescription * >.findKey(), JetFlavourCutFilter.findParticle(), JetFlavourFilter.findParticle(), BdecayFilter.findParticle(), edm::eventsetup::heterocontainer::HCTypeTag.findType(), GEMEtaPartition.firstStripInPad(), ME0EtaPartition.firstStripInPad(), SymmetryFit.fit(), LA_Filler_Fitter.fit_width_profile(), ora::Version.fromString(), GammaFunctionGenerator.gammaFrac(), GeantPropagatorESProducer.GeantPropagatorESProducer(), evf::evtn.get(), StripCPE.getAlgoParam(), edm::GlobalSchedule.getAllModuleDescriptions(), edm.getAnyPtr(), HIPixelClusterVtxProducer.getContainedHits(), HLTScalersClient::CountLSFifo_t.getCount(), mySiStripNoises.getDetIds(), SiStripBadStrip.getDetIds(), HDQMSummary.getDetIds(), pftools::CaloEllipse.getEccentricity(), edm.getEnvironmentVariable(), StEvtSolution.getLept(), TtDilepEvtSolution.getLeptNeg(), TtDilepEvtSolution.getLeptPos(), StEvtSolution.getLepW(), TwoBodyDecayLinearizationPointFinder.getLinearizationPoint(), pftools::CaloEllipse.getMajorMinorAxes(), HLTPerformanceInfo.getModuleOnPath(), BdecayFilter.getNextBs(), TMom.getPeak(), pftools::CaloEllipse.getPosition(), edm.getProduct(), edm::RootDelayedReader.getProduct_(), TkSimHitPrinter.getPropagationSign(), mySiStripNoises.getRange(), SiStripApvGain.getRange(), SiStripBadStrip.getRange(), HDQMSummary.getRange(), SiStripBadStrip.getRangeByPos(), StEvtSolution.getRecLept(), SiStripApvGain.getRegistryPointers(), PerformancePayloadFromBinnedTFormula.getResult(), PerformancePayloadFromTFormula.getResult(), pftools::CaloEllipse.getTheta(), CaloCellGeometry.getTransform(), StormLcgGtStorageMaker.getTURL(), StormStorageMaker.getTURL(), GsfMaterialEffectsESProducer.GsfMaterialEffectsESProducer(), GsfTrajectoryFitterESProducer.GsfTrajectoryFitterESProducer(), GsfTrajectorySmootherESProducer.GsfTrajectorySmootherESProducer(), ctfseeding::HitExtractorPIX.hits(), SeedingLayerSetsHits.hits(), HLTPixelIsolTrackFilter.hltFilter(), ora::Record.index(), triggerExpression::PathReader.init(), FWViewContextMenuHandlerGL.init(), IdealZDCTrapezoid.initCorners(), IdealZPrism.initCorners(), IdealCastorTrapezoid.initCorners(), SiStripDetVOffFakeBuilder.initialize(), CaloCellGeometry.inside(), HiGammaJetSignalDef.IsIsolated(), HiGammaJetSignalDef.IsIsolatedJP(), HiGammaJetSignalDef.IsIsolatedPP(), SiStripDetVOff.IsModuleHVOff(), SiStripDetVOff.IsModuleLVOff(), SiStripDetVOff.IsModuleVOff(), PerformancePayloadFromBinnedTFormula.isOk(), PerformancePayloadFromTFormula.isOk(), FWInteractionList.itemChanged(), jacobianCartesianToCurvilinear(), JacobianCartesianToLocal.JacobianCartesianToLocal(), jacobianCurvilinearToCartesian(), fftjetcms.jetFromStorable(), Tokenizer.join(), join(), KFSwitching1DUpdatorESProducer.KFSwitching1DUpdatorESProducer(), KFTrajectorySmoother.KFTrajectorySmoother(), KFUpdatorESProducer.KFUpdatorESProducer(), GEMEtaPartition.lastStripInPad(), ME0EtaPartition.lastStripInPad(), PerformancePayloadFromBinnedTFormula.limitPos(), PerformancePayloadFromTFormula.limitPos(), G4SimEvent.load(), cond::persistency::KeyList.load(), MP7PacketReader.load(), loadFFTJetInterpolationTable(), HcalPatternSource.loadPatterns(), gs.loadStringArchiveFromArchive(), LocalCacheFile.LocalCacheFile(), IdealZPrism.localCorners(), FWPFEcalRecHitLegoProxyBuilder.localModelChanges(), StripCPEgeometric.localParameters(), StripCPE.localParameters(), StripCPEfromTrackAngle.localParameters(), fit::Likelihood< Sample, PDF, Yield >.log(), LookToRead_Look_Exact(), LookToRead_Look_Lookahead(), LookToRead_Read(), LookToRead_Seek(), LookToRead_Skip(), edm.lower_bound_all(), main(), egHLT::TrigCodes.makeCodes(), DTSurveyChamber.makeErrors(), DTSurveyChamber.makeMatrix(), edm::WorkerMaker< T >.makeModule(), FWParameterSetterBase.makeSetterFor(), DTSurveyChamber.makeVector(), edm::reftobase::IndirectHolder< T >.makeVectorHolder(), edm::MapOfVectors< std::string, AnalysisDescription * >.MapOfVectors(), PerformancePayloadFromTable.matches(), PerformancePayloadFromTable.maxPos(), PerformancePayloadFromTable.minPos(), FWInteractionList.modelChanges(), FWDigitSetProxyBuilder.modelChanges(), HLTPerformanceInfo.moduleIndexInPath(), RKCurvilinearDistance< T, N >.momentum(), ParametersDefinerForTP.momentum(), CurvilinearState.momentum(), MyAlloc(), DCacheStorageMaker.normalise(), edm::MapOfVectors< std::string, AnalysisDescription * >.offset(), PropagationDirectionChooser.operator()(), TrackingParticleSelector.operator()(), VertexCompatibleWithBeam.operator()(), TrackClassFilter.operator()(), hitfit::LeptonTranslatorBase< ALepton >.operator()(), sort_pair_first< T1, T2, Pred >.operator()(), MuonNavigationSchool::delete_layer.operator()(), hitfit::JetTranslatorBase< AJet >.operator()(), hitfit::Lepjets_Event_Lep.operator<(), OwnIt< T >.operator=(), edm::Guid.operator=(), edm::Guid.operator==(), hitfit::Pair_Table.Pair_Table(), G4SimEvent.param(), edm::ProductProvenance.parentage(), parseFFTJetScaleCalculator(), MCPdgIndexFilter.pass(), Phase2StripCPEESProducer.Phase2StripCPEESProducer(), dqmservices::JsonWritingTimeoutPoolOutputModule.physicalAndLogicalNameForNewFile(), hitfit::Resolution.pick(), PixelCPEGenericESProducer.PixelCPEGenericESProducer(), PixelCPETemplateRecoESProducer.PixelCPETemplateRecoESProducer(), SymmetryFit.pol2_from_pol2(), SymmetryFit.pol2_from_pol3(), TrackingAction.PostUserTrackingAction(), edm::ParameterSwitchBase.printCaseT(), JetFlavourFilter.printHisto(), JetFlavourCutFilter.printHisto(), l1t::Stage2Layer2DemuxEGAlgoFirmwareImp1.processEvent(), l1t::Stage2Layer2DemuxTauAlgoFirmwareImp1.processEvent(), FWGeoTopNodeGL.ProcessSelection(), edm::FlatRandomEThetaGunProducer.produce(), edm::FlatRandomPtThetaGunProducer.produce(), edm::FileRandomKEThetaGunProducer.produce(), reco::modules::CaloRecHitCandidateProducer< HitCollection >.produce(), edm::FlatRandomOneOverPtGunProducer.produce(), ParticleDecayProducer.produce(), edm::FlatRandomEGunProducer.produce(), edm::FlatRandomPtGunProducer.produce(), IPTCorrector.produce(), edm::ExpoRandomPtGunProducer.produce(), pat::PATTauSlimmer.produce(), edm::ExpoRandomPGunProducer.produce(), PFMuonUntagger.produce(), MCTrackMatcher.produce(), CaloTowerCandidateCreator.produce(), ConeIsolation.produce(), pat::PATMuonSlimmer.produce(), EgammaHLTCaloTowerProducer.produce(), ShallowDigisProducer.produce(), ImpactParameter.produce(), SiStripRegFEDSelector.produce(), CaloTowerFromL1TCreatorForTauHLT.produce(), edm::BeamHaloProducer.produce(), CaloTowerCreatorForTauHLT.produce(), ECALRegFEDSelector.produce(), RecHitCorrector.produce(), LHE2HepMCConverter.produce(), edm::ProductProvenance.ProductProvenance(), TrackingRecHitPropagator.project(), StraightLinePropagator.propagateWithPath(), PropagatorWithMaterialESProducer.PropagatorWithMaterialESProducer(), PTrajectoryStateOnDet.PTrajectoryStateOnDet(), mySiStripNoises.put(), SiStripDetVOff.put(), SiStripApvGain.put(), SiStripBadStrip.put(), HDQMSummary.put(), AsciiNeutronReader.readNextEvent(), OwnerPolicy::Transfer.remove(), OwnerPolicy::Copy.remove(), OwnerPolicy::Clone.remove(), OwnerPolicy::Replica.remove(), own_ptr< std::ifstream >.reset(), FW3DViewDistanceMeasureTool.resetAction(), PerformancePayloadFromTable.resultPos(), PerformancePayloadFromBinnedTFormula.resultPos(), PerformancePayloadFromTFormula.resultPos(), TwoBodyDecayModel.rotationMatrix(), edm::UnscheduledCallProducer.runNow(), RZLine.RZLine(), ora::NamedRef< T >.safePtr(), edm.search_if_in_all(), SecToLook_Read(), SecToRead_Read(), CaloDualConeSelector< HBHERecHit >.selectCallback(), CaloConeSelector< T >.selectCallback(), CandCommonVertexFitterBase.set(), PFCandCommonVertexFitterBase.set(), ora::VoidStarHandler.set(), edm::Provenance.setBranchDescription(), TrackInformation.setCaloSurfaceParticleP(), reco::FFTJet< float >.setFourVec(), TrackInformation.setGenParticleP(), TrackInformation.setIDonCaloSurface(), MonLaserStatusDat.setLaserFanout(), MonLaserStatusDat.setLaserFilter(), MonLaserStatusDat.setLaserPower(), MonLaserStatusDat.setLaserWavelength(), MEzCalculator.SetLepton(), MEzCalculator.SetMET(), METzCalculator.SetMET(), METzCalculator.SetMuon(), HDQMSummary.setObj(), SiPixelDbItem.setPackedVal(), FWGeoTopNodeGLScene.SetPad(), DDI::Solid.setParameters(), TMCReader.setpartition(), CSCCorrelatedLCTDigi.setPattern(), reco::FFTJet< float >.setPileup(), Plane.setPosPrec(), SetPropagationDirection(), MonLaserPulseDat.setPulseHeightMean(), MonLaserPulseDat.setPulseHeightRMS(), MonLaserPulseDat.setPulseWidthMean(), MonLaserPulseDat.setPulseWidthRMS(), HLTPerformanceInfo.setStatusOfModulesFromPath(), RecoTracktoTP.SetTrackingParticleMomentumPCA(), PdtEntry.setup(), Plane.side(), hitfit::Resolution.sigma(), SimpleZSPJPTJetCorrector.SimpleZSPJPTJetCorrector(), SiStripRecHitMatcherESProducer.SiStripRecHitMatcherESProducer(), SiTrackerMultiRecHitUpdatorESProducer.SiTrackerMultiRecHitUpdatorESProducer(), cond::SmallWORMDict.SmallWORMDict(), edm.sort_all(), PhysicsTools.split(), edm.stable_sort_all(), SteppingHelixPropagatorESProducer.SteppingHelixPropagatorESProducer(), StraightLinePropagatorESProducer.StraightLinePropagatorESProducer(), LA_Filler_Fitter.subset_probability(), GEMRecHitMatcher.superChamberIds(), PTrajectoryStateOnDet.surfaceSide(), CSCFitAFEBThr.ThresholdNoise(), TkTransientTrackingRecHitBuilderESProducer.TkTransientTrackingRecHitBuilderESProducer(), cms::MD5Result.toString(), TempTrajectory.toTrajectory(), reco::TransientTrackFromFTS.track(), TrackerStablePhiSort(), reco.trackingParametersAtClosestApproachToBeamSpot(), TrackingRecHitPropagatorESProducer.TrackingRecHitPropagatorESProducer(), ExhaustiveMuonTrajectoryBuilder.trajectories(), edm::TransientDataFrame< SIZE >.TransientDataFrame(), TransientTrackBuilderESProducer.TransientTrackBuilderESProducer(), TSCBLBuilderWithPropagatorESProducer.TSCBLBuilderWithPropagatorESProducer(), SimpleJetCorrectionUncertainty.uncertaintyBin(), HLTPerformanceInfo.uniqueModule(), unsafe_logf_impl(), HLTScalersClient::CountLSFifo_t.update(), CurvilinearTrajectoryParameters.updateP(), LocalTrajectoryParameters.updateP(), MODDCCOperationDat.writeArrayDB(), MODCCSFEDat.writeArrayDB(), MODCCSTRDat.writeArrayDB(), FEConfigFgrDat.writeArrayDB(), FEConfigWeightDat.writeArrayDB(), DCUCapsuleTempDat.writeArrayDB(), FEConfigLUTDat.writeArrayDB(), DCUIDarkDat.writeArrayDB(), FEConfigSpikeDat.writeArrayDB(), DCUVFETempDat.writeArrayDB(), FEConfigSlidingDat.writeArrayDB(), MonShapeQualityDat.writeArrayDB(), DCUIDarkPedDat.writeArrayDB(), FEConfigTimingDat.writeArrayDB(), FEConfigFgrEETowerDat.writeArrayDB(), FEConfigLinParamDat.writeArrayDB(), DCUCapsuleTempRawDat.writeArrayDB(), MonH4TablePositionDat.writeArrayDB(), MonOccupancyDat.writeArrayDB(), FEConfigFgrEEStripDat.writeArrayDB(), MonPedestalsOnlineDat.writeArrayDB(), DCULVRBTempsDat.writeArrayDB(), FEConfigLUTParamDat.writeArrayDB(), CaliGainRatioDat.writeArrayDB(), FEConfigPedDat.writeArrayDB(), MonDelaysTTDat.writeArrayDB(), CaliTempDat.writeArrayDB(), and GctFormatTranslateBase.writeRawHeader().