CMS 3D CMS Logo

Functions | Variables
findQualityFiles Namespace Reference

Functions

def getGoodBRuns ()
 functions definitions More...
 
def getGoodQRuns ()
 obtaining list of good quality runs More...
 
def getJSONGoodRuns ()
 obtain a list of good runs from JSON file More...
 
def getRunRegistryGoodRuns ()
 obtaining list of good B and quality runs from Run Registry https://twiki.cern.ch/twiki/bin/view/CMS/DqmRrApi https://twiki.cern.ch/twiki/bin/viewauth/CMS/DQMRunRegistry More...
 

Variables

 action
 
string allOptions = '### '
 
 args
 
string comma = ","
 
string commandline = " "
 
 copyargs = sys.argv[:]
 
string dbs_quiery = "find run, file.numevents, file where dataset="
 Find files for good runs. More...
 
 default
 
 dest
 
 dqDataset
 
 ff = open('/tmp/runs_and_files_full_of_pink_bunnies','r')
 
 files_events = list(zip(list_of_files, list_of_numevents))
 
 fname = fname.rstrip('\n')
 
 help
 
list infotofile = ["### %s\n" % commandline]
 
string jj = ''
 
list list_of_files = []
 
list list_of_numevents = []
 
list list_of_runs = []
 
int maxI = options.maxB*18160
 
int minI = options.minB*18160
 
 numevents
 
 options
 
 parser = optparse.OptionParser(usage)
 
string rr = ''
 
 run
 
list runs_b_on = []
 get good B field runs from RunInfo DB More...
 
list runs_good = []
 use run registry API is specified More...
 
list runs_good_dq = []
 Add requiremment of good quality runs. More...
 
 size = len(list_of_files)
 Write out results. More...
 
int total_numevents = 0
 
 type
 
 uniq_list_of_runs = list(set(list_of_runs))
 
 unique_files_events = list(set(files_events))
 
string usage = '%prog [options]\n\n'
 To parse commandline args. More...
 
 v = options.verbose
 

Function Documentation

def findQualityFiles.getGoodBRuns ( )

functions definitions

get good B field runs from RunInfo DB

Definition at line 205 of file findQualityFiles.py.

References createfilelist.int.

206 
207  runs_b_on = []
208 
209  sys.setdlopenflags(DLFCN.RTLD_GLOBAL+DLFCN.RTLD_LAZY)
210 
211  a = FWIncantation()
212  #os.putenv("CORAL_AUTH_PATH","/afs/cern.ch/cms/DB/conddb")
213  rdbms = RDBMS("/afs/cern.ch/cms/DB/conddb")
214 
215  db = rdbms.getDB(options.dbName)
216  tags = db.allTags()
217 
218  if options.printTags:
219  print "\nOverview of all tags in "+options.dbName+" :\n"
220  print tags
221  print "\n"
222  sys.exit()
223 
224  # for inspecting last run after run has started
225  #tag = 'runinfo_31X_hlt'
226  tag = options.dbTag
227 
228  # for inspecting last run after run has stopped
229  #tag = 'runinfo_test'
230 
231  try :
232  #log = db.lastLogEntry(tag)
233 
234  #for printing all log info present into log db
235  #print log.getState()
236 
237  iov = inspect.Iov(db,tag)
238  #print "########overview of tag "+tag+"########"
239  #print iov.list()
240 
241  if v>1 :
242  print "######## summries ########"
243  for x in iov.summaries():
244  print x[0], x[1], x[2] ,x[3]
245 
246  what={}
247 
248  if v>1 :
249  print "###(start_current,stop_current,avg_current,max_current,min_current,run_interval_micros) vs runnumber###"
250  print iov.trend(what)
251 
252  if v>0:
253  print "######## trends ########"
254  for x in iov.trendinrange(what,options.startRun-1,options.endRun+1):
255  if v>0 or x[0]==67647 or x[0]==66893 or x[0]==67264:
256  print x[0],x[1] ,x[2], x[2][4], x[2][3]
257  #print x[0],x[1] ,x[2], x[2][4], timeStamptoUTC(x[2][6]), timeStamptoUTC(x[2][7])
258  if x[2][4] >= minI and x[2][3] <= maxI:
259  runs_b_on.append(int(x[0]))
260 
261  except Exception as er :
262  print er
263 
264  print "### runs with good B field ###"
265  print runs_b_on
266 
267  return runs_b_on
268 
269 
def getGoodBRuns()
functions definitions
def findQualityFiles.getGoodQRuns ( )

obtaining list of good quality runs

Definition at line 273 of file findQualityFiles.py.

References createfilelist.int.

274 
275  runs_good_dq = []
276 
277  dbs_quiery = "find run where dataset="+options.dqDataset+" and dq="+options.dqCriteria
278  print 'dbs search --noheader --query="'+dbs_quiery+'" | sort'
279 
280  os.system('python $DBSCMD_HOME/dbsCommandLine.py -c search --noheader --query="'+dbs_quiery+'" | sort > /tmp/runs_full_of_pink_bunnies')
281 
282  #print 'python $DBSCMD_HOME/dbsCommandLine.py -c search --noheader --query="'+dbs_quiery+'" | sort > /tmp/runs_full_of_pink_bunnies'
283 
284  ff = open('/tmp/runs_full_of_pink_bunnies', "r")
285  line = ff.readline()
286  while line and line!='':
287  runs_good_dq.append(int(line))
288  line = ff.readline()
289  ff.close()
290 
291  os.system('rm /tmp/runs_full_of_pink_bunnies')
292 
293  print "### runs with good quality ###"
294  print runs_good_dq
295 
296  return runs_good_dq
297 
def getGoodQRuns()
obtaining list of good quality runs
def findQualityFiles.getJSONGoodRuns ( )

obtain a list of good runs from JSON file

Definition at line 324 of file findQualityFiles.py.

References FrontierConditions_GlobalTag_cff.file, and createfilelist.int.

325 
326  # read json file
327  jsonfile=file(options.json,'r')
328  jsondict = json.load(jsonfile)
329 
330  runs_good = []
331  for run in jsondict.keys(): runs_good.append(int(run))
332  runs_good.sort()
333 
334  #mruns=[]
335  #for run in jsondict.keys():
336  # if int(run)<144115 and int(run)>136034: mruns.append(int(run))
337  #mruns.sort()
338  #print len(mruns),"runs in \n",mruns
339 
340  return runs_good
341 
def getJSONGoodRuns()
obtain a list of good runs from JSON file
def findQualityFiles.getRunRegistryGoodRuns ( )

obtaining list of good B and quality runs from Run Registry https://twiki.cern.ch/twiki/bin/view/CMS/DqmRrApi https://twiki.cern.ch/twiki/bin/viewauth/CMS/DQMRunRegistry

Definition at line 303 of file findQualityFiles.py.

References harvestTrackValidationPlots.str.

304 
305  server = xmlrpclib.ServerProxy('http://pccmsdqm04.cern.ch/runregistry/xmlrpc')
306 
307  rr_quiery = "{runNumber}>="+str(options.startRun)+" and {runNumber}<="+str(options.endRun)+\
308  " and {bfield}>="+str(options.minB)+" and {bfield}<="+str(options.maxB)
309  if options.dqCriteria != "": rr_quiery += " and "+options.dqCriteria
310 
311  rrstr = server.RunDatasetTable.export('GLOBAL', 'chart_runs_cum_evs_vs_bfield', rr_quiery)
312  rrstr = rrstr.replace("bfield","'bfield'")
313  rrstr = rrstr.replace("events","'events'")
314  rrdata = eval(rrstr)
315 
316  runs_good = []
317  for rr in rrdata['events']: runs_good.append(rr[0])
318 
319  return runs_good
320 
def getRunRegistryGoodRuns()
obtaining list of good B and quality runs from Run Registry https://twiki.cern.ch/twiki/bin/view/CMS/...

Variable Documentation

findQualityFiles.action

Definition at line 92 of file findQualityFiles.py.

string findQualityFiles.allOptions = '### '

Definition at line 189 of file findQualityFiles.py.

findQualityFiles.args

Definition at line 158 of file findQualityFiles.py.

string findQualityFiles.comma = ","
string findQualityFiles.commandline = " "

Definition at line 38 of file findQualityFiles.py.

findQualityFiles.copyargs = sys.argv[:]

Definition at line 32 of file findQualityFiles.py.

string findQualityFiles.dbs_quiery = "find run, file.numevents, file where dataset="

Find files for good runs.

Definition at line 396 of file findQualityFiles.py.

findQualityFiles.default

Definition at line 56 of file findQualityFiles.py.

findQualityFiles.dest

Definition at line 57 of file findQualityFiles.py.

findQualityFiles.dqDataset

Definition at line 171 of file findQualityFiles.py.

findQualityFiles.ff = open('/tmp/runs_and_files_full_of_pink_bunnies','r')

Definition at line 406 of file findQualityFiles.py.

findQualityFiles.files_events = list(zip(list_of_files, list_of_numevents))

Definition at line 429 of file findQualityFiles.py.

findQualityFiles.fname = fname.rstrip('\n')

Definition at line 408 of file findQualityFiles.py.

findQualityFiles.help

Definition at line 52 of file findQualityFiles.py.

list findQualityFiles.infotofile = ["### %s\n" % commandline]

Definition at line 41 of file findQualityFiles.py.

findQualityFiles.jj = ''

Definition at line 186 of file findQualityFiles.py.

Referenced by CMSTopTagger._find_min_mass(), myFastSimVal.analyze(), EwkMuDQM.analyze(), TestTrackHits.analyze(), TestOutliers.analyze(), HLTExoticaSubAnalysis.analyze(), SignedDecayLength3D.apply(), JetTracksAssociationDR.associateTracksToJets(), L1TUtmTriggerMenuDumper.beginRun(), HcalLogicalMapGenerator.buildCALIBMap(), CommissioningHistosUsingDb.buildDetInfo(), SiStripFedCabling.buildFedCabling(), TrackerGeomBuilderFromGeometricDet.buildGeomDet(), HcalLogicalMapGenerator.buildHOXMap(), CocoaDaqReaderRoot.BuildMeasurementsFromOptAlign(), ConversionProducer.buildSuperAndBasicClusterGeoMap(), Fit.CheckIfMeasIsProportionalToAnother(), SiStripConfigDb.clone(), CommissioningHistosUsingDb.detInfo(), DTTrigGeom.dumpGeom(), MatrixMeschach.EliminateColumns(), MatrixMeschach.EliminateLines(), energy_ieta(), energy_iphi(), DDBHMAngular.execute(), TkHistoMap.fill(), SiStripCommissioningSource.fillCablingHistos(), FittedEntriesSet.FillCorrelations(), FittedEntriesSet.FillEntriesAveragingSets(), SiPixelActionExecutor.fillFEDErrorSummary(), MELaserPrim.fillHistograms(), Fit.FillMatricesWithMeasurements(), SiPixelActionExecutor.fillSummary(), l1t::TriggerMenuParser.getExternalSignals(), CocoaDaqReaderRoot.GetMeasFromDist(), CocoaDaqReaderRoot.GetMeasFromPosition2D(), CocoaDaqReaderRoot.GetMeasFromPositionCOPS(), CocoaDaqReaderRoot.GetMeasFromTilt(), Fit.GetMeasurementName(), EcalLaserAnalyzer2.getShapes(), HLTPMDocaFilter.hltFilter(), HLTPMMassFilter.hltFilter(), MELaserPrim.init(), DDG4ProductionCuts.initialize(), SiStripDbParams.inputDcuInfoXmlFiles(), SiStripDbParams.inputFecXmlFiles(), SiStripDbParams.inputFedXmlFiles(), SiStripDbParams.inputModuleXmlFiles(), TSFit.inverms(), TFParams.inverpj(), OptoScanTask.locateTicks(), FittedEntriesManager.MakeHistos(), GlobalMuonTrackMatcher.match(), MatrixMeschach.operator*=(), MatrixMeschach.ostrDump(), l1t::TriggerMenuParser.parseCalo(), l1t::TriggerMenuParser.parseCorrelation(), l1t::TriggerMenuParser.parseCorrelationWithOverlapRemoval(), l1t::TriggerMenuParser.parseEnergySum(), l1t::TriggerMenuParser.parseExternal(), l1t::TriggerMenuParser.parseMuon(), SiStripDbParams.partition(), SiStripDbParams.partitionNames(), PerigeeKinematicState.PerigeeKinematicState(), PixelResolutionHistograms.PixelResolutionHistograms(), CSCFakeDBCrosstalk.prefillDBCrosstalk(), MEChannel.print(), SiStripDetCabling.print(), SiStripFecCabling.print(), SiStripDbParams.print(), SiStripConfigDb.printAnalysisDescriptions(), SiStripFedCabling.printDebug(), SiStripConfigDb.printDeviceDescriptions(), SiStripConfigDb.printFedConnections(), SiStripConfigDb.printFedDescriptions(), SiStripFedCabling.printSummary(), JetTagProducer.produce(), ConversionTrackMerger.produce(), SimpleTrackListMerger.produce(), TrackListMerger.produce(), GenJetBCEnergyRatio.produce(), PixelJetPuId.produce(), FlavorHistoryProducer.produce(), DeepFlavourJetTagsProducer.produce(), reco::modules::JetFlavourIdentifier.produce(), CaloGeometryDBEP< T, U >.produceAligned(), hcaltb::HcalTBTDCUnpacker.reconstructWC(), CMSTopTagger.result(), SiStripConfigDb.runs(), TkHistoMap.setBinContent(), magfieldparam::BFit3D.SetCoeff_Linear(), magfieldparam::BFit.SetField(), IPTools.signedDecayLength3D(), ConfigurationDBHandler.startElement(), TouchableToHistory.touchableToNavStory(), CountProcessesAction.update(), MaterialBudgetForward.update(), MaterialBudget.update(), MaterialBudgetAction.update(), ZdcTestAnalysis.update(), SiStripConfigDb.usingDatabase(), MuonErrorMatrix.Value(), and PixelResolutionHistograms.~PixelResolutionHistograms().

findQualityFiles.list_of_files = []

Definition at line 401 of file findQualityFiles.py.

findQualityFiles.list_of_numevents = []

Definition at line 403 of file findQualityFiles.py.

list findQualityFiles.list_of_runs = []

Definition at line 402 of file findQualityFiles.py.

int findQualityFiles.maxI = options.maxB*18160
int findQualityFiles.minI = options.minB*18160

Definition at line 179 of file findQualityFiles.py.

Referenced by MuonGeometryArrange.endHist().

findQualityFiles.numevents

Definition at line 408 of file findQualityFiles.py.

findQualityFiles.options

Definition at line 158 of file findQualityFiles.py.

findQualityFiles.parser = optparse.OptionParser(usage)

Definition at line 49 of file findQualityFiles.py.

findQualityFiles.rr = ''

Definition at line 183 of file findQualityFiles.py.

Referenced by CaloMCTruthTreeProducer.analyze(), PFMCTruthTreeProducer.analyze(), HLTGetDigi.analyze(), L1MuonRecoTreeProducer.analyze(), ConversionProducer.buildCollection(), ConversionProducer.checkTrackPair(), DDPixBarLayerAlgo.execute(), HCalSD.getHitFibreBundle(), HCalSD.getHitPMT(), FastTimeGeometry.getSummary(), HGCalGeometry.getSummary(), CaloTowerGeometry.getSummary(), CaloSubdetectorGeometry.getSummary(), HcalGeometry.getSummary(), math::GraphWalker< N, E >.GraphWalker(), HGCalDDDConstants.isValidCell(), HGCalGeomParameters.loadWaferHexagon(), CSCRadialStripTopology.localError(), TkRadialStripTopology.localError(), JetPlusTrackCorrector.matchTracks(), DDHGCalModule.positionSensitive(), DDHGCalModuleAlgo.positionSensitive(), DDHGCalTBModule.positionSensitive(), PrimitiveMatching.process_single_zone_station(), JetTracksAssociationDRVertexAssigned.produce(), AlignmentPrescaler.produce(), pat::PATTrackAndVertexUnpacker.produce(), external::HEPTopTaggerV2_fixed_R.run(), MaterialBudgetHcal.stopAfter(), MaterialBudgetForward.stopAfter(), MaterialBudget.stopAfter(), HGCalDDDConstants.waferInLayer(), FEConfigFgrGroupDat.writeArrayDB(), FEConfigWeightGroupDat.writeArrayDB(), FEConfigLinDat.writeArrayDB(), MonPNLed1Dat.writeArrayDB(), MonPNBlueDat.writeArrayDB(), MonPNLed2Dat.writeArrayDB(), MonPNGreenDat.writeArrayDB(), MonPNIRedDat.writeArrayDB(), MonPNRedDat.writeArrayDB(), MonPNMGPADat.writeArrayDB(), and DCULVRVoltagesDat.writeArrayDB().

findQualityFiles.run

Definition at line 408 of file findQualityFiles.py.

Referenced by fit::RootMinuitCommands< Function >.add(), edm::IndexIntoFile.addEntry(), HcalLaserEventFilter2012.addEventString(), SiStripBadFiberBuilder.algoAnalyze(), SiStripBadChannelBuilder.algoAnalyze(), SiStripDetVOffFakeBuilder.analyze(), SiStripFedCablingManipulator.analyze(), L1CondDBIOVWriterExt.analyze(), L1TScalersSCAL.analyze(), SiStripNoisesBuilder.analyze(), SiStripApvGainBuilder.analyze(), SiStripPedestalsBuilder.analyze(), SiStripSummaryBuilder.analyze(), SiStripThresholdBuilder.analyze(), DummyCondDBWriter< TObject, TObjectO, TRecord >.analyze(), DQMGenericTnPClient.analyze(), L1O2OTestAnalyzerExt.analyze(), dqm::RamdiskMonitor.analyze(), AlCaRecoTriggerBitsRcdRead.analyze(), L1CondDBIOVWriter.analyze(), L1O2OTestAnalyzer.analyze(), TreeProducerCalibSimul.analyze(), SiStripBaselineAnalyzer.analyze(), DTTTrigCorrectionFirst.beginJob(), DTT0Correction.beginJob(), DTTTrigCorrection.beginJob(), dqm::RamdiskMonitor.beginLuminosityBlock(), edm::SecondaryEventProvider.beginRun(), HTXSRivetProducer.beginRun(), DQMStore.bookTransaction(), edm.BranchTypeToString(), AlignableDetUnit.cacheTransformation(), Alignable.cacheTransformation(), edm::DuplicateChecker.checkDisabled(), edm::RunHelperBase.checkForNewRun(), edm::SetRunForEachLumiHelper.checkForNewRun(), CmsShowMain.CmsShowMain(), dqmservices::DQMFileIterator.collect(), SiStripEventSummary.commissioningInfo(), HltDiff.compare(), Level1TriggerRates.computeRates(), edm::DataMixingModule.createnewEDProduct(), SiStripCommissioningSource.createRunNumber(), edm.decode(), edm::EDLooperBase.doBeginRun(), edm::EDLooperBase.doEndRun(), EcalCondDBWriter.dqmEndJob(), edm::PileUp.dropUnwantedBranches(), edm::NavigateEventsLooper.duringLoop(), fwlite::EntryFinder.empty(), edm::SecondaryEventProvider.endRun(), cond::BTransitionAnalyzer< EcalADCToGeVConstant, EcalADCToGeVConstantRcd >.endRun(), GenXSecAnalyzer.endRun(), edm.exceptionContext(), edm::SetRunForEachLumiHelper.fakeNewRun(), EcalCondDBInterface.fetchLMFRunIOV(), EcalCondDBInterface.fetchMonRunIOV(), EcalCondDBInterface.fetchRunIOV(), EcalCondDBInterface.fetchValidDataSet(), cond::payloadInspector::RunHistoryPlot< PayloadType, Y >.fill(), core.AutoFillTreeProducer.AutoFillTreeProducer.fillCoreVariables(), edm::RootFile.fillEventHistory(), edm::RootFile.fillIndexIntoFile(), TreeMatrixCalib.fillInfo(), NMaxPerLumi.filter(), HcalLaserEventFilter2012.filter(), EcalDeadCellTriggerPrimitiveFilter.filter(), CaloHitResponse.finalizeHits(), DQMStore.findObject(), edm::IndexIntoFile.findPosition(), get_filename(), getCentralityFromFile(), EcalCondDBInterface.getDateHandler(), cond::persistency::RUN_INFO::Table.getLastInserted(), CommonAnalyzer.getList(), fwlite::Event.getLuminosityBlock(), MatacqProducer.getMatacqEvent(), popcon::EcalLaser_weekly_Handler.getNewObjects(), DTKeyedConfigHandler.getNewObjects(), getplot(), fwlite::Event.getRun(), TrackingRecHitAlgorithm.getSelectionString(), hcaldqm::quantity::RunNumber.getValue(), GoodSeedProducer.globalEndJob(), L1TriggerJSONMonitoring.globalEndLuminosityBlockSummary(), HLTriggerJSONMonitoring.globalEndLuminosityBlockSummary(), HcalLaserEventFilter.HcalLaserEventFilter(), EventMsgView.headerSize(), BeamSpotRcdReader::theBSfromDB.init(), cond::persistency::RUN_INFO::Table.insert(), CamacTBDataFormatter.interpretRawData(), EBHitResponse.keepBlank(), MatacqProducer.loadOrbitOffset(), ls_cert_type(), main(), XMLDocument.makeRun(), edm.makeRunHelper(), RawEventFileWriterForBU.makeRunPrefix(), DQMStore.meGetter(), DQMStore.mtEnabled(), edm::SetRunForEachLumiHelper.nextItemType(), nlumis(), TriggerHelper.off(), GenericTriggerEventFlag.off(), edm.operator<<(), EgHLTOfflineSummaryClient.operator=(), EgHLTOfflineClient.operator=(), edm::SetRunHelper.overrideRunNumber(), evf::EvFDaqDirector.overrideRunNumber(), TriggerAnalyzer.TriggerAnalyzer.process(), core.EventSelector.EventSelector.process(), core.ProvenanceAnalyzer.ProvenanceAnalyzer.process(), core.SkimAnalyzerCount.SkimAnalyzerCount.process(), edm::EventProcessor.processConfiguration(), ShallowEventDataProducer.produce(), BunchSpacingProducer.produce(), NtpProducer< C >.produce(), Type1PFMET.produce(), ZToLLEdmNtupleDumper.produce(), MultiTrackSelector.produce(), HIMultiTrackSelector.produce(), SiStripClusterizerFromRaw.produce(), publishObjects(), edm::RootFile.readEvent(), EcalTPGDBApp.readFromCondDB_Pedestals(), edm::RootEmbeddedFileSequence.readOneRandomWithID(), edm::RootEmbeddedFileSequence.readOneSequentialWithID(), edm::RootEmbeddedFileSequence.readOneSpecified(), popcon::EcalPedestalsHandler.readPedestalTimestamp(), popcon::EcalPedestalsHandler.readPedestalTree(), edm::RootFile.readRunAuxiliary_(), AlignableDetUnit.restoreCachedTransformation(), Alignable.restoreCachedTransformation(), RPCTechTriggerConfig.RPCTechTriggerConfig(), PixelFitterBase.run(), checkBTagCalibrationConsistency.run_check_data(), fwlite::RunHistoryGetter.RunHistoryGetter(), CommissioningHistograms.runNumber(), SiStripPartition.runNumber(), fwlite::Scanner< Collection >.scan(), fwlite::MultiChainEvent.secondary(), edm::StreamerOutputModuleBase.serializeRegistry(), EcalUncalibRecHitWorkerBaseClass.set(), RunIOV.setByRecentData(), RunIOV.setByRun(), edm::RootFile.setEntryAtItem(), MonitorElement.setLumi(), RandomClusterAlgo.setProduces(), FullModuleSumAlgo< FECODEC, DATA >.setProduces(), HGCClusterAlgo< FECODEC, DATA >.setProduces(), pat::TriggerPath.setRun(), pat::TriggerEvent.setRun(), BeamFitter.setRun(), AliDaqEventHeader.SetRunEvt(), SimRunInterface.setRunManagerMTWorker(), CommonAnalyzer.setRunNumber(), RunIOV.setRunNumber(), EcalDCCHeaderBlock.setRunNumber(), SiStripRecHitConverterAlgorithm::products.shrink_to_fit(), SiStripCommissioningRunTypeFilter.SiStripCommissioningRunTypeFilter(), InitMsgView.startAddress(), TB06Tree.store(), TB06TreeH2.store(), edm::service.summarizeContext(), AlignmentAlgorithmBase.terminate(), fwlite::ChainEvent.to(), fwlite::MultiChainEvent.to(), fwlite::Event.to(), PrintMaterialBudgetInfo.update(), SiStripPartition.update(), L1TdeStage2CaloLayer1.updateMismatch(), L1TStage2CaloLayer1.updateMismatch(), edm::RootFile.wasFirstEventJustRead(), JsonOutputProducer.write(), EcalPedOffset.writeDb(), EcalRecHitWorkerBaseClass.~EcalRecHitWorkerBaseClass(), EcalUncalibRecHitWorkerAnalFit.~EcalUncalibRecHitWorkerAnalFit(), EcalUncalibRecHitWorkerFixedAlphaBetaFit.~EcalUncalibRecHitWorkerFixedAlphaBetaFit(), EcalUncalibRecHitWorkerGlobal.~EcalUncalibRecHitWorkerGlobal(), EcalUncalibRecHitWorkerMaxSample.~EcalUncalibRecHitWorkerMaxSample(), EcalUncalibRecHitWorkerMultiFit.~EcalUncalibRecHitWorkerMultiFit(), EcalUncalibRecHitWorkerRatio.~EcalUncalibRecHitWorkerRatio(), EcalUncalibRecHitWorkerWeights.~EcalUncalibRecHitWorkerWeights(), ESRecHitWorkerBaseClass.~ESRecHitWorkerBaseClass(), edm::FileIndex.~FileIndex(), HGCalRecHitWorkerBaseClass.~HGCalRecHitWorkerBaseClass(), HitPairGenerator.~HitPairGenerator(), HitQuadrupletGenerator.~HitQuadrupletGenerator(), HitTripletGenerator.~HitTripletGenerator(), HLTScalers.~HLTScalers(), HLTScalersClient.~HLTScalersClient(), KFBasedPixelFitter.~KFBasedPixelFitter(), L1MuonPixelTrackFitter.~L1MuonPixelTrackFitter(), L1ScalersClient.~L1ScalersClient(), LogErrorEventFilter.~LogErrorEventFilter(), MultiHitGenerator.~MultiHitGenerator(), omtf::OmtfPacker.~OmtfPacker(), omtf::OmtfUnpacker.~OmtfUnpacker(), OrderedHitsGenerator.~OrderedHitsGenerator(), PrescaleWeightProvider.~PrescaleWeightProvider(), tnp::TagProbePairMaker.~TagProbePairMaker(), TkModuleGroupSelector.~TkModuleGroupSelector(), and TrackingTruthValid.~TrackingTruthValid().

findQualityFiles.runs_b_on = []

get good B field runs from RunInfo DB

Definition at line 345 of file findQualityFiles.py.

list findQualityFiles.runs_good = []

use run registry API is specified

use JSON file if specified

Definition at line 357 of file findQualityFiles.py.

findQualityFiles.runs_good_dq = []

Add requiremment of good quality runs.

Definition at line 356 of file findQualityFiles.py.

findQualityFiles.size = len(list_of_files)

Write out results.

Definition at line 442 of file findQualityFiles.py.

Referenced by ntupleDataFormat.TrackingParticle._nMatchedSeeds(), ntupleDataFormat._SimHitMatchAdaptor._nMatchedSimHits(), ntupleDataFormat._TrackingParticleMatchAdaptor._nMatchedTrackingParticles(), ntupleDataFormat.TrackingParticle._nMatchedTracks(), HGCDigitizer.accumulate(), DigiCollectionFP420.add(), edm::helper::Filler< Association< C > >.add(), HcalSiPMHitResponse.add(), CaloHitResponse.add(), nanoaod::FlatTable.addColumn(), cond::persistency::TableDescription< Types >.addColumn(), L1GtTriggerMenuConfigOnlineProd.addCorrelationCondition(), BetaCalculatorRPC.addInfoToCandidate(), pat::PackedTriggerPrescales.addPrescaledTrigger(), fireworks.addStraightLineSegment(), IntermediateHitTriplets::RegionFiller.addTriplets(), InputFile.advance(), SiStripQualityHotStripIdentifier.algoAnalyze(), reco::Conversion.algoByName(), reco::TrackBase.algoByName(), SiStripNoises.allNoises(), SiStripPedestals.allPeds(), AnalyticalTrackSelector.AnalyticalTrackSelector(), L1TGlobalPrescalesVetosViewer.analyze(), MultiTrackValidatorGenPs.analyze(), BTagPerformanceAnalyzerOnData.analyze(), RECOVertex.analyze(), CaloTowerAnalyzer.analyze(), BTagPerformanceAnalyzerMC.analyze(), DTSegmentsTask.analyze(), PixelVTXMonitor.analyze(), EwkMuLumiMonitorDQM.analyze(), MultiTrackValidator.analyze(), EcalTestPulseAnalyzer.analyze(), BxTiming.analyze(), SegmentTrackAnalyzer.analyze(), cms::ProducerAnalyzer.analyze(), EcalPulseShapeGrapher.analyze(), EcalLaserAnalyzer2.analyze(), L1TFED.analyze(), HGCalShowerSeparation.analyze(), EcalLaserAnalyzer.analyze(), GeneralHLTOffline.analyze(), DTSegmentAnalysisTask.analyze(), PixelLumiDQM.analyze(), HcalLutAnalyzer.analyze(), HeavyFlavorValidation.analyze(), EcalTPGParamBuilder.analyze(), TriggerBxMonitor.analyze(), TriggerBxVsOrbitMonitor.analyze(), SiStripFEDMonitorPlugin.analyze(), PhotonValidator.analyze(), SiPixelErrorEstimation.analyze(), HLTMuonPlotter.analyze(), IsoTrig.analyze(), HLTExoticaSubAnalysis.analyze(), EmDQMReco.analyze(), HOCalibAnalyzer.analyze(), TrackingNtuple.analyze(), TaggingVariablePlotter.analyzeTag(), HLTEventAnalyzerRAW.analyzeTrigger(), array_from_row_sorted_matrix(), EZMgrVL< T >.assign(), TrackerHitAssociator.associateMultiRecHit(), TrackerHitAssociator.associateMultiRecHitId(), QGLikelihoodDBWriter.beginJob(), PickEvents.beginJob(), DTEfficiencyTask.beginLuminosityBlock(), DTResolutionAnalysisTask.beginLuminosityBlock(), DTChamberEfficiencyTask.beginLuminosityBlock(), L1TGlobalSummary.beginRun(), LumiCalculator.beginRun(), EcalHitResponse.blankOutUsedSamples(), EcalTimeMapDigitizer.blankOutUsedSamples(), amc::BlockHeader.BlockHeader(), TrackerOfflineValidation.bookDirHists(), MultiTrackValidator.bookHistograms(), TriggerBxMonitor.bookHistograms(), TriggerBxVsOrbitMonitor.bookHistograms(), HLTObjectsMonitor.bookHistograms(), MTVHistoProducerAlgoForTracker.bookRecoHistos(), FWCaloRecHitDigitSetProxyBuilder.build(), FWSimpleProxyBuilder.build(), FWTauProxyBuilderBase.buildBaseTau(), CaloGeometryHelper.buildCrystalArray(), CaloGeometryHelper.buildNeighbourArray(), FWPFClusterRPZUtils.buildRhoPhiClusterLineSet(), FWPFClusterRPZUtils.buildRhoZClusterLineSet(), CSCSegAlgoST.buildSegments(), EcalHitMaker.buildSegments(), FWSimpleProxyBuilder.buildViewType(), FWMETProxyBuilder.buildViewType(), FWJetProxyBuilder.buildViewType(), L1MuDTChambPhContainer.bxSize(), L1MuDTChambThContainer.bxSize(), L1MuTMChambPhContainer.bxSize(), L1MuDTTrackContainer.bxSize(), MeasurementSensor2D.calculateSimulatedValue(), MeasurementDistancemeter3dim.calculateSimulatedValue(), MeasurementDistancemeter.calculateSimulatedValue(), MeasurementTiltmeter.calculateSimulatedValue(), MeasurementCOPS.calculateSimulatedValue(), MeasurementDiffEntry.calculateSimulatedValue(), FWTableViewTableManager.cellRenderer(), DavixStorageMaker.check(), LocalStorageMaker.check(), LStoreStorageMaker.check(), StorageFactory.check(), DCacheStorageMaker.check(), StormStorageMaker.check(), StormLcgGtStorageMaker.check(), XrdStorageMaker.check(), btagbtvdeep::DeepBoostedJetFeatures.check_consistency(), MuScleFit.checkParameters(), OniaPhotonConversionProducer.checkTkVtxCompatibility(), CSCSegAlgoST.ChooseSegments2(), CSCSegAlgoST.ChooseSegments3(), l1t::Stage2Layer2JetAlgorithmFirmwareImp1.chunkyDonutPUEstimate(), PixelTrackCleanerBySharedHits.cleanTracks(), FWFromSliceSelector.clear(), HCALConfigDB.clobToString(), CSCSegAlgoPreClustering.clusterHits(), ME0SegmentAlgorithm.clusterHits(), GEMSegmentAlgorithm.clusterHits(), CSCSegAlgoST.clusterHits(), CombinationGenerator< T >.combinations(), ZeeCalibration.computeCoefficientDistanceAtIteration(), DTBtiChip.computeEqs(), Phase2Tracker::Phase2TrackerFEDBuffer.conditionData(), ConfigurableAPVCyclePhaseProducer.ConfigurableAPVCyclePhaseProducer(), pos::PixelConfigFile.configurationDataExists(), PhysicsTools::MVATrainer.connectProcessors(), CMSThermalNeutrons.ConstructProcess(), L1TMuonProducer.convertMuons(), MuonResidualsFitter.correctBField(), PFClusterEMEnergyCorrector.correctEnergies(), ConstrainedTreeBuilder.covarianceMatrix(), ConstrainedTreeBuilderT.covarianceMatrix(), PFElectronTranslator.createBasicClusterPtrs(), PFPhotonTranslator.createBasicClusterPtrs(), PFElectronTranslator.createGsfElectronCoreRefs(), PFElectronTranslator.createGsfElectrons(), HcalDbASCIIIO.createObject< HcalSiPMCharacteristics >(), PFElectronTranslator.createPreshowerClusterPtrs(), PFPhotonTranslator.createPreshowerClusterPtrs(), SiPixelUtility.createStatusLegendMessages(), PFElectronTranslator.createSuperClusterGsfMapRefs(), TtFullHadSignalSel.CSV_Bjet(), lhef::CBInputStream.curPos(), lhef::STLInputStream.curPos(), lhef::StorageInputStream.curPos(), evf::evtn.daq_board_sense(), EcalElectronicsMapping.dccConstituents(), HLTLevel1GTSeed.debugPrint(), ASmirnovDeDxDiscriminator.dedx(), ProductDeDxDiscriminator.dedx(), BTagLikeDeDxDiscriminator.dedx(), SmirnovDeDxDiscriminator.dedx(), defaultModuleLabel(), ProcessCallGraph.dependencies(), ProcessCallGraph.depends(), jsoncollector::DataPointDefinition.deserialize(), jsoncollector::DataPoint.deserialize(), edm::DetSetRefVector< Phase2ITPixelCluster >.DetSetRefVector(), magfieldparam::rz_poly.Diff(), npstat::BoxND< unsigned >.dim(), CSCAFEBThrAnalysis.done(), l1t::Stage2Layer2JetAlgorithmFirmwareImp1.donutPUEstimate(), edm::eventsetup::EventSetupProvider.doRecordsMatch(), FWHistSliceSelector.doSelect(), FWHistSliceSelector.doUnselect(), GctRawToDigi.doVerboseOutput(), DQMCorrelationClient.dqmEndJob(), FWTextTreeCellRenderer.draw(), TtFullHadSignalSel.dRMin(), TtFullHadSignalSel.dRMinMass(), btagbtvdeep.dump_vector(), PrintMaterialBudgetInfo.dumpElementMassFraction(), dumpLutDiff(), pat::GenericDuplicateRemover< Comparator, Arbitrator >.duplicates(), MuScleFit.duringFastLoop(), MuScleFit.duringLoop(), EBHitResponse.EBHitResponse(), EcalHitMaker.EcalHitMaker(), PFECALHashNavigator.ecalNeighbArray(), EcalTimeMapDigitizer.EcalTimeMapDigitizer(), DTTracoChip.edgeBTI(), EEHitResponse.EEHitResponse(), ElectronHEEPIDValueMapProducer.ElectronHEEPIDValueMapProducer(), CalorimetryManager.EMShowerSimulation(), HGCalTriggerCellThresholdCodecImpl.encode(), CaloSlaveSD.end(), cond::SmallWORMDict.end(), PhysicsTools::VarProcessor::ValueIterator.end(), edmNew::DetSetVector< T >::FastFiller.end(), MuonGeometryArrange.endHist(), ecaldqm::TowerStatusTask.endLuminosityBlock(), L1TRate_Offline.endLuminosityBlock(), edm::IndexIntoFile.endRunOrLumi(), edm::RootTree.entryNumberForIndex(), reco::Conversion.EoverP(), reco::Conversion.EoverPrefittedTracks(), DTBtiChip.eraseTrigger(), ESHitResponse.ESHitResponse(), MuonSeedCreator.estimatePtCSC(), MuonSeedCreator.estimatePtDT(), MuonSeedCreator.estimatePtOverlap(), ParticleTowerProducer.eta2ieta(), HCALProperties.eta2ieta(), L1GtCorrelationCondition.evaluateCondition(), DDEcalBarrelAlgo.execute(), DDEcalBarrelNewAlgo.execute(), npstat::BoxND< Numeric >.expand(), LayerHitMapCache::SimpleCache.extend(), NoiseSummaryFactory.extract(), PedsFullNoiseSummaryFactory.extract(), PedestalsSummaryFactory.extract(), PedsOnlySummaryFactory.extract(), cond::persistency.f_add_column_description(), EcalHitMaker.fastInsideCell(), jsoncollector::DataPoint.fastOutCSV(), fit::RootMinuit< Function >.fcn_(), KDTreeLinkerBase.fieldType(), File_Read(), File_Write(), FileOutStream_Write(), OptoScanTask.fill(), SiPixelTrackResidualModule.fill(), PFCandidateMonitor.fill(), PFJetMonitor.fill(), HLTOfflineDQMTopSingleLepton::MonitorSingleLepton.fill(), SiPixelClusterModule.fill(), HLTOfflineDQMTopDiLepton::MonitorDiLepton.fill(), FWHFTowerProxyBuilderBase.fillCaloData(), FWHGTowerProxyBuilderBase.fillCaloData(), sistrip::FEDBufferPayloadCreator.fillClusterData(), FWECALCaloDataDetailViewBuilder.fillData(), edm::IndexIntoFile.fillEventNumbersOrEntries(), DaqFakeReader.fillFEDs(), DaqFakeReader.fillGTPFED(), QcdUeDQM.fillHltBits(), QcdLowPtDQM.fillHltBits(), EcalElectronicsMapper.fillMaps(), edm::Schedule.fillModuleAndConsumesInfo(), HGCalTriggerGeometryHexImp2.fillNeighborMaps(), SiPixelUtility.fillPaveText(), FastTimerServiceClient.fillPlotsVsLumi(), edm::IndexIntoFile.fillRunOrLumiIndexes(), DetIdAssociator.fillSet(), SiStripFedZeroSuppression.fillThresholds_(), TriggerSummaryProducerAOD.fillTriggerObjectCollections(), edm::SystemTimeKeeper.fillTriggerTimingReport(), TrackingNtuple.fillVertices(), edm::PtrVector< T >.fillView(), cond::payloadInspector::Histogram1D< PayloadType >.fillWithBinAndValue(), PFFilter.filter(), PFMETFilter.filter(), CSCDigiValidator.filter(), FilterOR.FilterOR(), HcalSiPMHitResponse.finalizeHits(), EcalTimeMapDigitizer.finalizeHits(), pat::GenericOverlapFinder< Distance >.find(), SETSeedFinder.findAllValidSets(), GctFormatTranslateMCLegacy.findBx0OffsetInCollection(), L1GtVhdlWriterCore.findObjectType(), CastorCtdcPacker.findSamples(), CastorPacker.findSamples(), HcalPacker.findSamples(), EcalTBReadout.findTTlist(), RandArrayFunction.FireArray(), CombinedSVComputer.flipIterate(), l1t::AMCDumpToRaw.formatRaw(), l1t::MP7BufferDumpToRaw.formatRaw(), FsmwClusterizer1DNameSpace.fsmw(), gen::Py8PtGun.generatePartonsAndHadronize(), gen::Py8JetGun.generatePartonsAndHadronize(), gen::Py8EGun.generatePartonsAndHadronize(), DTKeyedConfigCache.get(), FWEventItem.get(), pos::PixelConfigFile.get(), LutXml.get_checksum(), edm::GlobalSchedule.getAllModuleDescriptions(), edm::Schedule.getAllModuleDescriptions(), edm::StreamSchedule.getAllModuleDescriptions(), RPCSimSetUp.getAsymmetryForCls(), DTMuonMillepede.getbcsMatrix(), amc::BlockHeader.getBlocks(), l1t::MP7BufferDumpToRaw.getBlocks(), DTMuonMillepede.getbsurveyMatrix(), ComponentFactoryByName< B >.getBuilder(), dqmstorepb::ROOTFilePB_Histo.GetCachedSize(), dqmstorepb::ROOTFilePB.GetCachedSize(), DTMuonMillepede.getCcsMatrix(), DCCDataUnpacker.getCCUValue(), hcalCalib.GetCoefFromMtrxInvOfAve(), CSCComparatorDigiFitter.getComparatorDigiCoordinates(), HcalLutManager.getCompressionLutXmlFromAsciiMaster(), HcalLutManager.getCompressionLutXmlFromCoder(), HBHERecalibration.getCorr(), DTMuonMillepede.getCsurveyMatrix(), EDMtoMEConverter::Tokens< T >.getData(), pat::PATIsolatedTrackProducer.getDeDx(), FWCompactVerticalLayout.GetDefaultSize(), RPCSimSetUp.getEff(), JetMatchingTools.getGenParticle(), HcalQIEManager.getHfQieTable(), LumiSummaryRunHeader.getHLTIndex(), WatcherStreamFileReader.getInputFile(), CSCStripDigi.getL1APhase(), LumiSummaryRunHeader.getL1Index(), PhysicsTools::MLP.getLayout(), HcalLutManager.getLinearizationLutXmlFromAsciiMasterEmap(), HcalLutManager.getLinearizationLutXmlFromCoder(), HcalLutManager.getLinearizationLutXmlFromCoderEmap(), HcalLutManager.getLutXmlFromAsciiMaster(), HcalLutManager.getMasks(), JetPartonMatching.getMatchForParton(), npstat::BoxND< Numeric >.getMidpoint(), edm::Principal.getModifiableProductResolver(), L1TriggerScalerHandler.getNewObjects(), RunInfoHandler.getNewObjects(), RunSummaryHandler.getNewObjects(), FillInfoPopConSourceHandler.getNewObjects(), popcon::DQMReferenceHistogramRootFileSourceHandler.getNewObjects(), popcon::DQMSummarySourceHandler.getNewObjects(), popcon::DQMXMLFileSourceHandler.getNewObjects(), RPCDBPerformanceHandler.getNewObjects(), RPCDBHandler.getNewObjects(), SiStripDQMPopConSourceHandler< T >.getNewObjects(), popcon::SiStripPopConConfigDbObjHandler< T >.getNewObjects(), popcon::RPCEMapSourceHandler.getNewObjects(), popcon::SiStripPopConHandlerUnitTest< T >.getNewObjects(), popcon::SiStripPopConHandlerUnitTestGain< T >.getNewObjects(), popcon::SiStripPopConHandlerUnitTestNoise< T >.getNewObjects(), popcon::EcalDAQHandler.getNewObjects(), popcon::EcalTPGLutIdMapHandler.getNewObjects(), popcon::EcalTPGLinConstHandler.getNewObjects(), popcon::EcalTPGPhysicsConstHandler.getNewObjects(), popcon::EcalTPGWeightIdMapHandler.getNewObjects(), popcon::EcalTPGFineGrainEBIdMapHandler.getNewObjects(), popcon::EcalTPGFineGrainTowerEEHandler.getNewObjects(), popcon::EcalTPGFineGrainEBGroupHandler.getNewObjects(), popcon::EcalTPGWeightGroupHandler.getNewObjects(), popcon::EcalTPGFineGrainStripEEHandler.getNewObjects(), popcon::EcalTPGPedestalsHandler.getNewObjects(), popcon::EcalTPGSlidingWindowHandler.getNewObjects(), popcon::EcalTPGLutGroupHandler.getNewObjects(), popcon::EcalTPGSpikeThresholdHandler.getNewObjects(), popcon::EcalADCToGeVHandler.getNewObjects(), popcon::EcalIntercalibHandler.getNewObjects(), popcon::EcalDCSHandler.getNewObjects(), popcon::PopConBTransitionSourceHandler< T >.getNewObjects(), PVFitter.getNPVsperBX(), pos::PixelConfigFile.getPath(), pat::PackedTriggerPrescales.getPrescaleForIndex(), BeamFitter.getPVvectorSize(), HcalQIEManager.getQIETableFromFile(), hgcal::RecHitTools.getRadiusToSide(), edm::Event.getRefBeforePut(), EVTColContainer.getSize(), JetPartonMatching.getSumDeltaE(), JetPartonMatching.getSumDeltaR(), magfieldparam::rz_poly.GetSVal(), magfieldparam::rz_poly.GetVVal(), EcalTrivialConditionRetriever.getWeightsFromConfiguration(), HcalLutManager.getZdcLutXml(), edm::RootPrimaryFileSequence.goToEvent(), XrdAdaptor::RequestManager.handle(), dEdxHitAnalyzer.harmonic2(), reco::HcalNoiseRBXArray.HcalNoiseRBXArray(), amc::Header.Header(), PixelQuadrupletGenerator.hitQuadruplets(), MultiHitGeneratorFromChi2.hitSets(), PixelTripletNoTipGenerator.hitTriplets(), PixelTripletLowPtGenerator.hitTriplets(), PixelTripletLargeTipGenerator.hitTriplets(), PixelTripletHLTGenerator.hitTriplets(), HLTPMDocaFilter.hltFilter(), HLTJetSortedVBFFilter< T >.hltFilter(), HLTL1TSeed.HLTL1TSeed(), HLTLevel1GTSeed.HLTLevel1GTSeed(), pat::TriggerEvent.indexAlgorithm(), pat::TriggerEvent.indexCondition(), pat::TriggerEvent.indexFilter(), HFShower.indexFinder(), HDShower.indexFinder(), pat::TriggerEvent.indexPath(), MuDetRing.init(), edm::BranchDescription.initBranchName(), CAHitTripletGenerator.initEvent(), CAHitQuadrupletGenerator.initEvent(), Combinatorics.initial_permutation(), HBHERecalibration.initialize(), PerformancePayloadFromBinnedTFormula.initialize(), MeasurementTrackerImpl.initPhase2OTMeasurementConditionSet(), MeasurementTrackerImpl.initPxMeasurementConditionSet(), MeasurementTrackerImpl.initStMeasurementConditionSet(), edm::helper::Filler< Association< C > >.insert(), reco::TaggingVariableList.insert(), DTGeometryParsFromDD.insertChamber(), edm::RootTree.insertEntryForIndex(), DTGeometryParsFromDD.insertLayer(), DTGeometryParsFromDD.insertSuperLayer(), npstat::ArrayRange.isCompatible(), npstat::BoxND< Numeric >.isInside(), npstat::BoxND< Numeric >.isInsideLower(), npstat::BoxND< Numeric >.isInsideUpper(), npstat::BoxND< Numeric >.isInsideWithBounds(), edm::RefToBaseVector< reco::GsfElectronCore >.isInvalid(), MuonGeometryArrange.isMother(), RPCLogCone.isPlaneFired(), popcon::SiStripPopConHandlerUnitTest< T >.isTransferNeeded(), popcon::SiStripPopConHandlerUnitTestNoise< T >.isTransferNeeded(), popcon::SiStripPopConHandlerUnitTestGain< T >.isTransferNeeded(), TtFullHadSignalSel.jet_etaetaMoment(), TtFullHadSignalSel.jet_etaphiMoment(), TtFullHadSignalSel.jet_phiphiMoment(), join(), LaserHitPairGenerator.LaserHitPairGenerator(), FWCompactVerticalLayout.Layout(), l1t::Stage2Layer2TauAlgorithmFirmwareImp1.loadCalibrationLuts(), CalorimetryManager.loadMuonSimTracks(), l1t::L1TGlobalUtil.loadPrescalesAndMasks(), StripCPEfromTemplate.localParameters(), LookInStream_Read2(), LookToRead_Look_Exact(), LookToRead_Read(), npstat::ArrayRange.lowerLimits(), main(), FittedEntriesManager.MakeHistos(), RPCFakeCalibration.makeNoise(), jsoncollector::DataPoint.makeStreamLumiMap(), Pythia8::PowhegHooksBB4L.match_decay(), reco::PFBlock.matrix2vector(), reco::PFDisplacedVertexCandidate.matrix2vector(), PrimitiveSelection.merge(), FinalTreeBuilder.momentumPart(), npstat::BoxND< Numeric >.moveToOrigin(), InputFile.moveToPreviousChunk(), MyFree(), DTBtiChip.nCellHit(), ntupleDataFormat.TrackingVertex.nDaughterTrackingParticles(), StMeasurementDetSet.nDet(), PxMeasurementDetSet.nDet(), Phase2OTMeasurementDetSet.nDet(), FWEveViewManager.newItem(), Combinatorics.next_permutation(), cscdqm::Detector.NextAddressBoxByPartition(), ntupleDataFormat.SimHit.nRecHits(), MuonSeedCleaner.NRecHitsFromSegment(), DTRPCBxCorrection.nRPCHits(), ntupleDataFormat._HitObject.nseeds(), ntupleDataFormat.GluedHit.nseeds(), ntupleDataFormat.TrackingParticle.nSimHits(), ntupleDataFormat.TrackingVertex.nSourceTrackingParticles(), ntupleDataFormat._HitObject.ntracks(), ntupleDataFormat.Vertex.nTracks(), edm::AssociationMap< edm::OneToMany< reco::BasicJetCollection, reco::TrackCollection > >.numberOfAssociations(), edm.numEntries(), edm::storage::StatisticsSenderService.openingFile(), edm::StreamerInputFile.openStreamerFile(), CSCThrTurnOnFcn.operator()(), npstat::BoxND< Numeric >.operator*=(), npstat::BoxND< Numeric >.operator+=(), npstat::BoxND< Numeric >.operator-=(), npstat::BoxND< Numeric >.operator/=(), npstat::ArrayRange.operator<(), operator<<(), edmNew::dstvdetails::DetSetVectorTrans::Item.operator=(), cond::SmallWORMDict.operator[](), npstat::BoxND< Numeric >.overlapFraction(), npstat::BoxND< Numeric >.overlapVolume(), l1t::stage2::BMTFPackerOutput.pack(), amc13::Packet.Packet(), l1t::stage2::RegionalMuonGMTPacker.packTF(), JetResolution.parameter(), AlpgenHeader.parameterName(), RPCLBLinkNameParser.parse(), l1t::TriggerMenuParser.parseCorrelation(), L1GtTriggerMenuXmlParser.parseCorrelation(), l1t::TriggerMenuParser.parseCorrelationWithOverlapRemoval(), MuonGeometryArrange.passChosen(), Phase2OTMeasurementConditionSet.Phase2OTMeasurementConditionSet(), PhotonAnalyzer.phiNormalization(), edm::DataMixingSiPixelMCDigiWorker::PixelEfficiencies.PixelEfficiencies(), SiPixelDigitizerAlgorithm::PixelEfficiencies.PixelEfficiencies(), pos::PixelFEDCard.PixelFEDCard(), PixelSLinkDataInputSource.PixelSLinkDataInputSource(), PlotOccupancyMap(), PlotOccupancyMapGeneric(), PlotOccupancyMapPhase1(), PlotOccupancyMapPhase2(), PlotOnTrackOccupancy(), PlotOnTrackOccupancyGeneric(), PlotOnTrackOccupancyPhase1(), PlotOnTrackOccupancyPhase2(), PlotTrackerXsect(), edm::PoolSource.PoolSource(), lhef.pop(), edm::SortedCollection< EcalRecHit >.pop_back(), MODCCSHFDat.populateClob(), IODConfig.populateClob(), edm::service::StallMonitor.postBeginJob(), DependencyGraph.preBeginJob(), ProcessCallGraph.preBeginJob(), File.prefetch(), TrackerOfflineValidation.prepareSummaryHists(), BlockFormatter.print(), Combinatorics.Print(), PedsOnlyAnalysis.print(), L1GtPrescaleFactors.print(), NoiseAnalysis.print(), PedestalsAnalysis.print(), PedsFullNoiseAnalysis.print(), L1GtBoard.print(), edm::ParameterWildcardBase.print_(), edm::ParameterDescriptionBase.print_(), DQMStore.print_trace(), RctRawToDigi.printAll(), edm.printBranchNames(), reco::CaloCluster.printHitAndFraction(), process(), PrimitiveSelection.process(), SectorProcessor.process(), PixelClusterShapeExtractor.processPixelRecHits(), processTrig(), RPCTwinMuxRawToDigi.processTwinMux(), reco::modules::CaloRecHitCandidateProducer< HitCollection >.produce(), SETPatternRecognition.produce(), ShallowRechitClustersProducer.produce(), ShallowTrackClustersProducer.produce(), ShallowSimhitClustersProducer.produce(), AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >.produce(), AssociationMapOneToOne2Association< CKey, CVal >.produce(), RawDataCollectorByLabel.produce(), AssociationVector2ValueMap< KeyRefProd, CVal >.produce(), ShallowSimTracksProducer.produce(), HcalCalibFEDSelector.produce(), EcalRecHitsMerger.produce(), ESRecHitsMerger.produce(), ElectronSeedTrackRefFix.produce(), HLTTauRefCombiner.produce(), EcalBasicClusterLocalContCorrectionsESProducer.produce(), reco::modulesNew::MCTruthCompositeMatcher.produce(), StripCompactDigiSimLinksProducer.produce(), reco::modulesNew::Matcher< C1, C2, S, D >.produce(), RPCTwinMuxDigiToRaw.produce(), SubdetFEDSelector.produce(), SiPixelDigiToRaw.produce(), EcalGlobalShowerContainmentCorrectionsVsEtaESProducer.produce(), InputGenJetsParticleSelector.produce(), SiStripRegFEDSelector.produce(), EcalShowerContainmentCorrectionsESProducer.produce(), ZToLLEdmNtupleDumper.produce(), ECALRegFEDSelector.produce(), TestBXVectorRefProducer.produce(), l1t::L1ComparatorRun2.produce(), AlCaHcalNoiseProducer.produce(), TrackMultiSelector.produce(), PF_PU_FirstVertexTracks.produce(), omtf::OmtfPacker.produce(), l1t::L1TDigiToRaw.produce(), CastorTowerProducer.produce(), PFCand_NoPU_WithAM.produce(), l1t::AMC13DumpToRaw.produce(), reco::PhysObjectMatcher< C1, C2, S, D, Q >.produce(), BTagProbabilityToDiscriminator.produce(), ZeeCalibration.produce(), GenParticleProducer.produce(), CandidateProducer< TColl, CColl, Selector, Conv, Creator, Init >.produce(), SelectedElectronFEDListProducer< TEle, TCand >.produce(), SoftLepton.produce(), Vispa.Views.PropertyView.TextEditWithButtonProperty.properyHeight(), edm::DataMixingEMDigiWorker.putEM(), edm::DataMixingHcalDigiWorker.putHcal(), edm::LuminosityBlock.putImpl(), edm::Run.putImpl(), edm::Event.putImpl(), DAFTrackProducer.putInEvtTrajAnn(), PxMeasurementConditionSet.PxMeasurementConditionSet(), reco::TrackBase.qualityByName(), npstat::ArrayRange.rangeLength(), npstat::ArrayRange.rangeSize(), cond::FileReader.read(), CalibratedHistogramXML.read(), NuclearInteractionSimulator.read(), fastsim::NuclearInteraction.read(), HcalLutManager.read_lmap(), lhef::StorageInputStream.readBytes(), MODCCSHFDat.readClob(), IODConfig.readClob(), edm::EventProcessor.readFile(), reco::details.readGzipFile(), pat::LeptonUpdater< T >.readMiniIsoParams(), edm::RootEmbeddedFileSequence.readOneRandom(), readRemote(), MuonAlignmentFromReference.readTmpFiles(), DTCtcp.Receive(), CSCEfficiency.recHitSegment_Efficiencies(), reco::tau::RecoTauConstructor.reserve(), CaloSlaveSD.ReserveMemory(), HLTrigReport.reset(), L1GctProcessor::Pipeline< T >.resize(), JetResolution.resolution(), InputFile.rewindChunk(), RPCHitCleaner.RPCHitCleaner(), RPCtoDTTranslator.RPCtoDTTranslator(), edm::ProductSelectorRules::Rule.Rule(), RPCHalfSorter.run(), CSCMotherboardME21GEM.run(), NuclearInteractionFinder.run(), DTTracoChip.run(), PVFitter.runBXFitter(), ConvBremPFTrackFinder.runConvBremFinder(), RPCFinalSorter.runFinalSorter(), ecaldqm::ClusterTask.runOnBasicClusters(), ecaldqm::SelectiveReadoutTask.runOnDigis(), ecaldqm::SelectiveReadoutTask.runOnSource(), ecaldqm::ClusterTask.runOnSuperClusters(), RPCTriggerBoard.runTBGB(), NuclearInteractionSimulator.save(), fastsim::NuclearInteraction.save(), FWCaloRecHitDigitSetProxyBuilder.scaleProduct(), edm::Schedule.Schedule(), searchABCDstring(), CSCSegAlgoTC.segmentSort(), RawDataFEDSelector.select(), DQMImplNet< DQMNet::Object >.sendObjectListToPeer(), SeqInStream_Read2(), set_children_visibility(), EPOS::EPOS_Wrapper.set_max_number_entries(), EPOS::EPOS_Wrapper.set_sizeof_int(), EPOS::EPOS_Wrapper.set_sizeof_real(), edm::BranchDescription.setBasketSize(), dqmstorepb::ROOTFilePB.SetCachedSize(), hcaltb::HcalTBQADCUnpacker.setCalib(), hcaltb::HcalTBTDCUnpacker.setCalib(), reco::PFCandidateElectronExtra.setClusterEnergies(), reco::PFCandidateEGammaExtra.setClusterEnergies(), KDTreeLinkerBase.setCristalPhiEtaMaxSize(), KDTreeLinkerBase.setCristalXYMaxSize(), reco::IsolatedTauTagInfo.setDiscriminator(), PFAlgo.setElectronExtraRef(), StMeasurementDetSet.setEmpty(), HBHEStatusBitSetter.SetFlagsFromDigi(), SiStripDQMPopConSourceHandler< T >.setForTransfer(), popcon::SiStripPopConConfigDbObjHandler< T >.setForTransfer(), popcon::SiStripPopConHandlerUnitTest< T >.setForTransfer(), popcon::SiStripPopConHandlerUnitTestNoise< T >.setForTransfer(), popcon::SiStripPopConHandlerUnitTestGain< T >.setForTransfer(), RPCSeedLayerFinder.setInput(), reco::tau::RecoTauConstructor.setleadPFCand(), PFAlgo.setPhotonExtraRef(), MonMemTTConsistencyDat.setProblemsSize(), MonTTConsistencyDat.setProblemsSize(), HcalTBSource.setRunAndEventInfo(), CSCALCTTrailer2006.setSize(), edm::storage::StatisticsSenderService.setSize(), CSCALCTTrailer2007.setSize(), AlignmentParameterSelector.setSpecials(), StorageMaker::AuxSettings.setTimeout(), egHLT::OffHelper.setTrigInfo(), HBHERecalibration.setup(), MatchCandidateBenchmark.setup(), npstat::ArrayRange.shape(), npstat::BoxND< Numeric >.shift(), OpticalObject.shortName(), edm::RootOutputFile.shouldWeCloseFile(), OrderedMultiHits.size(), OrderedHitPairs.size(), OrderedHitSeeds.size(), OrderedHitTriplets.size(), OrderedLaserHitPairs.size(), TtFullHadSignalSel.SM_Bjet(), edm::DataFrameContainer.sort(), sort_by_row_in_groups(), edm::IndexIntoFile::SortedRunOrLumiItr.SortedRunOrLumiItr(), L1TMuonProducer.splitAndConvertMuons(), TrackClusterSplitter.splitCluster(), CombinationGenerator< T >.splitInTwoCollections(), TtFullHadSignalSel.SSVHE_Bjet(), TtFullHadSignalSel.SSVHP_Bjet(), PhysicsTools.stdStringPrintf(), PhysicsTools.stdStringVPrintf(), StMeasurementConditionSet.StMeasurementConditionSet(), L1MuGMTLUT::PortDecoder.str(), StripCPE.StripCPE(), npstat::ArrayRange.stripOuterLayer(), PTStatistics.sum(), TtFullHadSignalSel.sumDR3JetMin(), TtFullHadSignalSel.sumDR3JetMinMass(), PTStatistics.sumR(), super_sort_matrix_rows(), SiStripFedZeroSuppression.suppress(), FWSecondarySelectableSelector.syncSelection(), Cylinder.tangentPlane(), tauImpactParameter::TauA1NuConstrainedFitter.TauA1NuConstrainedFitter(), TtFullHadSignalSel.TCHE_Bjet(), TtFullHadSignalSel.TCHP_Bjet(), hcalCalib.Terminate(), LutXml.test_access(), HcalLutManager.test_emap(), HcalLutManager.test_xml_access(), PTStatistics.toString(), edm::ParameterSet.toStringImp(), l1t::CaloTools.towerEtaSize(), jsoncollector::DataPoint.trackDummy(), reco::Conversion.tracksSigned_d0(), amc::Trailer.Trailer(), CastorPedestalAnalysis.Trendings(), HcalPedestalAnalysis.Trendings(), DTBtiChip.trigger(), DTTracoChip.trigger(), DTBtiChip.triggerData(), DTTracoChip.triggerData(), pat::PATObject< ObjectType >.triggerObjectMatch(), HLTScalersClient::CountLSFifo_t.trim_(), edmplugin::PluginCapabilities.tryToFind(), TSFit.TSFit(), InvariantMassFromVertex.uncertainty(), RctRawToDigi.unpackCTP7(), PTStatistics.update(), pathelpers::Record.update(), HcaluLUTTPGCoder.update(), GsfMaterialEffectsUpdator.updateState(), npstat::ArrayRange.upperLimits(), PiecewiseScalingPolynomial.validate(), CombinedKinematicConstraint.value(), npstat::BoxND< Numeric >.volume(), HEPTopTaggerV2Structure.W2(), InputFile.waitForChunk(), MuonSeedCreator.weightedPt(), CalibratedHistogramXML.write(), amc13::Packet.write(), npstat::BoxND< Numeric >.write(), GctFormatTranslateMCLegacy.writeAllRctCaloRegionBlock(), GctFormatTranslateMCLegacy.writeRctEmCandBlocks(), MuonAlignmentFromReference.writeTmpFiles(), lumi::TRGScalers2DB.writeTrgDataToSchema2(), IOOutput.writev(), IOInput.xreadv(), IOOutput.xwritev(), AlignmentExtendedCorrelationsStore.~AlignmentExtendedCorrelationsStore(), BPHRecoBuilder::BPHGenericCollection.~BPHGenericCollection(), hcaldqm::ContainerXXX< int >.~ContainerXXX(), EcalBaseNumber.~EcalBaseNumber(), FWCollectionSummaryTableManager.~FWCollectionSummaryTableManager(), HitQuadrupletGeneratorFromLayerPairForPhotonConversion.~HitQuadrupletGeneratorFromLayerPairForPhotonConversion(), cond::persistency::IIOVTable.~IIOVTable(), MuScleFit.~MuScleFit(), PixelCPEGeneric.~PixelCPEGeneric(), cond::persistency::IOV::Table.~Table(), and XrdAdaptor::XrdReadStatistics.~XrdReadStatistics().

findQualityFiles.total_numevents = 0

Definition at line 404 of file findQualityFiles.py.

findQualityFiles.type

Definition at line 53 of file findQualityFiles.py.

findQualityFiles.uniq_list_of_runs = list(set(list_of_runs))

Definition at line 419 of file findQualityFiles.py.

findQualityFiles.unique_files_events = list(set(files_events))

Definition at line 430 of file findQualityFiles.py.

string findQualityFiles.usage = '%prog [options]\n\n'

To parse commandline args.

Definition at line 46 of file findQualityFiles.py.

findQualityFiles.v = options.verbose

Definition at line 177 of file findQualityFiles.py.

Referenced by DDSpecificsHasNamedValueFilter.accept(), DDSpecificsMatchesValueFilter.accept(), DDSpecificsFilter.accept_impl(), cms::PileupVertexAccumulator.accumulate(), cms::Phase2TrackerDigitizer.accumulate_local(), RPCLinkSynchroStat.add(), PythonParameterSet.addParameters(), PFTrackTransformer.addPoints(), PFTrackTransformer.addPointsAndBrems(), PythonParameterSet.addVPSet(), DDMapper< KeyType, ValueType >.all(), StandaloneTrackMonitor.analyze(), PrimaryVertexMonitor.analyze(), EwkMuLumiMonitorDQM.analyze(), TrackingRecoMaterialAnalyser.analyze(), ValidationMisalignedTracker.analyze(), TrackBuildingAnalyzer.analyze(), EwkDQM.analyze(), EfficiencyAnalyzer.analyze(), TotemRPDQMSource.analyze(), BTVHLTOfflineSource.analyze(), V0Monitor.analyze(), TrackParameterAnalyzer.analyze(), HiggsDQM.analyze(), HLTInclusiveVBFSource.analyze(), FourVectorHLT.analyze(), DQMExample_Step1.analyze(), METplusTrackMonitor.analyze(), TestOutliers.analyze(), TopMonitor.analyze(), MuonIsolationDQM.analyze(), MuonMonitor.analyze(), METMonitor.analyze(), HTMonitor.analyze(), HLTExoticaSubAnalysis.analyze(), HLTObjectsMonitor.analyze(), TrackerDpgAnalysis.analyze(), PrimaryVertexAnalyzer4PUSlimmed.analyze(), TrackingNtuple.analyze(), EcalSelectiveReadoutValidation.analyzeEB(), EcalSelectiveReadoutValidation.analyzeEE(), HGCalTBAnalyzer.analyzePassiveHits(), as3D(), mathSSE.as3D(), SensitiveDetector.AssignSD(), MagGeoBuilderFromDDD.barrelVolumes(), BaseMVAValueMapProducer< pat::Jet >.BaseMVAValueMapProducer(), FourVectorHLT.beginJob(), ExpressLumiProducer.beginLuminosityBlockProduce(), JME::bimap< Binning, std::string >.bimap(), npstat::HistoND< Numeric, Axis >.binVolume(), cscdqm::Collection.book(), BTVHLTOfflineSource.bookHistograms(), HLTInclusiveVBFSource.bookHistograms(), JetMETHLTOfflineSource.bookHistograms(), DQMPFCandidateAnalyzer.bookHistograms(), METAnalyzer.bookMonitorElement(), PileupJetIdAlgo.bookReader(), FWSecVertexProxyBuilder.build(), FWSecVertexCandidateProxyBuilder.build(), MagGeoBuilderFromDDD.build(), FWVertexCandidateProxyBuilder.build(), FWVertexProxyBuilder.build(), SeedForPhotonConversionFromQuadruplets.buildSeedBool(), DAFTrackProducerAlgorithm.buildTrack(), TrackProducerAlgorithm< reco::Track >.buildTrack(), TrackProducerAlgorithm< reco::GsfTrack >.buildTrack(), MuonTrackLoader.buildTrackExtra(), HBHEHitMap.calcEcalNeighborTowers_(), HBHEHitMap.calcEcalSameTowers_(), HBHEHitMap.calcHcalNeighborTowers_(), HBHEHitMap.calcHcalSameTowers_(), EnergyResolutionVsLumi.calcLightCollectionEfficiencyWeighted(), EnergyResolutionVsLumi.calcLightCollectionEfficiencyWeighted2(), EnergyResolutionVsLumi.calcmuTot(), emtf::Node.calcOptimumSplit(), HLTEcalResonanceFilter.calcPaircluster(), HBHEHitMap.calcTracksNeighborTowers_(), HBHEHitMap.calcTracksSameTowers_(), PhysicsTools::LeastSquares.calculate(), FWInvMassDialog.Calculate(), AngleCalculation.calculate_angles(), PtAssignmentEngine2016.calculate_pt_xml(), VFATFrame.calculateCRC(), PrimaryVertexAnalyzer4PUSlimmed.calculatePurityAndFillHistograms(), FWCollectionSummaryTableManager.cellRenderer(), CmsShowCommonPopup.changeSelectionColorSet(), TangentCircle.charge(), CaloCellGeometry.checkParmPtr(), FWGeometryTableView.checkRegionOfInterest(), FourPointPlaneBounds.checkSide(), FWGeometryTableViewBase.chosenItem(), gen::PomwigHadronizer.classname(), SherpaHadronizer.classname(), Herwig6Hadronizer.classname(), PixelTrackCleanerBySharedHits.cleanTracks(), LayerHitMapCache::SimpleCache.clear(), helper::CollectionStoreManager< OutputCollection, ClonePolicy >.cloneAndStore(), TkAccumulatingSensitiveDetector.closeHit(), G4SimEvent.collisionPoint(), JacobianCurvilinearToLocal.compute(), magfieldparam::BCycl< float >.compute(), TEveEllipsoidProjected.ComputeBBox(), tauImpactParameter::TrackHelixVertexFitter.computedxydz(), converter::SuperClusterToCandidate.convert(), GlobalVariablesTableProducer::Max< ColType, ValType >.convert(), GlobalVariablesTableProducer::Min< ColType, ValType >.convert(), GlobalVariablesTableProducer::ScalarPtSum< ColType, ValType >.convert(), GlobalVariablesTableProducer::MassSum< ColType, ValType >.convert(), GlobalVariablesTableProducer::PtVectorSum< ColType, ValType >.convert(), GenParticleProducer.convertParticle(), TwoBodyDecayVirtualMeasurement.convertXYZPoint(), CSCCondSegFit.correctTheCovX(), EcalClusterToolsT< noZS >.covariances(), tauImpactParameter::TauA1NuConstrainedFitter.CovertParToObjects(), l1t::Stage2Layer1FirmwareFactory.create(), l1t::Stage2Layer2FirmwareFactory.create(), edm::one::impl::SharedResourcesUser< T >.createAcquirer(), Bcm1fSD.createHit(), PltSD.createHit(), TkAccumulatingSensitiveDetector.createHit(), FWPSetTableManager.createScalarString(), TGeoMgrFromDdd.createVolume(), TGeoFromDddService.createVolume(), edm::soa::Table< Args >::CtrFillerFromContainers.ctrFiller(), DDExpandedViewDump(), DDSpecifics.DDSpecifics(), gen::EvtGenInterfaceBase.decay(), gen::Cascade2Hadronizer.declareSpecialSettings(), gen::HijingHadronizer.declareSpecialSettings(), gen::AMPTHadronizer.declareSpecialSettings(), gen::HydjetHadronizer.declareSpecialSettings(), gen::ReggeGribovPartonMCHadronizer.declareSpecialSettings(), cscdqm::Detector.Detector(), RPTopology.DetStripNo(), MSLayer.distance2(), MuonResidualsFitter.dofit(), TEveEllipsoidProjectedGL.drawArch(), SiStripDetVOffTrendPlotter.dumpCSV(), dumpLutDiff(), EcalFenixStrip.EcalFenixStrip(), EcalSimPhotonMCTruth.EcalSimPhotonMCTruth(), editNumericParameter(), edm.edmModuleTypeEnum(), DependencyGraph.edmModuleTypeEnum(), edm.edmodule_mightGet_config(), MagGeoBuilderFromDDD.endcapVolumes(), edm::TRandomAdaptor.engineName(), reco::Vertex.error4D(), edmtest::ESTestDataA.ESTestDataA(), edmtest::ESTestDataB.ESTestDataB(), edmtest::ESTestDataC.ESTestDataC(), edmtest::ESTestDataD.ESTestDataD(), edmtest::ESTestDataE.ESTestDataE(), edmtest::ESTestDataF.ESTestDataF(), edmtest::ESTestDataG.ESTestDataG(), edmtest::ESTestDataH.ESTestDataH(), edmtest::ESTestDataI.ESTestDataI(), edmtest::ESTestDataJ.ESTestDataJ(), edmtest::ESTestDataK.ESTestDataK(), edmtest::ESTestDataZ.ESTestDataZ(), tauImpactParameter::MultiProngTauSolver.estimateNu(), hitfit::Vector_Resolution.eta_sigma(), pat::ObjectResolutionCalc.etaBin(), VarSplitter.eval(), VariablePower.eval(), PhysicsTools::MVAComputer.evalInternal(), EventMsgBuilder.EventMsgBuilder(), edm::ExceptionToActionTable.ExceptionToActionTable(), VVIObjFDetails.expint(), VVIObjDetails.expint(), sistripvvi::VVIObjDetails.expint(), ExpressionVariable< Object, label >.ExpressionVariable(), MagGeometry.fieldInTesla(), XHistogram.fill(), reco::GsfTrack.fill(), HcalTB02Histo.fillAllTime(), core.autovars.NTupleObject.fillBranches(), core.autovars.NTupleCollection.fillBranchesScalar(), core.autovars.NTupleCollection.fillBranchesVector(), reco.fillCovariance(), FWECALCaloDataDetailViewBuilder.fillData(), CSCSegmentValidation.fillEfficiencyPlots(), LHETablesProducer.fillLHEObjectTable(), JetMETHLTOfflineSource.fillMEforEffAllTrigger(), JetMETHLTOfflineSource.fillMEforMonAllTrigger(), JetMETHLTOfflineSource.fillMEforMonTriggerSummary(), JetMETHLTOfflineSource.fillMEforTriggerNTfired(), TrackingNtuple.fillTrackingParticles(), TrackingNtuple.fillTrackingVertices(), HcalTB02Histo.fillTransProf(), find(), tkMSParameterization::Elems.find(), MP7PacketReader.findPackets(), ThirdHitPredictionFromInvParabola.findPointAtCurve(), DivisiveVertexFinder.findVertexes(), DivisiveVertexFinder.findVertexesAlt(), MagGeometry.findVolume1(), CSCCondSegFit.fit(), fitf(), CSCSegFit.fitlsq(), MuonSegFit.fitlsq(), GEMCSCSegFit.fitlsq(), QIE11DataFrame.flags(), QIE10DataFrame.flags(), FSimVertex.FSimVertex(), FWGeoMaterialValidator.FWGeoMaterialValidator(), GammaFunctionGenerator.gammaFrac(), GaussianTailNoiseGenerator.generate_gaussian_tail(), PVValHelper.generateBins(), BPHDaughters.get(), edm::AssociationMap< edm::OneToMany< reco::BasicJetCollection, reco::TrackCollection > >.get(), HcalRecAlgosPrivate::AuxEnergyGetter< T, bool >.getAuxEnergy(), HcalRecAlgosPrivate::AuxRecHitGetter< T, bool >.getAuxRecHit(), ROOT::Math::Transform3DPJ.GetComponents(), edm::SingleConsumerQ.getConsumerBuffer(), LMFDat.getData(), CandMatcher< C1, C2 >.getDaughters(), DDG4Builder.getDouble(), sim::Field.GetFieldValue(), fwlite::BranchMapReader.getFileVersion(), ClusterShapeTrackFilter.getGlobalDirs(), HFShower.getHits(), TShapeAnalysis.getInitVals(), gen::Pythia6Hadronizer.getJetMatching(), hcaldqm::quantity::FEDQuantity.getLabels(), hcaldqm::quantity::EventType.getLabels(), CrossingPtBasedLinearizationPointFinder.getLinearizationPoint(), HFCherenkov.getMom(), NuclearTrackCorrector.getNewTrackExtra(), LMFCorrCoefDatComponent.getParameterErrors(), LMFCorrCoefDatComponent.getParameters(), PythonParameterSet.getParameters(), TotemRPLocalTrack.getParameterVector(), edm::pdtentry.getPdtEntryVector(), edm::SingleConsumerQ.getProducerBuffer(), HcalRecAlgosPrivate::RawEnergyGetter< T, bool >.getRawEnergy(), PrimaryVertexAnalyzer4PUSlimmed.getRecoPVs(), edm::helper::MatcherGetRef< View< T > >.getRef(), PrimaryVertexAnalyzer4PUSlimmed.getSimPVs(), emtf::Tree.getSplitValues(), emtf::Tree.getSplitValuesRecursive(), edm::TRandomAdaptor.getState(), RunSummary.getSubdtIn(), LMFLaserPulseDat.getTableName(), LMFPrimDat.getTableName(), LMFPnPrimDat.getTableName(), LMFLmrSubIOV.getTimes(), DTTMax.getTMax(), TShapeAnalysis.getVals(), tauImpactParameter::ParticleBuilder.getVertex(), PythonParameterSet.getVPSet(), gen::Hydjet2Hadronizer.GetWeakDecayLimit(), HFCherenkov.getWL(), HFCherenkov.getWLAtten(), HFCherenkov.getWLHEM(), HFCherenkov.getWLIni(), HFCherenkov.getWLQEff(), HFCherenkov.getWLTrap(), FWGLEventHandler.HandleButton(), FWGeometryTableViewBase::FWViewCombo.HandleButton(), edm::Hash< I >.Hash(), TrackInformation.hasHits(), HcalTBEventPosition.hbheTablePhi(), ConversionFastHelix.helixStateAtVertex(), FastHelix.helixStateAtVertex(), histoFill(), PixelQuadrupletGenerator.hitQuadruplets(), PixelTripletLargeTipGenerator.hitTriplets(), PixelTripletHLTGenerator.hitTriplets(), Phase2TrackerDigitizerAlgorithm.induce_signal(), EcalEBTrigPrimTestAlgo.init(), DTBlockedROChannelsTest::DTRobBinsMap.init(), JME::JetResolutionObject::Definition.init(), CAHitTripletGenerator.initEvent(), CAHitQuadrupletGenerator.initEvent(), SiPixelFedCablingMap.initializeRocs(), reco::TrackExtra.innerStateCovariance(), BinningPointByMap.insert(), edm::OneToValue< reco::CaloJetCollection, reco::L2TauIsolationInfo >.insert(), edm::ParentageRegistry.insertMapped(), edm::pset::Registry.insertMapped(), LinearGridInterpolator3D.interpolate(), npstat::ArrayND< Numeric, StackLen, StackDim >.interpolateLoop(), EcalTBDaqFormatter.interpretRawData(), EcalTB07DaqFormatter.interpretRawData(), TrackerDpgAnalysis.inVertex(), ThirdHitPrediction.isCompatibleWithMultipleScattering(), edm.isFinite(), TrackInformation.isGeneratedSecondary(), RPTopology.IsHit(), PerformancePayloadFromBinnedTFormula.isOk(), PerformancePayloadFromTFormula.isOk(), TrackInformation.isPrimary(), edm.iterateTrieLeaves(), reco::TrackProbabilityTagInfo.jetProbability(), hitfit::Lepjets_Event.kt(), hitfit::Gentop_Args.kt_res_str(), fftjetcms::LinInterpolatedTable1D.LinInterpolatedTable1D(), G4SimEvent.load(), PhysicsTools::LeastSquares.load(), FWGeometryTableManager.loadGeometry(), EcalClusterToolsT< noZS >.localCovariances(), edm.LoggedErrorsOnlySummary(), edm.LoggedErrorsSummary(), ls_cert_type(), EcalElectronicsMapper.makeMapFromVectors(), GlobalMuonTrackMatcher.match_Chi2(), GlobalMuonTrackMatcher.match_dist(), edm::storage::StatisticsSenderService.matchedLfn(), PerformancePayloadFromTable.matches(), PrimaryVertexAnalyzer4PUSlimmed.matchReco2SimVertices(), PrimaryVertexAnalyzer4PUSlimmed.matchSim2RecoVertices(), EcalClusterToolsT< noZS >.matrixDetId(), reco::ME0Muon.ME0Muon(), TrackMerger.merge(), LocalTrajectoryParameters.mixedFormatVector(), RKCurvilinearDistance< T, N >.momentum(), MultShiftMETcorrInputProducer.MultShiftMETcorrInputProducer(), tauImpactParameter::LagrangeMultipliersFitter.nIter(), Generator.nonBeamEvent2G4(), edm::service::MessageServicePSetValidation.noNonPSetUsage(), DDMapper< KeyType, ValueType >.noSpecifics(), FWOverlapTableManager.numberOfColumns(), FWGUIManager.open3DRegion(), FWFileEntry.openFile(), gen::EvtGenInterface.operatesOnParticles(), gen::EvtGenLHCInterface.operatesOnParticles(), DDValuePair.operator double &(), LmsModeFinder3d.operator()(), HsmModeFinder3d.operator()(), ThirdHitRZPrediction< Propagator >.operator()(), MtvClusterizer1D< T >.operator()(), PropagationDirectionChooser.operator()(), ESShape.operator()(), FsmwClusterizer1D< T >.operator()(), OutermostClusterizer1D< T >.operator()(), cond::SmallWORMDict::IterHelp.operator()(), operator*(), operator<<(), hitfit.operator<<(), math.operator<<(), operator==(), CaloTower.outerEt(), reco::TrackExtra.outerRadius(), reco::TrackExtra.outerStateCovariance(), npstat::BoxND< Numeric >.overlapVolume(), hitfit::Vector_Resolution.p_sigma(), SimpleJetCorrectionUncertainty.parameters(), HIMultiTrackSelector.ParseForestVars(), hitfit::Vector_Resolution.phi_sigma(), reco::GsfTrack.phiModeError(), PhotonMCTruth.PhotonMCTruth(), PileupJetIdAlgo.PileupJetIdAlgo(), SymmetryFit.pol2_from_pol2(), SymmetryFit.pol2_from_pol3(), FWGeometryTableViewBase.populate3DViewsFromConfig(), PerigeeLinearizedTrackState.predictedStateMomentumParameters(), emtf::Forest.prepareRandomSubsample(), TotemRPLocalTrackFitterAlgorithm.prepareReconstAlgebraData(), fireworks.prepareTrack(), edm::eventsetup::DataProxyProvider.prevalidate(), hcaldqm::electronicsmap::ElectronicsMap.print(), SiPixelPerformanceSummary.print(), EcalFenixTcpFormat.process(), PFAlgo.processBlock(), DDLVector.processElement(), FWGeoTopNodeGL.ProcessSelection(), pat::PATVertexSlimmer.produce(), CandOneToManyDeltaRMatcher.produce(), OscarProducer.produce(), pat::PATSecondaryVertexSlimmer.produce(), L2TauPixelIsoTagProducer.produce(), reco::modulesNew::Matcher< C1, C2, S, D >.produce(), reco::modules::MatcherBase< C1, C2, M >.produce(), GenParticles2HepMCConverter.produce(), OscarMTProducer.produce(), MultShiftMETcorrInputProducer.produce(), PixelVertexProducer.produce(), PFchsMETcorrInputProducer.produce(), TemplatedInclusiveVertexFinder< InputContainer, VTX >.produce(), edm::service::ThreadQueue.produce(), VertexFromTrackProducer.produce(), LHE2HepMCConverter.produce(), PrimaryVertexProducer.produce(), FastPrimaryVertexWithWeightsProducer.produce(), PFTauTransverseImpactParameters.produce(), FastPrimaryVertexProducer.produce(), reco::modules::CosmicTrackSplitter.produce(), TemplatedSecondaryVertexProducer< IPTI, VTX >.produce(), BaseMVAValueMapProducer< T >.produce(), DIPLumiProducer.produceDetail(), DIPLumiProducer.produceSummary(), tauImpactParameter::ErrorMatrixPropagator.propagateError(), CSCSegAlgoShowering.pruneFromResidual(), CSCTFPtMethods.Pt2Stn2010(), CSCTFPtMethods.Pt2Stn2011(), CSCTFPtMethods.Pt2Stn2012(), CSCTFPtMethods.Pt2Stn2012_DT(), CSCTFPtMethods.Pt3Stn2010(), CSCTFPtMethods.Pt3Stn2011(), CSCTFPtMethods.Pt3Stn2012(), CSCTFPtMethods.Pt3Stn2012_DT(), ptFast(), edm::TRandomAdaptor.put(), KfTrackProducerBase.putInEvt(), GsfTrackProducerBase.putInEvt(), TrackProducerWithSCAssociation.putInEvt(), TrackAssociatorByPositionImpl.quality(), emtf::Forest.rankVariables(), L1TriggerScalerRead.readData(), HepMCFileReader.ReadStats(), TrackClassifier.reconstructionInformation(), CosmicRegionalSeedGenerator.regions(), CandidateSeededTrackingRegionsProducer.regions(), CandidatePointSeededTrackingRegionsProducer.regions(), ElectronEnergyRegressionEvaluate.regressionUncertaintyNoTrkVar(), ElectronEnergyRegressionEvaluate.regressionUncertaintyNoTrkVarV1(), ElectronEnergyRegressionEvaluate.regressionUncertaintyWithSubClusters(), ElectronEnergyRegressionEvaluate.regressionUncertaintyWithTrkVar(), ElectronEnergyRegressionEvaluate.regressionUncertaintyWithTrkVarV1(), ElectronEnergyRegressionEvaluate.regressionUncertaintyWithTrkVarV2(), ElectronEnergyRegressionEvaluate.regressionValueNoTrkVar(), ElectronEnergyRegressionEvaluate.regressionValueNoTrkVarV1(), ElectronEnergyRegressionEvaluate.regressionValueWithSubClusters(), ElectronEnergyRegressionEvaluate.regressionValueWithTrkVar(), ElectronEnergyRegressionEvaluate.regressionValueWithTrkVarV1(), ElectronEnergyRegressionEvaluate.regressionValueWithTrkVarV2(), edm::SingleConsumerQ.releaseProducerBuffer(), PrimaryVertexAnalyzer4PUSlimmed.resetSimPVAssociation(), RawParticle.rotate(), RawParticle.rotateX(), RawParticle.rotateY(), RawParticle.rotateZ(), EcalRecHitWorkerRecover.run(), edm::service::MainThreadMLscribe.runCommand(), PileupJetIdAlgo.runMva(), PFPhotonAlgo.RunPFPhoton(), TagProbeFitter.saveDistributionsPlot(), TagProbeFitter.saveFitPlot(), emtf::Forest.saveSplitValues(), EcalClusterToolsT< noZS >.scLocalCovariances(), ElectronSeedGenerator.seedsFromRecHits(), FWViewContextMenuHandlerGL.select(), ObjectPairCollectionSelector< InputCollection, Selector, StoreContainer, RefAdder >.select(), VariableFormulaEventSelector.select(), gen::PyquenHadronizer.select(), SortCollectionSelector< InputCollection, Comparator, OutputCollection, StoreContainer, RefAdder >.select(), VariableEventSelector.select(), MuonResidualsFitter.selectPeakResiduals(), MuonResidualsFitter.selectPeakResiduals_simple(), FWGeometryTableViewBase.selectView(), CandCommonVertexFitterBase.set(), PFCandCommonVertexFitterBase.set(), L1MuGMTMatrix< T >.set(), EVTColContainer.set(), OutputFile.set_current_offset(), OutputFile.set_do_adler(), HcalTB02HistoClass.set_E5x5(), HcalTB02HistoClass.set_E5x5N(), HcalTB02HistoClass.set_E7x7(), HcalTB02HistoClass.set_E7x7N(), HcalTB02HistoClass.set_Eentry(), HcalTB02HistoClass.set_Einit(), HcalTB02HistoClass.set_eta(), HcalTB02HistoClass.set_ETot(), HcalTB02HistoClass.set_ETotN(), HcalTB02HistoClass.set_Nprim(), HcalTB02HistoClass.set_Ntimesli(), HcalTB02HistoClass.set_NUnit(), HcalTB02HistoClass.set_partType(), HcalTB02HistoClass.set_phi(), SiPixelCPEGenericErrorParm.set_version(), HcalTB02HistoClass.set_xE3x3(), HcalTB02HistoClass.set_xE3x3N(), HcalTB02HistoClass.set_xE5x5(), HcalTB02HistoClass.set_xE5x5N(), HcalTB02HistoClass.set_xEentry(), HcalTB02HistoClass.set_xETot(), HcalTB02HistoClass.set_xETotN(), HcalTB02HistoClass.set_xNUnit(), npstat::HistoND< Numeric, Axis >.setAxisLabel(), reco::BeamSpot.setBeamWidthX(), reco::BeamSpot.setBeamWidthY(), edm::IndexIntoFile::RunOrLumiIndexes.setBeginEventNumbers(), reco::BeamSpot.setbetaStar(), npstat::HistoND< Numeric, Axis >.setBin(), npstat::HistoND< Numeric, Axis >.setBinAt(), DCULVRVoltagesDat.setBuffer(), CachingVariable.setCache(), EVTColContainer.setCaloMHT(), CSCCondSegFit.setChi2(), CSCSegFit.setChi2(), MuonSegFit.setChi2(), GEMCSCSegFit.setChi2(), pat::PackedCandidate.setCovarianceVersion(), edm::CurrentModuleOnThread.setCurrentModuleOnThread(), VFATFrame.setDAQErrorFlags(), LMFDat.setData(), reco::BeamSpot.setEmittanceX(), reco::BeamSpot.setEmittanceY(), edm::IndexIntoFile::RunOrLumiIndexes.setEndEventNumbers(), edm::service::RandomNumberGeneratorService::ModuleIDToEngine.setEngineState(), edm::StreamContext.setEventID(), TotemTestHistoClass.setEVT(), DCULVRVoltagesDat.setFenix(), QIE11DataFrame.setFlags(), QIE10DataFrame.setFlags(), DCULVRVoltagesDat.setGOH(), gen::Herwig6Instance.setHerwigRandomEngine(), HcalTBEventPosition.setHFtableCoords(), edm::ProductResolverIndexHelper::Item.setIndex(), DCULVRVoltagesDat.setINH(), edm::ParameterSetEntry.setIsTracked(), edm::pathStatusExpression::NotOperator.setLeft(), edm::pathStatusExpression::BinaryOperator< T >.setLeft(), FWGeometryTableManagerBase.setLevelOffset(), npstat::HistoND< Numeric, Axis >.setLinearBin(), npstat::HistoND< Numeric, Axis >.setLinearBinAt(), edm::StreamContext.setLuminosityBlockIndex(), reco::ME0Muon.setme0segid(), edm::service::RandomNumberGeneratorService::SeedsAndName.setModuleID(), edm::ThreadSafeAddOnlyContainer< T >::Node.setNext(), TotemVFATStatus.setNumberOfClusters(), VFATFrame.setNumberOfClusters(), TotemVFATStatus.setNumberOfClustersSpecified(), dqm::TrackAnalyzer.setNumberOfGoodVertices(), DCULVRVoltagesDat.setOCM(), edm::IndexIntoFile::RunOrLumiEntry.setOrderPHIDRun(), edm::IndexIntoFile::RunOrLumiEntry.setOrderPHIDRunLumi(), FSimTrack.setOriginVertex(), edm::ThinnedAssociation.setParentCollectionID(), TopologyWorker.setPartList(), edm::PlaceInPathContext.setPathContext(), Herwig7Interface.setPEGRandomEngine(), EVTColContainer.setPFMHT(), FWGeoTopNode.setPopupMenu(), VFATFrame.setPresenceFlags(), edm::IndexIntoFile::RunOrLumiEntry.setProcessHistoryIDIndex(), edm::Event.setProducer(), TauSpinnerFilter.setRandomEngine(), ThePEG::RandomEngineGlue.setRandomEngine(), edm::BeamHaloProducer.setRandomEngine(), gen::P8RndmEngine.setRandomEngine(), myEvtRandomEngine.setRandomEngine(), ThePEG::RandomEngineGlue::Proxy.setRandomEngine(), gen::TauolappInterface.setRandomEngine(), gen::Pythia6Service.setRandomEngine(), TauSpinnerCMS.setRandomEngine(), CMS_SHERPA_RNG.setRandomEngine(), CMSCGEN.setRandomEngine(), CosmicMuonGenerator.setRandomEngine(), edm::pathStatusExpression::BinaryOperator< T >.setRight(), edm::StreamContext.setRunIndex(), edm::service::RandomNumberGeneratorService::LabelAndEngine.setSeed(), LMFClsDat.setSystem(), FWJetProxyBuilder.setTextPos(), edm::SendJobHeader.setThinnedAssociationsHelper(), edm::ThinnedAssociation.setThinnedCollectionID(), edm::IllegalParameters.setThrowAnException(), edm::StreamContext.setTimestamp(), RecoTracktoTP.SetTrackingParticlePCA(), TPtoRecoTrack.SetTrackingParticlePCA(), edm::StreamContext.setTransition(), EcalElectronicsMapper.setupGhostMap(), DCULVRVoltagesDat.setV43_A(), DCULVRVoltagesDat.setV43_D(), CSCCorrelatedLCTDigi.setValid(), AlignmentParameters.setValid(), DCULVRVoltagesDat.setVCC(), FFTJetCorrectorResult.setVec(), FFTJetCorrectorTransient.setVec(), LMFPrimVers.setVersion(), PFDisplacedVertexHelper.setVertexIdentifier(), SimTrack.setVertexIndex(), DCULVRVoltagesDat.setVFE1_2_3_D(), DCULVRVoltagesDat.setVFE1_A(), DCULVRVoltagesDat.setVFE2_A(), DCULVRVoltagesDat.setVFE3_A(), DCULVRVoltagesDat.setVFE4_5_D(), DCULVRVoltagesDat.setVFE4_A(), DCULVRVoltagesDat.setVFE5_A(), TagProbeFitter.setWeightVar(), CTPPSPixelFramePosition.setXMLAttribute(), TotemFramePosition.setXMLAttribute(), pat::MET.shiftedP2(), pat::MET.shiftedP2_74x(), pat::MET.shiftedP3(), pat::MET.shiftedP3_74x(), pat::MET.shiftedP4(), pat::MET.shiftedP4_74x(), pat::MET.shiftedSumEt(), pat::MET.shiftedSumEt_74x(), GaussianTail.shoot(), SiStripRecHitMatcher.SiStripRecHitMatcher(), EventMsgBuilder.size(), InitMsgBuilder.size(), DDValue.size(), hitfit::Vector_Resolution.smear(), edm::SoATuple< edm::EDConsumerBase::TokenLookupInfo, bool, edm::EDConsumerBase::LabelPlacement, edm::KindOfType >.SoATuple(), edm::OneToManyWithQualityGeneric< std::vector< reco::Track >, std::vector< reco::Vertex >, int, unsigned int >.sort(), HGCalImagingAlgo.sort_by_delta(), hgcal::ClusterTools.sort_by_z(), pat::PATPackedCandidateProducer.sort_indexes(), sorted_indices(), DDCoreToDDXMLOutput.specpar(), XHistogram.splitSegment(), SplittingConfigurableHisto.SplittingConfigurableHisto(), PixelTrackProducer.store(), TrackInformation.storeTrack(), ConversionFastHelix.straightLineStateAtVertex(), FastHelix.straightLineStateAtVertex(), DDI::Specific.stream(), fireworks.supportedDataFormatsVersion(), FWViewManagerManager.supportedTypesAndRepresentations(), LinkByRecHit.testECALAndPSByRecHit(), CkfDebugger.testSeed(), EventShape.thrust(), DDMapper< KeyType, ValueType >.toDouble(), DDMapper< KeyType, ValueType >.toString(), reco::TransientTrackFromFTS.track(), reco.trackingParametersAtClosestApproachToBeamSpot(), edm::OneToOneGeneric< std::vector< TrackCandidate >, std::vector< Trajectory >, unsigned int >.transientMap(), edm::OneToMany< reco::TrackJetCollection, reco::TrackCollection >.transientMap(), edm::OneToManyWithQualityGeneric< std::vector< reco::Track >, std::vector< reco::Vertex >, int, unsigned int >.transientMap(), edm::OneToMany< reco::TrackJetCollection, reco::TrackCollection >.transientValVector(), edm::OneToManyWithQualityGeneric< std::vector< reco::Track >, std::vector< reco::Vertex >, int, unsigned int >.transientValVector(), TangentApproachInRPhi.transverseCoord(), ClosestApproachInRPhi.transverseCoord(), TimeValidityInterval.UNIXStringToValue(), emtf::Forest.updateEvents(), TkAccumulatingSensitiveDetector.updateHit(), emtf::Forest.updateRegTargets(), hitfit::Vector_Resolution.use_et(), CrossingPtBasedLinearizationPointFinder.useAllTracks(), CrossingPtBasedLinearizationPointFinder.useFullMatrix(), edm::OneToValue< reco::CaloJetCollection, reco::L2TauIsolationInfo >.val(), edm::OneToMany< reco::TrackJetCollection, reco::TrackCollection >.val(), edm::OneToManyWithQualityGeneric< std::vector< reco::Track >, std::vector< reco::Vertex >, int, unsigned int >.val(), L1MuonPixelTrackFitter.valInversePt(), VariableHelper.variable(), VariableNTupler.VariableNTupler(), LocalTrajectoryParameters.vector(), CosmicParametersDefinerForTP.vertex(), ParametersDefinerForTP.vertex(), reco::VertexCompositeCandidate.vertexCovariance(), reco::VertexCompositePtrCandidate.vertexCovariance(), reco::LeafCandidate.vertexCovariance(), reco::Candidate.vertexCovariance(), pat::PackedGenParticle.vertexCovariance(), pat::PackedCandidate.vertexCovariance(), AdaptiveVertexReconstructor.vertices(), DAClusterizerInZ.vertices(), PrimaryVertexProducerAlgorithm.vertices(), DAClusterizerInZ_vect.vertices(), DAClusterizerInZT_vect.vertices(), npstat::BoxND< Numeric >.volume(), npstat::HistoND< Numeric, Axis >.volume(), PHcalTB04Info.vtxSecEk(), PHcalTB06Info.vtxSecEKin(), edm.walkTrie(), EPOS::IO_EPOS.write_event(), DCULVRVoltagesDat.writeArrayDB(), xy(), zw(), BPHChi2Select.~BPHChi2Select(), EcalBarrelGeometry.~EcalBarrelGeometry(), EcalEndcapGeometry.~EcalEndcapGeometry(), FWConvTrackHitsDetailView.~FWConvTrackHitsDetailView(), FWGeometryTableViewBase.~FWGeometryTableViewBase(), GsfVertexTrackCompatibilityEstimator.~GsfVertexTrackCompatibilityEstimator(), HBHEHitMap.~HBHEHitMap(), HBHEHitMapOrganizer.~HBHEHitMapOrganizer(), KalmanVertexTrackCompatibilityEstimator< N >.~KalmanVertexTrackCompatibilityEstimator(), SiStripApvGainBuilderFromTag.~SiStripApvGainBuilderFromTag(), SiStripNoiseNormalizedWithApvGainBuilder.~SiStripNoiseNormalizedWithApvGainBuilder(), tauImpactParameter::TrackTools.~TrackTools(), VertexTrackCompatibilityEstimator< 5 >.~VertexTrackCompatibilityEstimator(), and VertexUpdator< 5 >.~VertexUpdator().