CMS 3D CMS Logo

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

Functions

def getGoodBRuns
 functions definitions More...
 
def getGoodQRuns
 obtaining list of good quality runs More...
 

Variables

string action = "store_true"
 
string allOptions = '### '
 
string comma = ","
 
list copyargs = sys.argv[:]
 
string dbs_quiery = "find run, file.numevents, file where dataset="
 Find files for good runs. More...
 
string default = ''
 
string dest = "alcaDataset"
 
tuple ff = open('/tmp/runs_and_files_full_of_pink_bunnies','r')
 
tuple fname = fname.rstrip('\n')
 
string help = "[REQUIRED] Name of the input AlCa dataset to get filenames from."
 
list infotofile = ["### %s\n" % " ".join(copyargs)]
 
list list_of_files = []
 
list list_of_runs = []
 
int maxI = options.maxB*18160
 
int minI = options.minB*18160
 
tuple parser = optparse.OptionParser(usage)
 
list runs_b_on = []
 get good B field runs from RunInfo DB More...
 
list runs_good = []
 
list runs_good_dq = []
 Add requiremment of good quality runs. More...
 
tuple size = len(list_of_files)
 Write out results. More...
 
int total_numevents = 0
 
string type = "string"
 
string usage = '%prog [options]\n\n'
 To parse commandline args. More...
 
 v = options.verbose
 

Function Documentation

def findQualityFiles.getGoodBRuns (   options)

functions definitions

get good B field runs from RunInfo DB

Definition at line 23 of file findQualityFiles.py.

23 
24 def getGoodBRuns(options):
25 
26  runs_b_on = []
27 
28  sys.setdlopenflags(DLFCN.RTLD_GLOBAL+DLFCN.RTLD_LAZY)
29 
30  a = FWIncantation()
31  #os.putenv("CORAL_AUTH_PATH","/afs/cern.ch/cms/DB/conddb")
32  rdbms = RDBMS("/afs/cern.ch/cms/DB/conddb")
33 
34  db = rdbms.getDB(options.dbName)
35  tags = db.allTags()
36 
37  if options.printTags:
38  print "\nOverview of all tags in "+options.dbName+" :\n"
39  print tags
40  print "\n"
41  sys.exit()
42 
43  # for inspecting last run after run has started
44  #tag = 'runinfo_31X_hlt'
45  tag = options.dbTag
46 
47  # for inspecting last run after run has stopped
48  #tag = 'runinfo_test'
49 
50  try :
51  #log = db.lastLogEntry(tag)
52 
53  #for printing all log info present into log db
54  #print log.getState()
55 
56  iov = inspect.Iov(db,tag)
57  #print "########overview of tag "+tag+"########"
58  #print iov.list()
59 
60  if v>1 :
61  print "######## summries ########"
62  for x in iov.summaries():
63  print x[0], x[1], x[2] ,x[3]
64 
65  what={}
66 
67  if v>1 :
68  print "###(start_current,stop_current,avg_current,max_current,min_current,run_interval_micros) vs runnumber###"
69  print iov.trend(what)
70 
71  if v>0:
72  print "######## trends ########"
73  for x in iov.trendinrange(what,options.startRun-1,options.endRun+1):
74  if v>0 or x[0]==67647L or x[0]==66893L or x[0]==67264L:
75  print x[0],x[1] ,x[2], x[2][4], x[2][3]
76  #print x[0],x[1] ,x[2], x[2][4], timeStamptoUTC(x[2][6]), timeStamptoUTC(x[2][7])
77  if x[2][4] >= minI and x[2][3] <= maxI:
78  runs_b_on.append(int(x[0]))
79 
80  except Exception, er :
81  print er
82 
83  print "### runs with good B field ###"
84  print runs_b_on
85 
86  return runs_b_on
87 
def getGoodBRuns
functions definitions
def findQualityFiles.getGoodQRuns (   options)

obtaining list of good quality runs

Definition at line 91 of file findQualityFiles.py.

91 
92 def getGoodQRuns(options):
93 
94  runs_good_dq = []
95 
96  dbs_quiery = "find run where dataset="+options.dqDataset+" and dq="+options.dqCriteria
97 
98  os.system('python $DBSCMD_HOME/dbsCommandLine.py -c search --noheader --query="'+dbs_quiery+'" | sort > /tmp/runs_full_of_pink_bunnies')
99 
100  #print 'python $DBSCMD_HOME/dbsCommandLine.py -c search --noheader --query="'+dbs_quiery+'" | sort > /tmp/runs_full_of_pink_bunnies'
101 
102  ff = open('/tmp/runs_full_of_pink_bunnies', "r")
103  line = ff.readline()
104  while line and line!='':
105  runs_good_dq.append(int(line))
106  line = ff.readline()
107  ff.close()
108 
109  os.system('rm /tmp/runs_full_of_pink_bunnies')
110 
111  print "### runs with good quality ###"
112  print runs_good_dq
113 
114  return runs_good_dq
115 
116 
def getGoodQRuns
obtaining list of good quality runs

Variable Documentation

string findQualityFiles.action = "store_true"

Definition at line 172 of file findQualityFiles.py.

string findQualityFiles.allOptions = '### '

Definition at line 249 of file findQualityFiles.py.

string findQualityFiles.comma = ","

Definition at line 330 of file findQualityFiles.py.

Referenced by edm::ParameterSetConverter.convertParameterSets(), edm::FileLocator.init(), and searchABCDstring().

list findQualityFiles.copyargs = sys.argv[:]

Definition at line 242 of file findQualityFiles.py.

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

Find files for good runs.

Definition at line 295 of file findQualityFiles.py.

int findQualityFiles.default = ''

Definition at line 130 of file findQualityFiles.py.

string findQualityFiles.dest = "alcaDataset"

Definition at line 131 of file findQualityFiles.py.

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

Definition at line 303 of file findQualityFiles.py.

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

Definition at line 308 of file findQualityFiles.py.

string findQualityFiles.help = "[REQUIRED] Name of the input AlCa dataset to get filenames from."

Definition at line 126 of file findQualityFiles.py.

list findQualityFiles.infotofile = ["### %s\n" % " ".join(copyargs)]

Definition at line 247 of file findQualityFiles.py.

list findQualityFiles.list_of_files = []

Definition at line 299 of file findQualityFiles.py.

list findQualityFiles.list_of_runs = []

Definition at line 300 of file findQualityFiles.py.

int findQualityFiles.maxI = options.maxB*18160

Definition at line 239 of file findQualityFiles.py.

Referenced by HFTimingTrust.checkHFTimErr(), MuonGeometryArrange.endHist(), HLTMuonDimuonL3Filter.filter(), HLTMuonL3PreFilter.filter(), L3TkMuonProducer.produce(), CastorSimpleRecAlgoImpl.reco(), HcalSimpleRecAlgoImpl.reco(), ZdcSimpleRecAlgoImpl.reco1(), ZdcSimpleRecAlgoImpl.reco2(), HcalQLPlotAnalAlgos.recoCalib(), HcalSimpleRecAlgo.reconstruct(), and DualByL2TSG.selectTSG().

int findQualityFiles.minI = options.minB*18160

Definition at line 238 of file findQualityFiles.py.

Referenced by MuonGeometryArrange.endHist().

tuple findQualityFiles.parser = optparse.OptionParser(usage)

Definition at line 123 of file findQualityFiles.py.

tuple findQualityFiles.runs_b_on = []

get good B field runs from RunInfo DB

Definition at line 263 of file findQualityFiles.py.

list findQualityFiles.runs_good = []

Definition at line 275 of file findQualityFiles.py.

tuple findQualityFiles.runs_good_dq = []

Add requiremment of good quality runs.

Definition at line 274 of file findQualityFiles.py.

tuple findQualityFiles.size = len(list_of_files)

Write out results.

Definition at line 322 of file findQualityFiles.py.

Referenced by DigiCollectionFP420.add(), edm::helper::Filler< Association< C > >.add(), CaloHitResponse.add(), L1GtTriggerMenuConfigOnlineProd.addCorrelationCondition(), BetaCalculatorRPC.addInfoToCandidate(), HcalHardwareXml.addPart(), smproxy::DataRetrieverMonitorCollection.addRetrievedSample(), fireworks.addStraightLineSegment(), SiStripQualityHotStripIdentifier.algoAnalyze(), reco::Conversion.algoByName(), reco::TrackBase.algoByName(), SiStripNoises.allNoises(), SiStripPedestals.allPeds(), HLTBJet.analyseCorrectedJets(), HLTBJet.analyseJets(), HLTBJet.analyseLifetime(), HLTBJet.analysePerformance(), HLTBJet.analyseSoftmuon(), evf::EvFRecordInserter.analyze(), HcalSummaryClient.analyze(), CaloTowerAnalyzer.analyze(), RECOVertex.analyze(), HLTTauDQML1Plotter.analyze(), EwkMuLumiMonitorDQM.analyze(), HLTMonHcalIsoTrack.analyze(), BxTiming.analyze(), EBSelectiveReadoutTask.analyze(), cms::ProducerAnalyzer.analyze(), test::GlobalNumbersAnalysis.analyze(), HLTOniaSource.analyze(), DTSegmentsTask.analyze(), TopElectronHLTOfflineSource.analyze(), HLTTauDQMLitePathPlotter.analyze(), HLTMonBTagIPSource.analyze(), HLTMonBTagMuSource.analyze(), HLTTauDQMPathPlotter.analyze(), SegmentTrackAnalyzer.analyze(), BTagPerformanceAnalyzerOnData.analyze(), QcdPhotonsDQM.analyze(), EcalTestPulseAnalyzer.analyze(), MuonAlignmentAnalyzer.analyze(), BTagPerformanceAnalyzerMC.analyze(), DTSegmentAnalysisTask.analyze(), EcalLaserAnalyzer2.analyze(), EcalPulseShapeGrapher.analyze(), EcalLaserAnalyzer.analyze(), L1TFED.analyze(), HeavyFlavorValidation.analyze(), PhotonValidator.analyze(), EESelectiveReadoutTask.analyze(), SiStripFEDMonitorPlugin.analyze(), EcalTPGParamBuilder.analyze(), DQMHcalIsoTrackHLT.analyze(), EmDQMReco.analyze(), HLTMuonMatchAndPlot.analyze(), HOCalibAnalyzer.analyze(), HLTMuonValidator.analyzePath(), TaggingVariablePlotter.analyzeTag(), HLTEventAnalyzerRAW.analyzeTrigger(), EZMgrVL< T >.assign(), TrackerHitAssociator.associateMultiRecHit(), TrackerHitAssociator.associateMultiRecHitId(), edm::RefGetter< T >.back(), PickEvents.beginJob(), DTEfficiencyTask.beginLuminosityBlock(), DTResolutionAnalysisTask.beginLuminosityBlock(), DTChamberEfficiencyTask.beginLuminosityBlock(), HLTMonBTagIPSource.beginRun(), HLTMonBTagMuSource.beginRun(), HLTMonBitSummary.beginRun(), LumiCalculator.beginRun(), MagGeoBuilderFromDDD::bLayer.bin(), CaloHitRespoNew.blankOutUsedSamples(), TrackerOfflineValidation.bookDirHists(), BOOST_PYTHON_MODULE(), FWSimpleProxyBuilder.build(), MagGeoBuilderFromDDD.build(), FWTauProxyBuilderBase.buildBaseTau(), CaloGeometryHelper.buildCrystalArray(), SiStripFedCabling.buildFedCabling(), MagGeoBuilderFromDDD::bLayer.buildMagBLayer(), CaloGeometryHelper.buildNeighbourArray(), FWPFClusterRPZUtils.buildRhoPhiClusterLineSet(), FWPFClusterRPZUtils.buildRhoZClusterLineSet(), CSCSegAlgoST.buildSegments(), EcalHitMaker.buildSegments(), FWJetProxyBuilder.buildViewType(), FWSimpleProxyBuilder.buildViewType(), FWMETProxyBuilder.buildViewType(), L1MuDTChambPhContainer.bxSize(), L1MuDTChambThContainer.bxSize(), L1MuDTTrackContainer.bxSize(), CSCHaloAlgo.Calculate(), MeasurementSensor2D.calculateSimulatedValue(), MeasurementDistancemeter3dim.calculateSimulatedValue(), MeasurementDistancemeter.calculateSimulatedValue(), MeasurementTiltmeter.calculateSimulatedValue(), MeasurementCOPS.calculateSimulatedValue(), MeasurementDiffEntry.calculateSimulatedValue(), LocalStorageMaker.check(), XrdStorageMaker.check(), LStoreStorageMaker.check(), DCacheStorageMaker.check(), StormStorageMaker.check(), StormLcgGtStorageMaker.check(), RFIOStorageMaker.check(), stor::FileHandler.checkAdler32(), global_linear_0.checkParameters(), global_simpleAngular_0.checkParameters(), global_linear_1.checkParameters(), global_simpleAngular_1.checkParameters(), global_simpleAngular_2.checkParameters(), MuScleFit.checkParameters(), CSCSegAlgoST.ChooseSegments2(), CSCSegAlgoST.ChooseSegments3(), EcalBarrelRecHitsMaker.clean(), EcalEndcapRecHitsMaker.clean(), CalorimetryManager.clean(), HcalRecHitsMaker.cleanSubDet(), PixelTrackCleanerBySharedHits.cleanTracks(), FWFromSliceSelector.clear(), HCALConfigDB.clobToString(), CSCSegAlgoPreClustering.clusterHits(), CSCSegAlgoST.clusterHits(), TrackerOfflineValidation.collateSummaryHists(), CombinationGenerator< T >.combinations(), ZeeCalibration.computeCoefficientDistanceAtIteration(), FineDelayHistosUsingDb.computeDelays(), DeDxDiscriminatorProducer.ComputeDiscriminator(), DTBtiChip.computeEqs(), ConfigurableAPVCyclePhaseProducer.ConfigurableAPVCyclePhaseProducer(), pos::PixelConfigFile.configurationDataExists(), SiStripFedCabling.connection(), PhysicsTools::MVATrainer.connectProcessors(), RoadMaker.constructRoads(), PhysicsTools::Calibration.convert(), FourVectorHLTOnline.countHLTGroupBXHitsEndLumiBlock(), TrigResRateMon.countHLTGroupBXHitsEndLumiBlock(), FourVectorHLTOffline.countHLTGroupBXHitsEndLumiBlock(), ConstrainedTreeBuilder.covarianceMatrix(), ConstrainedTreeBuilderT.covarianceMatrix(), PFElectronTranslator.createBasicClusterPtrs(), PFPhotonTranslator.createBasicClusterPtrs(), DialogFrame.createCmdFrame(), PFElectronTranslator.createGsfElectronCoreRefs(), PFElectronTranslator.createGsfElectrons(), PFPhotonTranslator.createPhotons(), PFElectronTranslator.createPreshowerClusterPtrs(), PFPhotonTranslator.createPreshowerClusterPtrs(), SiPixelUtility.createStatusLegendMessages(), PFElectronTranslator.createSuperClusterGsfMapRefs(), Numbers.crystals(), EcalElectronicsMapping.dccConstituents(), HLTLevel1GTSeed.debugPrint(), PhysicsTools::VarProcessor.deriv(), magfieldparam::rz_poly.Diff(), stor::KeepNewest< T >.doEnq(), stor::FailIfFull< T >.doInsert(), stor::KeepNewest< T >.doInsert(), stor::RejectNewest< T >.doInsert(), CSCAFEBThrAnalysis.done(), edm::FUShmOutputModule.doOutputEvent(), edm::FUShmOutputModule.doOutputHeader(), edm::MixingModule.doPileUp(), GctRawToDigi.doVerboseOutput(), CaloNavigator< EBDetId >.down(), FWTextTreeCellRenderer.draw(), CSCAnodeLCTProcessor.dumpDigis(), PrintMaterialBudgetInfo.dumpElementMassFraction(), pat::GenericDuplicateRemover< Comparator, Arbitrator >.duplicates(), MuScleFit.duringFastLoop(), MuScleFit.duringLoop(), CaloNavigator< EBDetId >.east(), EcalHitMaker.EcalHitMaker(), PFRecHitProducerECAL.ecalNeighbArray(), DTTracoChip.edgeBTI(), CalorimetryManager.EMShowerSimulation(), MuonGeometryArrange.endHist(), ImpactParameterCalibration.endJob(), SumHistoCalibration.endJob(), FourVectorHLTClient.endRun(), edm::IndexIntoFile.endRunOrLumi(), reco::Conversion.EoverP(), reco::Conversion.EoverPrefittedTracks(), DTBtiChip.eraseTrigger(), MuonSeedCreator.estimatePtCSC(), MuonSeedCreator.estimatePtDT(), MuonSeedCreator.estimatePtOverlap(), HCALProperties.eta2ieta(), TrackQuality.evaluate(), DDEcalBarrelAlgo.execute(), DDEcalBarrelNewAlgo.execute(), ora::UpdateOperation.execute(), ora::DeleteOperation.execute(), NoiseSummaryFactory.extract(), PedestalsSummaryFactory.extract(), PedsFullNoiseSummaryFactory.extract(), PedsOnlySummaryFactory.extract(), EcalHitMaker.fastInsideCell(), fit::RootMinuit< Function >.fcn_(), OptoScanTask.fill(), SiPixelTrackResidualModule.fill(), PFCandidateMonitor.fill(), PFJetMonitor.fill(), SiPixelClusterModule.fill(), PhotonAnalyzer.fill2DHistoVector(), FWHFTowerProxyBuilderBase.fillCaloData(), FWECALDetailViewBuilder.fillData(), edm::IndexIntoFile.fillEventNumbersOrEntries(), QcdUeDQM.fillHltBits(), QcdLowPtDQM.fillHltBits(), EcalElectronicsMapper.fillMaps(), SiPixelUtility.fillPaveText(), CSCEfficiency.fillRechitsSegments_info(), edm::IndexIntoFile.fillRunOrLumiIndexes(), DetIdAssociator.fillSet(), SiStripFedZeroSuppression.fillThresholds_(), TriggerSummaryProducerAOD.fillTriggerObjectCollections(), edm::RefToBaseVector< T >.fillView(), edm::Vector< T >.fillView(), edm::OwnVector< T, P >.fillView(), edm::PtrVector< T >.fillView(), PFMETFilter.filter(), PFFilter.filter(), HLTPMDocaFilter.filter(), cms::ClusterMTCCFilter.filter(), CSCDigiValidator.filter(), HLTLogMonitorFilter.filter(), HLTPi0RecHitsFilter.filter(), FilterOR.FilterOR(), ora::PVectorHandler.finalize(), pat::GenericOverlapFinder< Distance >.find(), SETSeedFinder.findAllValidSets(), GctFormatTranslateMCLegacy.findBx0OffsetInCollection(), L1GtVhdlWriterCore.findObjectType(), graph< N, E >.findRoots(), CastorPacker.findSamples(), CastorCtdcPacker.findSamples(), HcalPacker.findSamples(), EcalTBReadout.findTTlist(), edm::AssociationVector< KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper >.fixup(), CombinedSVComputer.flipIterate(), FsmwClusterizer1DNameSpace.fsmw(), DTConfigPluginHandler.get(), pos::PixelConfigFile.get(), LutXml.get_checksum(), DTMuonMillepede.getbcsMatrix(), DTMuonMillepede.getbsurveyMatrix(), ComponentFactoryByName< B >.getBuilder(), DTMuonMillepede.getCcsMatrix(), hcalCalib.GetCoefFromMtrxInvOfAve(), HcalLutManager.getCompressionLutXmlFromAsciiMaster(), HcalLutManager.getCompressionLutXmlFromCoder(), DTMuonMillepede.getCsurveyMatrix(), FWCompactVerticalLayout.GetDefaultSize(), HDetIdAssociator.getDetIdsInACone(), JetMatchingTools.getGenParticle(), HcalQIEManager.getHfQieTable(), WatcherStreamFileReader.getInputFile(), HcalLutManager.getLinearizationLutXmlFromAsciiMasterEmap(), HcalLutManager.getLinearizationLutXmlFromCoder(), HcalLutManager.getLinearizationLutXmlFromCoderEmap(), HcalLutManager.getLutXmlFromAsciiMaster(), JetPartonMatching.getMatchForParton(), L1TriggerScalerHandler.getNewObjects(), RunInfoHandler.getNewObjects(), RunSummaryHandler.getNewObjects(), popcon::DQMReferenceHistogramRootFileSourceHandler.getNewObjects(), popcon::DQMSummarySourceHandler.getNewObjects(), popcon::DQMXMLFileSourceHandler.getNewObjects(), popcon::SiStripDetVOffHandler.getNewObjects(), RPCDBPerformanceHandler.getNewObjects(), popcon::SiStripPopConDbObjHandler< T, U >.getNewObjects(), popcon::DQMHistoryPopConHandler< U >.getNewObjects(), popcon::SiStripPopConConfigDbObjHandler< T >.getNewObjects(), popcon::RPCEMapSourceHandler.getNewObjects(), popcon::SiStripPopConHandlerUnitTest< T >.getNewObjects(), popcon::SiStripPopConHandlerUnitTestGain< T >.getNewObjects(), popcon::SiStripPopConHandlerUnitTestNoise< T >.getNewObjects(), popcon::EcalTPGLutIdMapHandler.getNewObjects(), popcon::EcalTPGLinConstHandler.getNewObjects(), popcon::EcalTPGFineGrainEBIdMapHandler.getNewObjects(), popcon::EcalTPGPhysicsConstHandler.getNewObjects(), popcon::EcalTPGWeightIdMapHandler.getNewObjects(), popcon::EcalTPGFineGrainTowerEEHandler.getNewObjects(), popcon::EcalTPGFineGrainEBGroupHandler.getNewObjects(), popcon::EcalTPGWeightGroupHandler.getNewObjects(), popcon::EcalTPGFineGrainStripEEHandler.getNewObjects(), popcon::EcalTPGPedestalsHandler.getNewObjects(), popcon::EcalTPGSlidingWindowHandler.getNewObjects(), popcon::EcalTPGLutGroupHandler.getNewObjects(), PVFitter.getNPVsperBX(), pos::PixelConfigFile.getPath(), BeamFitter.getPVvectorSize(), HcalQIEManager.getQIETableFromFile(), edm::IndexIntoFile::IndexIntoFileItrNoSort.getRunOrLumiEntryType(), edm::IndexIntoFile::IndexIntoFileItrSorted.getRunOrLumiEntryType(), JetPartonMatching.getSumDeltaE(), JetPartonMatching.getSumDeltaR(), CaloSubdetectorGeometry.getSummary(), magfieldparam::rz_poly.GetSVal(), magfieldparam::rz_poly.GetVVal(), EcalTrivialConditionRetriever.getWeightsFromConfiguration(), HcalLutManager.getZdcLutXml(), FWEveViewManager.haveViewForBit(), reco::HcalNoiseRBXArray.HcalNoiseRBXArray(), PixelTripletNoTipGenerator.hitTriplets(), PixelTripletLargeTipGenerator.hitTriplets(), PixelTripletHLTGenerator.hitTriplets(), PixelTripletLowPtGenerator.hitTriplets(), stor::detail::ChainData.hltClassName(), HLTLevel1GTSeed.HLTLevel1GTSeed(), HLTTauDQMSummaryPlotter.HLTTauDQMSummaryPlotter(), stor::detail::ChainData.hltURL(), pat::TriggerEvent.indexAlgorithm(), pat::TriggerEvent.indexCondition(), pat::TriggerEvent.indexFilter(), HFShower.indexFinder(), HDShower.indexFinder(), pat::TriggerEvent.indexPath(), EcalBarrelRecHitsMaker.init(), EcalEndcapRecHitsMaker.init(), HcalRecHitsMaker.init(), MuDetRing.init(), edm::BranchDescription.initBranchName(), Combinatorics.initial_permutation(), MillePedeAlignmentAlgorithm.initialize(), edm::IndexIntoFile::IndexIntoFileItrNoSort.initializeLumi_(), edm::helper::Filler< Association< C > >.insert(), reco::TaggingVariableList.insert(), DTGeometryParsFromDD.insertChamber(), DTGeometryParsFromDD.insertLayer(), DTGeometryParsFromDD.insertSuperLayer(), EcalBarrelRecHitsMaker.isHighInterest(), EcalEndcapRecHitsMaker.isHighInterest(), MuonGeometryArrange.isMother(), RPCLogCone.isPlaneFired(), edm::IndexIntoFile::IndexIntoFileItrNoSort.isSameLumi(), edm::IndexIntoFile::IndexIntoFileItrSorted.isSameLumi(), edm::IndexIntoFile::IndexIntoFileItrNoSort.isSameRun(), edm::IndexIntoFile::IndexIntoFileItrSorted.isSameRun(), popcon::SiStripPopConHandlerUnitTest< T >.isTransferNeeded(), popcon::SiStripPopConHandlerUnitTestNoise< T >.isTransferNeeded(), popcon::SiStripPopConHandlerUnitTestGain< T >.isTransferNeeded(), join(), LaserHitPairGenerator.LaserHitPairGenerator(), FWCompactVerticalLayout.Layout(), CalorimetryManager.loadFromEcalBarrel(), CalorimetryManager.loadFromEcalEndcap(), CalorimetryManager.loadFromHcal(), DisplayManager.loadGPFBlocks(), CalorimetryManager.loadMuonSimTracks(), FittedEntriesManager.MakeHistos(), RPCFakeCalibration.makeNoise(), EcalDeadChannelRecoveryAlgos.MakeNxNMatrice(), reco::PFBlock.matrix2vector(), reco::PFDisplacedVertexCandidate.matrix2vector(), edm::Provenance.moduleName(), FinalTreeBuilder.momentumPart(), DTBtiChip.nCellHit(), FWEveViewManager.newItem(), Combinatorics.next_permutation(), cscdqm::Detector.NextAddressBoxByPartition(), edm::IndexIntoFile::IndexIntoFileItrNoSort.nextEventRange(), edm::RootInputFileSequence.nextFile(), EcalEndcapRecHitsMaker.noisifySuperCrystals(), CaloNavigator< EBDetId >.north(), MuonSeedCleaner.NRecHitsFromSegment(), edm::AssociationMap< edm::OneToManyWithQualityGeneric< TrackingParticleCollection, edm::View< reco::Track >, double > >.numberOfAssociations(), edm::StreamerInputFile.openStreamerFile(), DDVector.operator std::vector< int >(), lhef::JetInput.operator()(), Comparison< Ref, RefQualifier, Rec, RecQualifier, Alg >.operator()(), CSCThrTurnOnFcn.operator()(), operator<<(), edm::RefGetter< T >.operator[](), JetResolution.parameter(), AlpgenHeader.parameterName(), DDLParser.parse(), L1GtTriggerMenuXmlParser.parseCorrelation(), MuonGeometryArrange.passChosen(), pat::TriggerEvent.pathModules(), PixelSLinkDataInputSource.PixelSLinkDataInputSource(), HLTTauDQMSummaryPlotter.plot(), edm::PoolSource.PoolSource(), lhef.pop(), MODCCSHFDat.populateClob(), IODConfig.populateClob(), PFAlgo.postMuonCleaning(), File.prefetch(), edm::IndexIntoFile::IndexIntoFileItrNoSort.previousEventRange(), edm::RootInputFileSequence.previousFile(), edm::IndexIntoFile::IndexIntoFileItrImpl.previousLumiWithEvents(), BlockFormatter.print(), Combinatorics.Print(), PedsOnlyAnalysis.print(), L1GtPrescaleFactors.print(), PedestalsAnalysis.print(), NoiseAnalysis.print(), edm::detail::ThreadSafeIndexedRegistry< T, E >.print(), PedsFullNoiseAnalysis.print(), CSCCFEBStatusDigi.print(), edm::detail::ThreadSafeRegistry< KEY, T, E >.print(), L1GtBoard.print(), edm::ParameterWildcardBase.print_(), edm::ParameterDescriptionBase.print_(), PrimaryVertexAnalyzer4PU.printEventSummary(), reco::CaloCluster.printHitAndFraction(), process(), edm::Provenance.processConfigurationID(), G4ProcessTypeEnumerator.processG4Name(), processTrig(), SETPatternRecognition.produce(), ShallowRechitClustersProducer.produce(), ShallowTrackClustersProducer.produce(), ShallowSimhitClustersProducer.produce(), reco::modules::CaloRecHitCandidateProducer< HitCollection >.produce(), RawDataCollectorModule.produce(), ShallowSimTracksProducer.produce(), EcalRecHitsMerger.produce(), ESRecHitsMerger.produce(), AssociationMapOneToOne2Association< CKey, CVal >.produce(), AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >.produce(), AssociationVector2ValueMap< KeyRefProd, CVal >.produce(), RawDataCollectorByLabel.produce(), HcalCalibFEDSelector.produce(), reco::modulesNew::MCTruthCompositeMatcher.produce(), HLTTauRefCombiner.produce(), reco::modulesNew::Matcher< C1, C2, S, D >.produce(), HcalTBSource.produce(), GenParticleProducer.produce(), SiPixelDigiToRaw.produce(), SubdetFEDSelector.produce(), SiStripRegFEDSelector.produce(), InputGenJetsParticleSelector.produce(), EcalGlobalShowerContainmentCorrectionsVsEtaESProducer.produce(), EcalShowerContainmentCorrectionsESProducer.produce(), ZToLLEdmNtupleDumper.produce(), ECALRegFEDSelector.produce(), AlCaHcalNoiseProducer.produce(), DeDxDiscriminatorProducer.produce(), reco::modules::TrackMultiSelector.produce(), reco::PhysObjectMatcher< C1, C2, S, D, Q >.produce(), SoftLepton.produce(), CandidateProducer< TColl, CColl, Selector, Conv, Creator, Init >.produce(), python.Vispa.Views.PropertyView.TextEditWithButtonProperty.properyHeight(), edm::Provenance.psetID(), edm::BranchDescription.psetID(), CSCAnodeLCTProcessor.pulseExtension(), CSCCathodeLCTProcessor.pulseExtension(), edm::DataMixingEMDigiWorker.putEM(), edm::DataMixingHcalDigiWorker.putHcal(), reco::TrackBase.qualityByName(), cond::FileReader.read(), CalibratedHistogramXML.read(), cond::TBufferBlobStreamingService.read(), PileUpProducer.read(), NuclearInteractionSimulator.read(), HcalLutManager.read_lmap(), MODCCSHFDat.readClob(), IODConfig.readClob(), PFRootEventManager.readFromSimulation(), edm::RootInputFileSequence.readManyRandom(), edm::PileUp.readPileUp(), readRemote(), Model.readSystemDescription(), DTCtcp.Receive(), CSCEfficiency.recHitSegment_Efficiencies(), CSCEfficiency.recSimHitEfficiency(), reco::tau::RecoTauConstructor.reserve(), CaloSlaveSD.ReserveMemory(), HLTrigReport.reset(), L1GctProcessor::Pipeline< T >.resize(), JetResolution.resolution(), DisplayManager.retrieveBadBrems(), global_simpleAngular_0.rotation(), global_simpleAngular_1.rotation(), global_simpleAngular_2.rotation(), DisplayManager.rubOutGPFBlock(), edm::GroupSelectorRules::Rule.Rule(), RPCHalfSorter.run(), NuclearInteractionFinder.run(), FastElectronSeedGenerator.run(), DTTracoChip.run(), PVFitter.runBXFitter(), ConvBremPFTrackFinder.runConvBremFinder(), RPCFinalSorter.runFinalSorter(), RPCTriggerBoard.runTBGB(), NuclearInteractionSimulator.save(), searchABCDstring(), RawDataFEDSelector.select(), DQMImplNet< DQMNet::Object >.sendObjectListToPeer(), set_children_visibility(), PFConversionAlgo.setActive(), EcalUncalibRecHitWorkerFixedAlphaBetaFit.setAlphaBeta(), hcaltb::HcalTBQADCUnpacker.setCalib(), hcaltb::HcalTBTDCUnpacker.setCalib(), PFConversionAlgo.setCandidates(), reco::PFCandidateElectronExtra.setClusterEnergies(), PFAlgo.setElectronExtraRef(), HBHEStatusBitSetter.SetFlagsFromDigi(), popcon::SiStripDetVOffHandler.setForTransfer(), popcon::SiStripPopConConfigDbObjHandler< T >.setForTransfer(), popcon::DQMHistoryPopConHandler< U >.setForTransfer(), popcon::SiStripPopConDbObjHandler< T, U >.setForTransfer(), popcon::SiStripPopConHandlerUnitTest< T >.setForTransfer(), popcon::SiStripPopConHandlerUnitTestNoise< T >.setForTransfer(), popcon::SiStripPopConHandlerUnitTestGain< T >.setForTransfer(), stor::ThroughputMonitorCollection.setFragmentStoreSize(), RPCSeedLayerFinder.setInput(), PFBlockAlgo.setInput(), PFConversionAlgo.setLinks(), MonTTConsistencyDat.setProblemsSize(), MonMemTTConsistencyDat.setProblemsSize(), HcalTBSource.setRunAndEventInfo(), CSCALCTTrailer2006.setSize(), CSCALCTTrailer2007.setSize(), AlignmentParameterSelector.setSpecials(), egHLT::OffHelper.setTrigInfo(), CaloHitRespoNew.setupSamples(), OpticalObject.shortName(), edm::RootOutputFile.shouldWeCloseFile(), OrderedHitPairs.size(), OrderedHitTriplets.size(), OrderedLaserHitPairs.size(), edm::IndexIntoFile::IndexIntoFileItrNoSort.skipLumiInRun(), edm::IndexIntoFile::IndexIntoFileItrSorted.skipLumiInRun(), edm::IndexIntoFile::SortedRunOrLumiItr.SortedRunOrLumiItr(), CaloNavigator< EBDetId >.south(), CombinationGenerator< T >.splitInTwoCollections(), PhysicsTools.stdStringVPrintf(), L1MuGMTLUT::PortDecoder.str(), StripCPE.StripCPE(), cond::PayLoadInspector< DataT >.summary(), SiStripFedZeroSuppression.suppress(), FWSecondarySelectableSelector.syncSelection(), ora::ContainerUpdateTable.takeNote(), Cylinder.tangentPlane(), MuonAlignmentFromReference.terminate(), hcalCalib.Terminate(), LutXml.test_access(), HcalLutManager.test_emap(), HcalLutManager.test_xml_access(), edm::ParameterSet.toStringImp(), 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(), CaloNavigator< EBDetId >.up(), LatencyHistosUsingDb.update(), pat::CandidateSummaryTable::Record.update(), HcaluLUTTPGCoder.update(), CalorimetryManager.updateMap(), OptOUserDefined.userDefinedBehaviour(), CombinedKinematicConstraint.value(), MuonSeedCreator.weightedPt(), CaloNavigator< EBDetId >.west(), EcalUnpackerWorker.work(), CalibratedHistogramXML.write(), cond::TBufferBlobStreamingService.write(), GctFormatTranslateMCLegacy.writeAllRctCaloRegionBlock(), evf::BUEvent.writeFed(), GctFormatTranslateMCLegacy.writeRctEmCandBlocks(), FUShmDQMOutputService.writeShmDQMData(), IOOutput.writev(), IOInput.xreadv(), IOOutput.xwritev(), and MuScleFit.~MuScleFit().

int findQualityFiles.total_numevents = 0

Definition at line 301 of file findQualityFiles.py.

string findQualityFiles.type = "string"

Definition at line 127 of file findQualityFiles.py.

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

To parse commandline args.

Definition at line 120 of file findQualityFiles.py.

findQualityFiles.v = options.verbose

Definition at line 236 of file findQualityFiles.py.