Functions | |
def | getGoodBRuns |
functions definitions | |
def | getGoodQRuns |
obtaining list of good quality runs | |
def | getJSONGoodRuns |
obtain a list of good runs from JSON file | |
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 | |
Variables | |
string | action = "store_true" |
string | allOptions = '### ' |
string | comma = "," |
string | commandline = " " |
list | copyargs = sys.argv[:] |
string | dbs_quiery = "find run, file.numevents, file where dataset=" |
Find files for good runs. | |
string | default = '' |
string | dest = "alcaDataset" |
tuple | ff = open('/tmp/runs_and_files_full_of_pink_bunnies','r') |
tuple | files_events = zip(list_of_files, list_of_numevents) |
tuple | fname = fname.rstrip('\n') |
string | help = "[REQUIRED] Name of the input AlCa dataset to get filenames from." |
list | infotofile = ["### %s\n" % commandline] |
string | jj = '' |
list | list_of_files = [] |
list | list_of_numevents = [] |
list | list_of_runs = [] |
int | maxI = 18160 |
int | minI = 18160 |
tuple | parser = optparse.OptionParser(usage) |
string | rr = '' |
list | runs_b_on = [] |
get good B field runs from RunInfo DB | |
list | runs_good = [] |
use run registry API is specified | |
list | runs_good_dq = [] |
Add requiremment of good quality runs. | |
tuple | size = len(list_of_files) |
Write out results. | |
int | total_numevents = 0 |
string | type = "string" |
tuple | uniq_list_of_runs = list(set(list_of_runs)) |
tuple | unique_files_events = list(set(files_events)) |
string | usage = '%prog [options]\n\n' |
To parse commandline args. | |
v = options.verbose |
def findQualityFiles::getGoodBRuns | ( | ) |
functions definitions
get good B field runs from RunInfo DB
Definition at line 205 of file findQualityFiles.py.
00206 : 00207 00208 runs_b_on = [] 00209 00210 sys.setdlopenflags(DLFCN.RTLD_GLOBAL+DLFCN.RTLD_LAZY) 00211 00212 a = FWIncantation() 00213 #os.putenv("CORAL_AUTH_PATH","/afs/cern.ch/cms/DB/conddb") 00214 rdbms = RDBMS("/afs/cern.ch/cms/DB/conddb") 00215 00216 db = rdbms.getDB(options.dbName) 00217 tags = db.allTags() 00218 00219 if options.printTags: 00220 print "\nOverview of all tags in "+options.dbName+" :\n" 00221 print tags 00222 print "\n" 00223 sys.exit() 00224 00225 # for inspecting last run after run has started 00226 #tag = 'runinfo_31X_hlt' 00227 tag = options.dbTag 00228 00229 # for inspecting last run after run has stopped 00230 #tag = 'runinfo_test' 00231 00232 try : 00233 #log = db.lastLogEntry(tag) 00234 00235 #for printing all log info present into log db 00236 #print log.getState() 00237 00238 iov = inspect.Iov(db,tag) 00239 #print "########overview of tag "+tag+"########" 00240 #print iov.list() 00241 00242 if v>1 : 00243 print "######## summries ########" 00244 for x in iov.summaries(): 00245 print x[0], x[1], x[2] ,x[3] 00246 00247 what={} 00248 00249 if v>1 : 00250 print "###(start_current,stop_current,avg_current,max_current,min_current,run_interval_micros) vs runnumber###" 00251 print iov.trend(what) 00252 00253 if v>0: 00254 print "######## trends ########" 00255 for x in iov.trendinrange(what,options.startRun-1,options.endRun+1): 00256 if v>0 or x[0]==67647L or x[0]==66893L or x[0]==67264L: 00257 print x[0],x[1] ,x[2], x[2][4], x[2][3] 00258 #print x[0],x[1] ,x[2], x[2][4], timeStamptoUTC(x[2][6]), timeStamptoUTC(x[2][7]) 00259 if x[2][4] >= minI and x[2][3] <= maxI: 00260 runs_b_on.append(int(x[0])) 00261 00262 except Exception, er : 00263 print er 00264 00265 print "### runs with good B field ###" 00266 print runs_b_on 00267 00268 return runs_b_on 00269
def findQualityFiles::getGoodQRuns | ( | ) |
obtaining list of good quality runs
Definition at line 273 of file findQualityFiles.py.
00274 : 00275 00276 runs_good_dq = [] 00277 00278 dbs_quiery = "find run where dataset="+options.dqDataset+" and dq="+options.dqCriteria 00279 print 'dbs search --noheader --query="'+dbs_quiery+'" | sort' 00280 00281 os.system('python $DBSCMD_HOME/dbsCommandLine.py -c search --noheader --query="'+dbs_quiery+'" | sort > /tmp/runs_full_of_pink_bunnies') 00282 00283 #print 'python $DBSCMD_HOME/dbsCommandLine.py -c search --noheader --query="'+dbs_quiery+'" | sort > /tmp/runs_full_of_pink_bunnies' 00284 00285 ff = open('/tmp/runs_full_of_pink_bunnies', "r") 00286 line = ff.readline() 00287 while line and line!='': 00288 runs_good_dq.append(int(line)) 00289 line = ff.readline() 00290 ff.close() 00291 00292 os.system('rm /tmp/runs_full_of_pink_bunnies') 00293 00294 print "### runs with good quality ###" 00295 print runs_good_dq 00296 00297 return runs_good_dq
def findQualityFiles::getJSONGoodRuns | ( | ) |
obtain a list of good runs from JSON file
Definition at line 324 of file findQualityFiles.py.
00325 : 00326 00327 # read json file 00328 jsonfile=file(options.json,'r') 00329 jsondict = json.load(jsonfile) 00330 00331 runs_good = [] 00332 for run in jsondict.keys(): runs_good.append(int(run)) 00333 runs_good.sort() 00334 00335 #mruns=[] 00336 #for run in jsondict.keys(): 00337 # if int(run)<144115 and int(run)>136034: mruns.append(int(run)) 00338 #mruns.sort() 00339 #print len(mruns),"runs in \n",mruns 00340 00341 return runs_good
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.
00304 : 00305 00306 server = xmlrpclib.ServerProxy('https://pccmsdqm04.cern.ch/runregistry/xmlrpc') 00307 00308 rr_quiery = "{runNumber}>="+str(options.startRun)+" and {runNumber}<="+str(options.endRun)+\ 00309 " and {bfield}>="+str(options.minB)+" and {bfield}<="+str(options.maxB) 00310 if options.dqCriteria != "": rr_quiery += " and "+options.dqCriteria 00311 00312 rrstr = server.RunDatasetTable.export('GLOBAL', 'chart_runs_cum_evs_vs_bfield', rr_quiery) 00313 rrstr = rrstr.replace("bfield","'bfield'") 00314 rrstr = rrstr.replace("events","'events'") 00315 rrdata = eval(rrstr) 00316 00317 runs_good = [] 00318 for rr in rrdata['events']: runs_good.append(rr[0]) 00319 00320 return runs_good
string findQualityFiles::action = "store_true" |
Definition at line 92 of file findQualityFiles.py.
string findQualityFiles::allOptions = '### ' |
Definition at line 189 of file findQualityFiles.py.
string findQualityFiles::comma = "," |
Definition at line 450 of file findQualityFiles.py.
Referenced by edm::ParameterSetConverter::convertParameterSets(), edm::FileLocator::init(), and searchABCDstring().
string findQualityFiles::commandline = " " |
Definition at line 38 of file findQualityFiles.py.
list 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.
int findQualityFiles::default = '' |
Definition at line 56 of file findQualityFiles.py.
string findQualityFiles::dest = "alcaDataset" |
Definition at line 57 of file findQualityFiles.py.
tuple findQualityFiles::ff = open('/tmp/runs_and_files_full_of_pink_bunnies','r') |
Definition at line 406 of file findQualityFiles.py.
tuple findQualityFiles::files_events = zip(list_of_files, list_of_numevents) |
Definition at line 429 of file findQualityFiles.py.
tuple findQualityFiles::fname = fname.rstrip('\n') |
Definition at line 411 of file findQualityFiles.py.
string findQualityFiles::help = "[REQUIRED] Name of the input AlCa dataset to get filenames from." |
Definition at line 52 of file findQualityFiles.py.
list findQualityFiles::infotofile = ["### %s\n" % commandline] |
Definition at line 41 of file findQualityFiles.py.
string findQualityFiles::jj = '' |
Definition at line 186 of file findQualityFiles.py.
Referenced by SiPixelDigiSource::analyze(), myFastSimVal::analyze(), EwkMuDQM::analyze(), TestTrackHits::analyze(), TestOutliers::analyze(), HaloTrigger::analyze(), SignedDecayLength3D::apply(), JetTracksAssociationDR::associateTracksToJets(), TopValidation::beginJob(), HcalLogicalMapGenerator::buildCALIBMap(), CommissioningHistosUsingDb::buildDetInfo(), TrackerGeomBuilderFromGeometricDet::buildGeomDet(), HcalLogicalMapGenerator::buildHOXMap(), CocoaDaqReaderRoot::BuildMeasurementsFromOptAlign(), ConversionProducer::buildSuperAndBasicClusterGeoMap(), HcalDataCertification::CertifyHcal(), Fit::CheckIfMeasIsProportionalToAnother(), SiStripConfigDb::clone(), CommissioningHistosUsingDb::detInfo(), DTTrigGeom::dumpGeom(), MatrixMeschach::EliminateColumns(), MatrixMeschach::EliminateLines(), energy_ieta(), energy_iphi(), TkHistoMap::fill(), SiStripCommissioningSource::fillCablingHistos(), FittedEntriesSet::FillCorrelations(), FittedEntriesSet::FillEntriesAveragingSets(), SiPixelActionExecutor::fillFEDErrorSummary(), MELaserPrim::fillHistograms(), Fit::FillMatricesWithMeasurements(), StorageAccount::fillSummary(), CocoaDaqReaderRoot::GetMeasFromDist(), CocoaDaqReaderRoot::GetMeasFromPosition2D(), CocoaDaqReaderRoot::GetMeasFromPositionCOPS(), CocoaDaqReaderRoot::GetMeasFromTilt(), Fit::GetMeasurementName(), EcalLaserAnalyzer2::getShapes(), HcalCholeskyMatrix::getValue(), HLTPMMassFilter::hltFilter(), HLTPMDocaFilter::hltFilter(), MELaserPrim::init(), DDG4ProductionCuts::initialize(), SiStripDbParams::inputDcuInfoXmlFiles(), SiStripDbParams::inputFecXmlFiles(), SiStripDbParams::inputFedXmlFiles(), SiStripDbParams::inputModuleXmlFiles(), TSFit::inverms(), TFParams::inverpj(), OptoScanTask::locateTicks(), FittedEntriesManager::MakeHistos(), PFJetAlgorithm::MergeJets(), ConversionHitChecker::nHitsBeforeVtx(), MatrixMeschach::operator*=(), MatrixMeschach::ostrDump(), SiStripDbParams::partition(), SiStripDbParams::partitionNames(), PerigeeKinematicState::PerigeeKinematicState(), CSCFakeDBCrosstalk::prefillDBCrosstalk(), SiStripDbParams::print(), SiStripFecCabling::print(), SiStripDetCabling::print(), SiStripConfigDb::printAnalysisDescriptions(), SiStripConfigDb::printDeviceDescriptions(), SiStripConfigDb::printFedConnections(), SiStripConfigDb::printFedDescriptions(), cms::SimpleTrackListMerger::produce(), FlavorHistoryProducer::produce(), ConversionTrackMerger::produce(), JetTagProducer::produce(), reco::modules::JetFlavourIdentifier::produce(), GenJetBCEnergyRatio::produce(), CaloGeometryDBEP< T, U >::produceAligned(), hcaltb::HcalTBTDCUnpacker::reconstructWC(), SiStripConfigDb::runs(), TkHistoMap::setBinContent(), magfieldparam::BFit3D::SetCoeff_Linear(), magfieldparam::BFit::SetField(), HcalCholeskyMatrix::setValue(), IPTools::signedDecayLength3D(), ConfigurationDBHandler::startElement(), TouchableToHistory::touchableToNavStory(), ZdcTestAnalysis::update(), MaterialBudgetAction::update(), CountProcessesAction::update(), MaterialBudgetForward::update(), SiStripConfigDb::usingDatabase(), and MuonErrorMatrix::Value().
list findQualityFiles::list_of_files = [] |
Definition at line 401 of file findQualityFiles.py.
list 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 = 18160 |
Definition at line 180 of file findQualityFiles.py.
Referenced by HFTimingTrust::checkHFTimErr(), MuonGeometryArrange::endHist(), HLTMuonTrimuonL3Filter::hltFilter(), HLTMuonL3PreFilter::hltFilter(), HLTMuonDimuonL3Filter::hltFilter(), L3TkMuonProducer::produce(), HcalSimpleRecAlgoImpl::reco(), CastorSimpleRecAlgoImpl::reco(), ZdcSimpleRecAlgoImpl::reco1(), ZdcSimpleRecAlgoImpl::reco2(), HcalQLPlotAnalAlgos::recoCalib(), HcalSimpleRecAlgo::reconstruct(), and DualByL2TSG::selectTSG().
int findQualityFiles::minI = 18160 |
Definition at line 179 of file findQualityFiles.py.
Referenced by MuonGeometryArrange::endHist().
tuple findQualityFiles::parser = optparse.OptionParser(usage) |
Definition at line 49 of file findQualityFiles.py.
string findQualityFiles::rr = '' |
Definition at line 183 of file findQualityFiles.py.
Referenced by HLTGetDigi::analyze(), CaloMCTruthTreeProducer::analyze(), PFMCTruthTreeProducer::analyze(), ConversionProducer::buildCollection(), FreeTrajectoryState::canReach(), ConversionProducer::checkTrackPair(), DDPixBarLayerAlgo::execute(), HCalSD::getHitFibreBundle(), HCalSD::getHitPMT(), CaloSubdetectorGeometry::getSummary(), graphwalker< N, E >::graphwalker(), RadialStripTopology::localError(), JetPlusTrackCorrector::matchTracks(), JetTracksAssociationDRVertexAssigned::produce(), AlignmentPrescaler::produce(), MaterialBudgetForward::stopAfter(), MaterialBudgetHcal::stopAfter(), evf::FUEventProcessor::supervisor(), FEConfigWeightGroupDat::writeArrayDB(), FEConfigLinDat::writeArrayDB(), MonPNGreenDat::writeArrayDB(), MonPNBlueDat::writeArrayDB(), MonPNLed1Dat::writeArrayDB(), MonPNLed2Dat::writeArrayDB(), MonPNRedDat::writeArrayDB(), MonPNMGPADat::writeArrayDB(), DCULVRVoltagesDat::writeArrayDB(), MonPNIRedDat::writeArrayDB(), and FEConfigFgrGroupDat::writeArrayDB().
tuple findQualityFiles::runs_b_on = [] |
get good B field runs from RunInfo DB
Definition at line 345 of file findQualityFiles.py.
tuple findQualityFiles::runs_good = [] |
use run registry API is specified
use JSON file if specified
Definition at line 357 of file findQualityFiles.py.
tuple findQualityFiles::runs_good_dq = [] |
Add requiremment of good quality runs.
Definition at line 356 of file findQualityFiles.py.
tuple findQualityFiles::size = len(list_of_files) |
Write out results.
Definition at line 442 of file findQualityFiles.py.
Referenced by DigiCollectionFP420::add(), CaloHitResponse::add(), edm::helper::Filler< Association< C > >::add(), L1GtTriggerMenuConfigOnlineProd::addCorrelationCondition(), BetaCalculatorRPC::addInfoToCandidate(), HcalHardwareXml::addPart(), smproxy::DataRetrieverMonitorCollection::addRetrievedSample(), fireworks::addStraightLineSegment(), SiStripQualityHotStripIdentifier::algoAnalyze(), reco::TrackBase::algoByName(), reco::Conversion::algoByName(), SiStripNoises::allNoises(), SiStripPedestals::allPeds(), HLTBJet::analyseCorrectedJets(), HLTBJet::analyseCorrectedJetsL1FastJet(), HLTBJet::analyseJets(), HLTBJet::analyseLifetime(), HLTBJet::analyseLifetimeL1FastJet(), HLTBJet::analyseLifetimePF(), HLTBJet::analyseLifetimeSingleTrack(), HLTBJet::analyseLifetimeSingleTrackL1FastJet(), HLTBJet::analysePerformance(), HLTBJet::analysePerformanceL1FastJet(), HLTBJet::analysePFJets(), reco::modules::AnalyticalTrackSelector::AnalyticalTrackSelector(), BxTiming::analyze(), HLTMuonMatchAndPlot::analyze(), BTagPerformanceAnalyzerOnData::analyze(), PhotonValidator::analyze(), EESelectiveReadoutTask::analyze(), EcalTestPulseAnalyzer::analyze(), EmDQMReco::analyze(), OccupancyPlotter::analyze(), EcalTPGParamBuilder::analyze(), TopElectronHLTOfflineSource::analyze(), EwkMuLumiMonitorDQM::analyze(), BTagPerformanceAnalyzerMC::analyze(), test::GlobalNumbersAnalysis::analyze(), EcalLaserAnalyzer::analyze(), DTSegmentsTask::analyze(), RECOVertex::analyze(), SegmentTrackAnalyzer::analyze(), HLTOniaSource::analyze(), cms::ProducerAnalyzer::analyze(), EcalLaserAnalyzer2::analyze(), HLTMonHcalIsoTrack::analyze(), HcalSummaryClient::analyze(), SiStripFEDMonitorPlugin::analyze(), HLTMonBTagIPSource::analyze(), PixelVTXMonitor::analyze(), EcalPulseShapeGrapher::analyze(), HOCalibAnalyzer::analyze(), DQMHcalIsoTrackHLT::analyze(), Rivet::CMS_FWD_10_011::analyze(), DTSegmentAnalysisTask::analyze(), HeavyFlavorValidation::analyze(), HLTMuonPlotter::analyze(), L1TFED::analyze(), EBSelectiveReadoutTask::analyze(), MuonAlignmentAnalyzer::analyze(), evf::EvFRecordInserter::analyze(), CaloTowerAnalyzer::analyze(), HLTMonBTagMuSource::analyze(), GeneralHLTOffline::analyze(), TaggingVariablePlotter::analyzeTag(), HLTEventAnalyzerRAW::analyzeTrigger(), EZMgrVL< T >::assign(), TrackerHitAssociator::associateMultiRecHit(), TrackerHitAssociator::associateMultiRecHitId(), edm::RefGetter< T >::back(), PickEvents::beginJob(), DTChamberEfficiencyTask::beginLuminosityBlock(), DTEfficiencyTask::beginLuminosityBlock(), DTResolutionAnalysisTask::beginLuminosityBlock(), LumiCalculator::beginRun(), HLTMonBTagIPSource::beginRun(), HLTMonBitSummary::beginRun(), HLTMonBTagMuSource::beginRun(), MagGeoBuilderFromDDD::bLayer::bin(), CaloHitRespoNew::blankOutUsedSamples(), EcalHitResponse::blankOutUsedSamples(), TrackerOfflineValidation::bookDirHists(), BOOST_PYTHON_MODULE(), MagGeoBuilderFromDDD::build(), FWSimpleProxyBuilder::build(), FWTauProxyBuilderBase::buildBaseTau(), CaloGeometryHelper::buildCrystalArray(), SiStripFedCabling::buildFedCabling(), MagGeoBuilderFromDDD::bLayer::buildMagBLayer(), CaloGeometryHelper::buildNeighbourArray(), FWPFClusterRPZUtils::buildRhoPhiClusterLineSet(), FWPFClusterRPZUtils::buildRhoZClusterLineSet(), EcalHitMaker::buildSegments(), CSCSegAlgoST::buildSegments(), FWJetProxyBuilder::buildViewType(), FWMETProxyBuilder::buildViewType(), FWSimpleProxyBuilder::buildViewType(), L1MuDTChambThContainer::bxSize(), L1MuDTChambPhContainer::bxSize(), L1MuDTTrackContainer::bxSize(), CSCHaloAlgo::Calculate(), MeasurementTiltmeter::calculateSimulatedValue(), MeasurementSensor2D::calculateSimulatedValue(), MeasurementDistancemeter3dim::calculateSimulatedValue(), MeasurementCOPS::calculateSimulatedValue(), MeasurementDistancemeter::calculateSimulatedValue(), MeasurementDiffEntry::calculateSimulatedValue(), PerformancePayloadFromBinnedTFormula::check(), StormStorageMaker::check(), StormLcgGtStorageMaker::check(), DCacheStorageMaker::check(), RFIOStorageMaker::check(), LStoreStorageMaker::check(), LocalStorageMaker::check(), XrdStorageMaker::check(), stor::FileHandler::checkAdler32(), global_simpleAngular_0::checkParameters(), global_linear_0::checkParameters(), global_simpleAngular_2::checkParameters(), global_linear_1::checkParameters(), MuScleFit::checkParameters(), global_simpleAngular_1::checkParameters(), CSCSegAlgoST::ChooseSegments2(), CSCSegAlgoST::ChooseSegments3(), CalorimetryManager::clean(), EcalEndcapRecHitsMaker::clean(), EcalBarrelRecHitsMaker::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(), MuonResidualsFitter::correctBField(), FourVectorHLTOnline::countHLTGroupBXHitsEndLumiBlock(), FourVectorHLTOffline::countHLTGroupBXHitsEndLumiBlock(), TrigResRateMon::countHLTGroupBXHitsEndLumiBlock(), ConstrainedTreeBuilder::covarianceMatrix(), ConstrainedTreeBuilderT::covarianceMatrix(), PFPhotonTranslator::createBasicClusterPtrs(), PFElectronTranslator::createBasicClusterPtrs(), DialogFrame::createCmdFrame(), PFElectronTranslator::createGsfElectronCoreRefs(), PFElectronTranslator::createGsfElectrons(), PFPhotonTranslator::createPreshowerClusterPtrs(), PFElectronTranslator::createPreshowerClusterPtrs(), SiPixelUtility::createStatusLegendMessages(), PFElectronTranslator::createSuperClusterGsfMapRefs(), Numbers::crystals(), TtFullHadSignalSel::CSV_Bjet(), EcalElectronicsMapping::dccConstituents(), HLTLevel1GTSeed::debugPrint(), PhysicsTools::VarProcessor::deriv(), magfieldparam::rz_poly::Diff(), stor::KeepNewest< T >::doEnq(), stor::FailIfFull< T >::doInsert(), stor::RejectNewest< T >::doInsert(), stor::KeepNewest< T >::doInsert(), CSCAFEBThrAnalysis::done(), edm::FUShmOutputModule::doOutputEvent(), edm::FUShmOutputModule::doOutputHeader(), GctRawToDigi::doVerboseOutput(), CaloNavigator< EBDetId >::down(), FWTextTreeCellRenderer::draw(), TtFullHadSignalSel::dRMin(), TtFullHadSignalSel::dRMinMass(), cond::PayLoadInspector< DataT >::dump(), CSCAnodeLCTProcessor::dumpDigis(), PrintMaterialBudgetInfo::dumpElementMassFraction(), pat::GenericDuplicateRemover< Comparator, Arbitrator >::duplicates(), MuScleFit::duringFastLoop(), MuScleFit::duringLoop(), CaloNavigator< EBDetId >::east(), EBHitResponse::EBHitResponse(), EcalHitMaker::EcalHitMaker(), PFRecHitProducerECAL::ecalNeighbArray(), DTTracoChip::edgeBTI(), EEHitResponse::EEHitResponse(), CalorimetryManager::EMShowerSimulation(), MuonGeometryArrange::endHist(), ImpactParameterCalibration::endJob(), SumHistoCalibration::endJob(), FourVectorHLTClient::endRun(), edm::IndexIntoFile::endRunOrLumi(), reco::Conversion::EoverP(), reco::Conversion::EoverPrefittedTracks(), DTBtiChip::eraseTrigger(), ESHitResponse::ESHitResponse(), MuonSeedCreator::estimatePtCSC(), MuonSeedCreator::estimatePtDT(), MuonSeedCreator::estimatePtOverlap(), HCALProperties::eta2ieta(), ParticleTowerProducer::eta2ieta(), TrackQuality::evaluate(), L1GtCorrelationCondition::evaluateCondition(), ora::DeleteOperation::execute(), DDEcalBarrelNewAlgo::execute(), DDEcalBarrelAlgo::execute(), ora::UpdateOperation::execute(), PedsFullNoiseSummaryFactory::extract(), PedsOnlySummaryFactory::extract(), NoiseSummaryFactory::extract(), PedestalsSummaryFactory::extract(), EcalHitMaker::fastInsideCell(), fit::RootMinuit< Function >::fcn_(), SiPixelClusterModule::fill(), OptoScanTask::fill(), PFCandidateMonitor::fill(), SiPixelTrackResidualModule::fill(), PFJetMonitor::fill(), fill_dups(), FWHFTowerProxyBuilderBase::fillCaloData(), FWECALDetailViewBuilder::fillData(), edm::IndexIntoFile::fillEventNumbersOrEntries(), QcdUeDQM::fillHltBits(), QcdLowPtDQM::fillHltBits(), EcalElectronicsMapper::fillMaps(), SiPixelUtility::fillPaveText(), CSCEfficiency::fillRechitsSegments_info(), edm::IndexIntoFile::fillRunOrLumiIndexes(), DetIdAssociator::fillSet(), FastTimerServiceClient::fillSummaryPlots(), SiStripFedZeroSuppression::fillThresholds_(), TriggerSummaryProducerAOD::fillTriggerObjectCollections(), edm::OwnVector< T, P >::fillView(), edm::PtrVector< T >::fillView(), edm::RefToBaseVector< T >::fillView(), cms::ClusterMTCCFilter::filter(), PFMETFilter::filter(), HLTLogMonitorFilter::filter(), PFFilter::filter(), CSCDigiValidator::filter(), FilterOR::FilterOR(), ora::PVectorHandler::finalize(), cond::IOVProxy::find(), pat::GenericOverlapFinder< Distance >::find(), SETSeedFinder::findAllValidSets(), GctFormatTranslateMCLegacy::findBx0OffsetInCollection(), L1GtVhdlWriterCore::findObjectType(), graph< N, E >::findRoots(), CastorPacker::findSamples(), HcalPacker::findSamples(), CastorCtdcPacker::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(), EcalDQMBinningService::getBinMap(), DTMuonMillepede::getbsurveyMatrix(), ComponentFactoryByName< B >::getBuilder(), DTMuonMillepede::getCcsMatrix(), DCCDataUnpacker::getCCUValue(), hcalCalib::GetCoefFromMtrxInvOfAve(), HcalLutManager::getCompressionLutXmlFromAsciiMaster(), HcalLutManager::getCompressionLutXmlFromCoder(), L1GtVhdlTemplateFile::getConditionsFromAlgo(), DTMuonMillepede::getCsurveyMatrix(), FWCompactVerticalLayout::GetDefaultSize(), HDetIdAssociator::getDetIdsInACone(), JetMatchingTools::getGenParticle(), HcalQIEManager::getHfQieTable(), LumiSummaryRunHeader::getHLTIndex(), WatcherStreamFileReader::getInputFile(), LumiSummaryRunHeader::getL1Index(), HcalLutManager::getLinearizationLutXmlFromAsciiMasterEmap(), HcalLutManager::getLinearizationLutXmlFromCoder(), HcalLutManager::getLinearizationLutXmlFromCoderEmap(), L1TMenuHelper::getLUSOTrigger(), HcalLutManager::getLutXmlFromAsciiMaster(), JetPartonMatching::getMatchForParton(), popcon::SiStripPopConHandlerUnitTestGain< T >::getNewObjects(), popcon::EcalTPGFineGrainTowerEEHandler::getNewObjects(), popcon::EcalTPGFineGrainEBGroupHandler::getNewObjects(), popcon::EcalTPGWeightGroupHandler::getNewObjects(), popcon::DQMXMLFileSourceHandler::getNewObjects(), popcon::SiStripPopConHandlerUnitTestNoise< T >::getNewObjects(), L1TriggerScalerHandler::getNewObjects(), popcon::SiStripDetVOffHandler::getNewObjects(), popcon::SiStripPopConDbObjHandler< T, U >::getNewObjects(), popcon::EcalTPGWeightIdMapHandler::getNewObjects(), popcon::DQMHistoryPopConHandler< U >::getNewObjects(), popcon::EcalTPGSpikeThresholdHandler::getNewObjects(), RunSummaryHandler::getNewObjects(), popcon::SiStripPopConConfigDbObjHandler< T >::getNewObjects(), popcon::EcalTPGSlidingWindowHandler::getNewObjects(), popcon::EcalTPGPedestalsHandler::getNewObjects(), RunInfoHandler::getNewObjects(), popcon::RPCEMapSourceHandler::getNewObjects(), popcon::EcalTPGPhysicsConstHandler::getNewObjects(), popcon::EcalTPGFineGrainEBIdMapHandler::getNewObjects(), popcon::EcalTPGLutIdMapHandler::getNewObjects(), popcon::EcalTPGLinConstHandler::getNewObjects(), popcon::DQMSummarySourceHandler::getNewObjects(), popcon::DQMReferenceHistogramRootFileSourceHandler::getNewObjects(), popcon::SiStripPopConHandlerUnitTest< T >::getNewObjects(), RPCDBPerformanceHandler::getNewObjects(), popcon::EcalTPGLutGroupHandler::getNewObjects(), popcon::EcalTPGFineGrainStripEEHandler::getNewObjects(), RPCDBHandler::getNewObjects(), PVFitter::getNPVsperBX(), pos::PixelConfigFile::getPath(), BeamFitter::getPVvectorSize(), HcalQIEManager::getQIETableFromFile(), edm::IndexIntoFile::IndexIntoFileItrSorted::getRunOrLumiEntryType(), edm::IndexIntoFile::IndexIntoFileItrNoSort::getRunOrLumiEntryType(), EVTColContainer::getSize(), JetPartonMatching::getSumDeltaE(), JetPartonMatching::getSumDeltaR(), magfieldparam::rz_poly::GetSVal(), magfieldparam::rz_poly::GetVVal(), EcalTrivialConditionRetriever::getWeightsFromConfiguration(), HcalLutManager::getZdcLutXml(), FWEveViewManager::haveViewForBit(), reco::HcalNoiseRBXArray::HcalNoiseRBXArray(), cond::IOVProxy::head(), PixelTripletNoTipGenerator::hitTriplets(), PixelTripletLowPtGenerator::hitTriplets(), PixelTripletHLTGenerator::hitTriplets(), PixelTripletLargeTipGenerator::hitTriplets(), stor::detail::ChainData::hltClassName(), HLTPMDocaFilter::hltFilter(), HLTLevel1GTSeed::HLTLevel1GTSeed(), stor::detail::ChainData::hltURL(), PFRecHitProducerHO::hoNeighbArray(), pat::TriggerEvent::indexAlgorithm(), pat::TriggerEvent::indexCondition(), pat::TriggerEvent::indexFilter(), HDShower::indexFinder(), HFShower::indexFinder(), pat::TriggerEvent::indexPath(), EcalEndcapRecHitsMaker::init(), CombinedHitPairGeneratorForPhotonConversion::init(), HcalRecHitsMaker::init(), CombinedHitQuadrupletGeneratorForPhotonConversion::init(), MuDetRing::init(), CombinedHitPairGenerator::init(), EcalBarrelRecHitsMaker::init(), StMeasurementDetSet::init(), edm::BranchDescription::initBranchName(), Combinatorics::initial_permutation(), MillePedeAlignmentAlgorithm::initialize(), edm::IndexIntoFile::IndexIntoFileItrNoSort::initializeLumi_(), evf::iDie::initMonitorElements(), edm::helper::Filler< Association< C > >::insert(), reco::TaggingVariableList::insert(), DTGeometryParsFromDD::insertChamber(), DTGeometryParsFromDD::insertLayer(), DTGeometryParsFromDD::insertSuperLayer(), EcalEndcapRecHitsMaker::isHighInterest(), EcalBarrelRecHitsMaker::isHighInterest(), MuonGeometryArrange::isMother(), RPCLogCone::isPlaneFired(), edm::IndexIntoFile::IndexIntoFileItrNoSort::isSameLumi(), edm::IndexIntoFile::IndexIntoFileItrSorted::isSameLumi(), edm::IndexIntoFile::IndexIntoFileItrNoSort::isSameRun(), edm::IndexIntoFile::IndexIntoFileItrSorted::isSameRun(), popcon::SiStripPopConHandlerUnitTestGain< T >::isTransferNeeded(), popcon::SiStripPopConHandlerUnitTestNoise< T >::isTransferNeeded(), popcon::SiStripPopConHandlerUnitTest< T >::isTransferNeeded(), TtFullHadSignalSel::jet_etaetaMoment(), TtFullHadSignalSel::jet_etaphiMoment(), TtFullHadSignalSel::jet_phiphiMoment(), join(), LaserHitPairGenerator::LaserHitPairGenerator(), LayerTriplets::layers(), FWCompactVerticalLayout::Layout(), CalorimetryManager::loadFromEcalBarrel(), CalorimetryManager::loadFromEcalEndcap(), CalorimetryManager::loadFromHcal(), DisplayManager::loadGPFBlocks(), CalorimetryManager::loadMuonSimTracks(), StripCPEfromTemplate::localParameters(), FittedEntriesManager::MakeHistos(), RPCFakeCalibration::makeNoise(), EcalDeadChannelRecoveryAlgos::MakeNxNMatrice(), reco::PFDisplacedVertexCandidate::matrix2vector(), reco::PFBlock::matrix2vector(), edm::Provenance::moduleName(), FinalTreeBuilder::momentumPart(), AntiElectronIDMVA::MVAValue(), 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::StreamerInputFile::openStreamerFile(), DDVector::operator std::vector< int >(), Comparison< Ref, RefQualifier, Rec, RecQualifier, Alg >::operator()(), CSCThrTurnOnFcn::operator()(), lhef::JetInput::operator()(), operator<<(), edm::RefGetter< T >::operator[](), PFClusterAlgo::parameter(), AlpgenHeader::parameterName(), DDLParser::parse(), L1GtTriggerMenuXmlParser::parseCorrelation(), evf::iDie::parseModuleHisto(), MuonGeometryArrange::passChosen(), pat::TriggerEvent::pathModules(), PixelSLinkDataInputSource::PixelSLinkDataInputSource(), edm::PoolSource::PoolSource(), lhef::pop(), IODConfig::populateClob(), MODCCSHFDat::populateClob(), FastTimerService::postBeginJob(), PFAlgo::postMuonCleaning(), File::prefetch(), edm::IndexIntoFile::IndexIntoFileItrNoSort::previousEventRange(), edm::RootInputFileSequence::previousFile(), edm::IndexIntoFile::IndexIntoFileItrImpl::previousLumiWithEvents(), PedestalsAnalysis::print(), edm::detail::ThreadSafeIndexedRegistry< T, E >::print(), L1GtPrescaleFactors::print(), BlockFormatter::print(), edm::detail::ThreadSafeRegistry< KEY, T, E >::print(), CSCCFEBStatusDigi::print(), NoiseAnalysis::print(), PedsFullNoiseAnalysis::print(), L1GtBoard::print(), PedsOnlyAnalysis::print(), edm::ParameterDescriptionBase::print_(), edm::ParameterWildcardBase::print_(), PrimaryVertexAnalyzer4PU::printEventSummary(), reco::CaloCluster::printHitAndFraction(), process(), edm::Provenance::processConfigurationID(), G4ProcessTypeEnumerator::processG4Name(), processTrig(), HcalTBSource::produce(), SiStripRegFEDSelector::produce(), AlCaHcalNoiseProducer::produce(), InputGenJetsParticleSelector::produce(), AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::produce(), SubdetFEDSelector::produce(), reco::modules::TrackMultiSelector::produce(), GenParticleProducer::produce(), ShallowRechitClustersProducer::produce(), reco::PhysObjectMatcher< C1, C2, S, D, Q >::produce(), AssociationVector2ValueMap< KeyRefProd, CVal >::produce(), SiPixelDigiToRaw::produce(), ECALRegFEDSelector::produce(), SETPatternRecognition::produce(), SoftLepton::produce(), RawDataCollectorModule::produce(), reco::modulesNew::Matcher< C1, C2, S, D >::produce(), HLTTauRefCombiner::produce(), AssociationMapOneToOne2Association< CKey, CVal >::produce(), reco::modulesNew::MCTruthCompositeMatcher::produce(), HcalCalibFEDSelector::produce(), ZToLLEdmNtupleDumper::produce(), ShallowTrackClustersProducer::produce(), RawDataCollectorByLabel::produce(), EcalGlobalShowerContainmentCorrectionsVsEtaESProducer::produce(), EcalRecHitsMerger::produce(), CandidateProducer< TColl, CColl, Selector, Conv, Creator, Init >::produce(), EcalShowerContainmentCorrectionsESProducer::produce(), ShallowSimTracksProducer::produce(), ESRecHitsMerger::produce(), reco::modules::CaloRecHitCandidateProducer< HitCollection >::produce(), DeDxDiscriminatorProducer::produce(), ShallowSimhitClustersProducer::produce(), edm::Provenance::psetID(), edm::BranchDescription::psetID(), CSCCathodeLCTProcessor::pulseExtension(), CSCAnodeLCTProcessor::pulseExtension(), edm::DataMixingEMDigiWorker::putEM(), edm::DataMixingHcalDigiWorker::putHcal(), reco::TrackBase::qualityByName(), PileUpProducer::read(), NuclearInteractionSimulator::read(), CalibratedHistogramXML::read(), cond::FileReader::read(), cond::TBufferBlobStreamingService::read(), HcalLutManager::read_lmap(), MODCCSHFDat::readClob(), IODConfig::readClob(), PFRootEventManager::readFromSimulation(), edm::RootInputFileSequence::readOneRandom(), readRemote(), Model::readSystemDescription(), MuonAlignmentFromReference::readTmpFiles(), DTCtcp::Receive(), CSCEfficiency::recHitSegment_Efficiencies(), CSCEfficiency::recSimHitEfficiency(), cond::IOVProxy::refresh(), reco::tau::RecoTauConstructor::reserve(), CaloSlaveSD::ReserveMemory(), HLTrigReport::reset(), L1GctProcessor::Pipeline< T >::resize(), hitfit::LeptonTranslatorBase< AElectron >::resolution(), DisplayManager::retrieveBadBrems(), global_simpleAngular_2::rotation(), global_simpleAngular_1::rotation(), global_simpleAngular_0::rotation(), DisplayManager::rubOutGPFBlock(), edm::GroupSelectorRules::Rule::Rule(), NuclearInteractionFinder::run(), RPCHalfSorter::run(), DTTracoChip::run(), EBHitResponse::run(), FastElectronSeedGenerator::run(), PVFitter::runBXFitter(), ConvBremPFTrackFinder::runConvBremFinder(), RPCFinalSorter::runFinalSorter(), ecaldqm::ClusterTask::runOnBasicClusters(), ecaldqm::SelectiveReadoutTask::runOnDigis(), ecaldqm::SelectiveReadoutTask::runOnSource(), ecaldqm::SelectiveReadoutTask::runOnSrFlag_(), ecaldqm::TowerStatusTask::runOnTowerStatus(), RPCTriggerBoard::runTBGB(), NuclearInteractionSimulator::save(), searchABCDstring(), RawDataFEDSelector::select(), DQMImplNet< DQMNet::Object >::sendObjectListToPeer(), set_children_visibility(), EcalUncalibRecHitWorkerFixedAlphaBetaFit::setAlphaBeta(), hcaltb::HcalTBTDCUnpacker::setCalib(), hcaltb::HcalTBQADCUnpacker::setCalib(), reco::PFCandidateElectronExtra::setClusterEnergies(), KDTreeLinkerBase::setCristalPhiEtaMaxSize(), KDTreeLinkerBase::setCristalXYMaxSize(), PFAlgo::setElectronExtraRef(), HBHEStatusBitSetter::SetFlagsFromDigi(), popcon::SiStripDetVOffHandler::setForTransfer(), popcon::DQMHistoryPopConHandler< U >::setForTransfer(), popcon::SiStripPopConDbObjHandler< T, U >::setForTransfer(), popcon::SiStripPopConHandlerUnitTest< T >::setForTransfer(), popcon::SiStripPopConHandlerUnitTestGain< T >::setForTransfer(), popcon::SiStripPopConHandlerUnitTestNoise< T >::setForTransfer(), popcon::SiStripPopConConfigDbObjHandler< T >::setForTransfer(), stor::ThroughputMonitorCollection::setFragmentStoreSize(), RPCSeedLayerFinder::setInput(), PFBlockAlgo::setInput(), PFAlgo::setPhotonExtraRef(), MonTTConsistencyDat::setProblemsSize(), MonMemTTConsistencyDat::setProblemsSize(), HcalTBSource::setRunAndEventInfo(), CSCALCTTrailer2007::setSize(), CSCALCTTrailer2006::setSize(), AlignmentParameterSelector::setSpecials(), egHLT::OffHelper::setTrigInfo(), CaloHitRespoNew::setupSamples(), OpticalObject::shortName(), edm::RootOutputFile::shouldWeCloseFile(), edm::IndexIntoFile::IndexIntoFileItrNoSort::skipLumiInRun(), edm::IndexIntoFile::IndexIntoFileItrSorted::skipLumiInRun(), TtFullHadSignalSel::SM_Bjet(), edm::IndexIntoFile::SortedRunOrLumiItr::SortedRunOrLumiItr(), CaloNavigator< EBDetId >::south(), TrackClusterSplitter::splitCluster(), CombinationGenerator< T >::splitInTwoCollections(), TtFullHadSignalSel::SSVHE_Bjet(), TtFullHadSignalSel::SSVHP_Bjet(), PhysicsTools::stdStringVPrintf(), L1MuGMTLUT::PortDecoder::str(), StripCPE::StripCPE(), PTStatistics::sum(), TtFullHadSignalSel::sumDR3JetMin(), TtFullHadSignalSel::sumDR3JetMinMass(), cond::PayLoadInspector< DataT >::summary(), PTStatistics::sumR(), SiStripFedZeroSuppression::suppress(), FWSecondarySelectableSelector::syncSelection(), cond::IOVProxy::tail(), ora::ContainerUpdateTable::takeNote(), Cylinder::tangentPlane(), TtFullHadSignalSel::TCHE_Bjet(), TtFullHadSignalSel::TCHP_Bjet(), hcalCalib::Terminate(), LutXml::test_access(), HcalLutManager::test_emap(), HcalLutManager::test_xml_access(), PTStatistics::toString(), edm::ParameterSet::toStringImp(), HcalPedestalAnalysis::Trendings(), DTTracoChip::trigger(), DTBtiChip::trigger(), DTBtiChip::triggerData(), DTTracoChip::triggerData(), pat::PATObject< ObjectType >::triggerObjectMatch(), HLTScalersClient::CountLSFifo_t::trim_(), edmplugin::PluginCapabilities::tryToFind(), TSFit::TSFit(), InvariantMassFromVertex::uncertainty(), CaloNavigator< EBDetId >::up(), HcaluLUTTPGCoder::update(), pat::CandidateSummaryTable::Record::update(), LatencyHistosUsingDb::update(), PTStatistics::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(), MuonAlignmentFromReference::writeTmpFiles(), lumi::TRGScalers2DB::writeTrgDataToSchema2(), IOOutput::writev(), IOInput::xreadv(), IOOutput::xwritev(), and MuScleFit::~MuScleFit().
tuple findQualityFiles::total_numevents = 0 |
Definition at line 404 of file findQualityFiles.py.
string findQualityFiles::type = "string" |
Definition at line 53 of file findQualityFiles.py.
tuple findQualityFiles::uniq_list_of_runs = list(set(list_of_runs)) |
Definition at line 419 of file findQualityFiles.py.
tuple 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.