Functions | |
def | getGoodBRuns |
functions definitions | |
def | getGoodQRuns |
obtaining list of good quality runs | |
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. | |
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 = 18160 |
int | minI = 18160 |
tuple | parser = optparse.OptionParser(usage) |
list | runs_b_on = [] |
get good B field runs from RunInfo DB | |
list | runs_good = [] |
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" |
string | usage = '%prog [options]\n\n' |
To parse commandline args. | |
v = options.verbose |
def findQualityFiles::getGoodBRuns | ( | options | ) |
functions definitions
get good B field runs from RunInfo DB
Definition at line 23 of file findQualityFiles.py.
00024 : 00025 00026 runs_b_on = [] 00027 00028 sys.setdlopenflags(DLFCN.RTLD_GLOBAL+DLFCN.RTLD_LAZY) 00029 00030 a = FWIncantation() 00031 #os.putenv("CORAL_AUTH_PATH","/afs/cern.ch/cms/DB/conddb") 00032 rdbms = RDBMS("/afs/cern.ch/cms/DB/conddb") 00033 00034 db = rdbms.getDB(options.dbName) 00035 tags = db.allTags() 00036 00037 if options.printTags: 00038 print "\nOverview of all tags in "+options.dbName+" :\n" 00039 print tags 00040 print "\n" 00041 sys.exit() 00042 00043 # for inspecting last run after run has started 00044 #tag = 'runinfo_31X_hlt' 00045 tag = options.dbTag 00046 00047 # for inspecting last run after run has stopped 00048 #tag = 'runinfo_test' 00049 00050 try : 00051 #log = db.lastLogEntry(tag) 00052 00053 #for printing all log info present into log db 00054 #print log.getState() 00055 00056 iov = inspect.Iov(db,tag) 00057 #print "########overview of tag "+tag+"########" 00058 #print iov.list() 00059 00060 if v>1 : 00061 print "######## summries ########" 00062 for x in iov.summaries(): 00063 print x[0], x[1], x[2] ,x[3] 00064 00065 what={} 00066 00067 if v>1 : 00068 print "###(start_current,stop_current,avg_current,max_current,min_current,run_interval_micros) vs runnumber###" 00069 print iov.trend(what) 00070 00071 if v>0: 00072 print "######## trends ########" 00073 for x in iov.trendinrange(what,options.startRun-1,options.endRun+1): 00074 if v>0 or x[0]==67647L or x[0]==66893L or x[0]==67264L: 00075 print x[0],x[1] ,x[2], x[2][4], x[2][3] 00076 #print x[0],x[1] ,x[2], x[2][4], timeStamptoUTC(x[2][6]), timeStamptoUTC(x[2][7]) 00077 if x[2][4] >= minI and x[2][3] <= maxI: 00078 runs_b_on.append(int(x[0])) 00079 00080 except Exception, er : 00081 print er 00082 00083 print "### runs with good B field ###" 00084 print runs_b_on 00085 00086 return runs_b_on 00087
def findQualityFiles::getGoodQRuns | ( | options | ) |
obtaining list of good quality runs
Definition at line 91 of file findQualityFiles.py.
00092 : 00093 00094 runs_good_dq = [] 00095 00096 dbs_quiery = "find run where dataset="+options.dqDataset+" and dq="+options.dqCriteria 00097 00098 os.system('python $DBSCMD_HOME/dbsCommandLine.py -c search --noheader --query="'+dbs_quiery+'" | sort > /tmp/runs_full_of_pink_bunnies') 00099 00100 #print 'python $DBSCMD_HOME/dbsCommandLine.py -c search --noheader --query="'+dbs_quiery+'" | sort > /tmp/runs_full_of_pink_bunnies' 00101 00102 ff = open('/tmp/runs_full_of_pink_bunnies', "r") 00103 line = ff.readline() 00104 while line and line!='': 00105 runs_good_dq.append(int(line)) 00106 line = ff.readline() 00107 ff.close() 00108 00109 os.system('rm /tmp/runs_full_of_pink_bunnies') 00110 00111 print "### runs with good quality ###" 00112 print runs_good_dq 00113 00114 return runs_good_dq 00115 00116
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 = 18160 |
Definition at line 239 of file findQualityFiles.py.
Referenced by HFTimingTrust::checkHFTimErr(), MuonGeometryArrange::endHist(), HLTMuonL3PreFilter::filter(), HLTMuonDimuonL3Filter::filter(), L3TkMuonProducer::produce(), HcalSimpleRecAlgoImpl::reco(), CastorSimpleRecAlgoImpl::reco(), ZdcSimpleRecAlgoImpl::reco1(), ZdcSimpleRecAlgoImpl::reco2(), HcalQLPlotAnalAlgos::recoCalib(), HcalSimpleRecAlgo::reconstruct(), and DualByL2TSG::selectTSG().
int findQualityFiles::minI = 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(), HcalHardwareXml::addPart(), smproxy::DataRetrieverMonitorCollection::addRetrievedSample(), fireworks::addStraightLineSegment(), SiStripQualityHotStripIdentifier::algoAnalyze(), reco::TrackBase::algoByName(), reco::Conversion::algoByName(), SiStripNoises::allNoises(), SiStripPedestals::allPeds(), HLTBJet::analyseCorrectedJets(), HLTBJet::analyseJets(), HLTBJet::analyseLifetime(), HLTBJet::analyseLifetimeSingleTrack(), HLTBJet::analysePerformance(), BxTiming::analyze(), BTagPerformanceAnalyzerOnData::analyze(), HLTMuonMatchAndPlot::analyze(), PhotonValidator::analyze(), EcalTestPulseAnalyzer::analyze(), EESelectiveReadoutTask::analyze(), EmDQMReco::analyze(), HLTTauDQMLitePathPlotter::analyze(), EcalTPGParamBuilder::analyze(), EwkMuLumiMonitorDQM::analyze(), TopElectronHLTOfflineSource::analyze(), BTagPerformanceAnalyzerMC::analyze(), EcalLaserAnalyzer::analyze(), test::GlobalNumbersAnalysis::analyze(), DTSegmentsTask::analyze(), RECOVertex::analyze(), HLTTauDQMPathPlotter::analyze(), SegmentTrackAnalyzer::analyze(), EcalLaserAnalyzer2::analyze(), cms::ProducerAnalyzer::analyze(), HLTOniaSource::analyze(), HcalSummaryClient::analyze(), HLTMonHcalIsoTrack::analyze(), HOCalibAnalyzer::analyze(), EcalPulseShapeGrapher::analyze(), HLTMonBTagIPSource::analyze(), QcdPhotonsDQM::analyze(), SiStripFEDMonitorPlugin::analyze(), DQMHcalIsoTrackHLT::analyze(), DTSegmentAnalysisTask::analyze(), HLTTauDQML1Plotter::analyze(), HeavyFlavorValidation::analyze(), MuonAlignmentAnalyzer::analyze(), EBSelectiveReadoutTask::analyze(), L1TFED::analyze(), HLTMonBTagMuSource::analyze(), CaloTowerAnalyzer::analyze(), evf::EvFRecordInserter::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(), 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(), MeasurementSensor2D::calculateSimulatedValue(), MeasurementTiltmeter::calculateSimulatedValue(), MeasurementCOPS::calculateSimulatedValue(), MeasurementDistancemeter3dim::calculateSimulatedValue(), MeasurementDistancemeter::calculateSimulatedValue(), MeasurementDiffEntry::calculateSimulatedValue(), StormStorageMaker::check(), StormLcgGtStorageMaker::check(), DCacheStorageMaker::check(), RFIOStorageMaker::check(), LStoreStorageMaker::check(), LocalStorageMaker::check(), XrdStorageMaker::check(), stor::FileHandler::checkAdler32(), global_linear_0::checkParameters(), global_simpleAngular_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(), FourVectorHLTOnline::countHLTGroupBXHitsEndLumiBlock(), FourVectorHLTOffline::countHLTGroupBXHitsEndLumiBlock(), TrigResRateMon::countHLTGroupBXHitsEndLumiBlock(), ConstrainedTreeBuilder::covarianceMatrix(), ConstrainedTreeBuilderT::covarianceMatrix(), PFPhotonTranslator::createBasicClusterPtrs(), PFElectronTranslator::createBasicClusterPtrs(), DialogFrame::createCmdFrame(), PFElectronTranslator::createGsfElectronCoreRefs(), PFElectronTranslator::createGsfElectrons(), PFPhotonTranslator::createPhotons(), 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::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(), TtFullHadSignalSel::dRMin(), TtFullHadSignalSel::dRMinMass(), 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(), 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(), 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::OwnVector< T, P >::fillView(), edm::PtrVector< T >::fillView(), edm::RefToBaseVector< T >::fillView(), edm::Vector< T >::fillView(), HLTPi0RecHitsFilter::filter(), cms::ClusterMTCCFilter::filter(), PFMETFilter::filter(), HLTLogMonitorFilter::filter(), PFFilter::filter(), CSCDigiValidator::filter(), HLTPMDocaFilter::filter(), FilterOR::FilterOR(), ora::PVectorHandler::finalize(), 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(), 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(), WatcherStreamFileReader::getInputFile(), HcalLutManager::getLinearizationLutXmlFromAsciiMasterEmap(), HcalLutManager::getLinearizationLutXmlFromCoder(), HcalLutManager::getLinearizationLutXmlFromCoderEmap(), HcalLutManager::getLutXmlFromAsciiMaster(), JetPartonMatching::getMatchForParton(), popcon::SiStripPopConHandlerUnitTestGain< T >::getNewObjects(), popcon::EcalTPGFineGrainEBGroupHandler::getNewObjects(), popcon::EcalTPGFineGrainTowerEEHandler::getNewObjects(), popcon::DQMXMLFileSourceHandler::getNewObjects(), popcon::EcalTPGWeightGroupHandler::getNewObjects(), popcon::SiStripPopConHandlerUnitTestNoise< T >::getNewObjects(), popcon::SiStripDetVOffHandler::getNewObjects(), L1TriggerScalerHandler::getNewObjects(), popcon::EcalTPGWeightIdMapHandler::getNewObjects(), popcon::SiStripPopConDbObjHandler< T, U >::getNewObjects(), popcon::DQMHistoryPopConHandler< U >::getNewObjects(), RunSummaryHandler::getNewObjects(), popcon::SiStripPopConConfigDbObjHandler< T >::getNewObjects(), popcon::EcalTPGPedestalsHandler::getNewObjects(), popcon::EcalTPGSlidingWindowHandler::getNewObjects(), RunInfoHandler::getNewObjects(), popcon::EcalTPGFineGrainEBIdMapHandler::getNewObjects(), popcon::EcalTPGPhysicsConstHandler::getNewObjects(), popcon::RPCEMapSourceHandler::getNewObjects(), popcon::EcalTPGLinConstHandler::getNewObjects(), popcon::EcalTPGLutIdMapHandler::getNewObjects(), popcon::DQMReferenceHistogramRootFileSourceHandler::getNewObjects(), popcon::DQMSummarySourceHandler::getNewObjects(), popcon::SiStripPopConHandlerUnitTest< T >::getNewObjects(), popcon::EcalTPGFineGrainStripEEHandler::getNewObjects(), popcon::EcalTPGLutGroupHandler::getNewObjects(), RPCDBPerformanceHandler::getNewObjects(), PVFitter::getNPVsperBX(), pos::PixelConfigFile::getPath(), BeamFitter::getPVvectorSize(), HcalQIEManager::getQIETableFromFile(), edm::IndexIntoFile::IndexIntoFileItrSorted::getRunOrLumiEntryType(), edm::IndexIntoFile::IndexIntoFileItrNoSort::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(), PixelTripletLowPtGenerator::hitTriplets(), PixelTripletHLTGenerator::hitTriplets(), PixelTripletLargeTipGenerator::hitTriplets(), stor::detail::ChainData::hltClassName(), HLTLevel1GTSeed::HLTLevel1GTSeed(), HLTTauDQMSummaryPlotter::HLTTauDQMSummaryPlotter(), stor::detail::ChainData::hltURL(), pat::TriggerEvent::indexAlgorithm(), pat::TriggerEvent::indexCondition(), pat::TriggerEvent::indexFilter(), HDShower::indexFinder(), HFShower::indexFinder(), pat::TriggerEvent::indexPath(), EcalEndcapRecHitsMaker::init(), HcalRecHitsMaker::init(), MuDetRing::init(), EcalBarrelRecHitsMaker::init(), CombinedHitPairGenerator::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(), 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(), FittedEntriesManager::MakeHistos(), RPCFakeCalibration::makeNoise(), EcalDeadChannelRecoveryAlgos::MakeNxNMatrice(), reco::PFDisplacedVertexCandidate::matrix2vector(), reco::PFBlock::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::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(), MuonGeometryArrange::passChosen(), pat::TriggerEvent::pathModules(), PixelSLinkDataInputSource::PixelSLinkDataInputSource(), HLTTauDQMSummaryPlotter::plot(), edm::PoolSource::PoolSource(), lhef::pop(), IODConfig::populateClob(), MODCCSHFDat::populateClob(), PFAlgo::postMuonCleaning(), File::prefetch(), edm::IndexIntoFile::IndexIntoFileItrNoSort::previousEventRange(), edm::RootInputFileSequence::previousFile(), edm::IndexIntoFile::IndexIntoFileItrImpl::previousLumiWithEvents(), PedestalsAnalysis::print(), L1GtPrescaleFactors::print(), edm::detail::ThreadSafeIndexedRegistry< T, E >::print(), BlockFormatter::print(), edm::detail::ThreadSafeRegistry< KEY, T, E >::print(), NoiseAnalysis::print(), CSCCFEBStatusDigi::print(), L1GtBoard::print(), PedsFullNoiseAnalysis::print(), PedsOnlyAnalysis::print(), edm::ParameterDescriptionBase::print_(), edm::ParameterWildcardBase::print_(), PrimaryVertexAnalyzer4PU::printEventSummary(), reco::CaloCluster::printHitAndFraction(), process(), edm::Provenance::processConfigurationID(), G4ProcessTypeEnumerator::processG4Name(), processTrig(), HcalTBSource::produce(), AlCaHcalNoiseProducer::produce(), SiStripRegFEDSelector::produce(), InputGenJetsParticleSelector::produce(), SubdetFEDSelector::produce(), AssociationVectorSelector< KeyRefProd, CVal, KeySelector, ValSelector >::produce(), GenParticleProducer::produce(), ShallowRechitClustersProducer::produce(), reco::modules::TrackMultiSelector::produce(), AssociationVector2ValueMap< KeyRefProd, CVal >::produce(), reco::PhysObjectMatcher< C1, C2, S, D, Q >::produce(), ECALRegFEDSelector::produce(), SiPixelDigiToRaw::produce(), SETPatternRecognition::produce(), SoftLepton::produce(), reco::modulesNew::Matcher< C1, C2, S, D >::produce(), RawDataCollectorModule::produce(), HLTTauRefCombiner::produce(), AssociationMapOneToOne2Association< CKey, CVal >::produce(), reco::modulesNew::MCTruthCompositeMatcher::produce(), ShallowTrackClustersProducer::produce(), ZToLLEdmNtupleDumper::produce(), HcalCalibFEDSelector::produce(), EcalGlobalShowerContainmentCorrectionsVsEtaESProducer::produce(), RawDataCollectorByLabel::produce(), EcalRecHitsMerger::produce(), EcalShowerContainmentCorrectionsESProducer::produce(), CandidateProducer< TColl, CColl, Selector, Conv, Creator, Init >::produce(), ShallowSimTracksProducer::produce(), ESRecHitsMerger::produce(), reco::modules::CaloRecHitCandidateProducer< HitCollection >::produce(), ShallowSimhitClustersProducer::produce(), DeDxDiscriminatorProducer::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::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(), PFJetFilter::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(), FastElectronSeedGenerator::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::HcalTBTDCUnpacker::setCalib(), hcaltb::HcalTBQADCUnpacker::setCalib(), PFConversionAlgo::setCandidates(), reco::PFCandidateElectronExtra::setClusterEnergies(), 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(), PFConversionAlgo::setLinks(), 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(), CombinationGenerator< T >::splitInTwoCollections(), TtFullHadSignalSel::SSVHE_Bjet(), TtFullHadSignalSel::SSVHP_Bjet(), PhysicsTools::stdStringVPrintf(), L1MuGMTLUT::PortDecoder::str(), StripCPE::StripCPE(), TtFullHadSignalSel::sumDR3JetMin(), TtFullHadSignalSel::sumDR3JetMinMass(), cond::PayLoadInspector< DataT >::summary(), SiStripFedZeroSuppression::suppress(), FWSecondarySelectableSelector::syncSelection(), ora::ContainerUpdateTable::takeNote(), Cylinder::tangentPlane(), TtFullHadSignalSel::TCHE_Bjet(), TtFullHadSignalSel::TCHP_Bjet(), hcalCalib::Terminate(), MuonAlignmentFromReference::terminate(), LutXml::test_access(), HcalLutManager::test_emap(), HcalLutManager::test_xml_access(), 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(), 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().
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.