/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
IOPool/Input/test/IOExerciser.cc
300 строк
11 KB
W. David Dagenhart
Migrate legacy output modules to be 'one' types
01 май 2020, 22:15
01 май 2020, 22:15
6cf0b27
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: IOPool/Input // Class: IOExerciser // Original Author: Brian Bockelman // Created: Mon Jun 4 17:35:30 CDT 2012 // /* Description: Read out a fixed subset of an input file Implementation: Much of the interaction with the framework is from EventContentAnalyzer and AsciiOutputModule See also IOPool/Input/doc/IOExerciser-README for a more detailed description of how to use this plugin. */ // system include files #include <map> #include <memory> // user include files #include "DataFormats/Provenance/interface/StableProvenance.h" #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/one/OutputModule.h" #include "FWCore/Framework/interface/EventForOutput.h" #include "FWCore/Framework/interface/MakerMacros.h" #include "FWCore/Framework/interface/GenericHandle.h" #include "FWCore/Framework/interface/FileBlock.h" #include "FWCore/Utilities/interface/Exception.h" #include "FWCore/Utilities/interface/EDGetToken.h" #include "FWCore/Utilities/interface/propagate_const.h" #include "FWCore/ParameterSet/interface/ParameterSet.h" #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h" #include "FWCore/ParameterSet/interface/ParameterSetDescription.h" #include "TBranch.h" #include "TTree.h" #include "ProductInfo.h" class IOExerciser : public edm::one::OutputModule<edm::WatchInputFiles> { public: explicit IOExerciser(const edm::ParameterSet&); ~IOExerciser() override; static void fillDescriptions(edm::ConfigurationDescriptions& descriptions); enum SelectionStrategy { SmallestFirst = 0, LargestFirst, RoundRobin }; private: typedef std::map<edm::BranchID, edm::EDGetToken> TokenMap; // ----------required OutputModule functions----------------------------- void write(edm::EventForOutput const& e) override; void writeRun(edm::RunForOutput const&) override {} void writeLuminosityBlock(edm::LuminosityBlockForOutput const&) override {} void respondToOpenInputFile(edm::FileBlock const& fb) override; void respondToCloseInputFile(edm::FileBlock const& fb) override {} // ----------internal implementation functions--------------------------- void computeProducts(edm::EventForOutput const& e, TokenMap const& tokens); void fillSmallestFirst(ProductInfos const& all_products, Long64_t threshold); void fillLargestFirst(ProductInfos const& all_products, Long64_t threshold); void fillRoundRobin(ProductInfos const& all_products, Long64_t threshold); // ----------member data ------------------------------------------------ TokenMap m_tokens; bool m_fetchedProducts; edm::propagate_const<TTree*> m_eventsTree; ProductInfos m_products; ProductInfos m_all_products; unsigned int m_percentBranches; SelectionStrategy m_selectionStrategy; Long64_t m_currentUsage; const unsigned int m_triggerFactor; unsigned int m_triggerCount; }; // // constructors and destructor // IOExerciser::IOExerciser(const edm::ParameterSet& pset) : edm::one::OutputModuleBase(pset), edm::one::OutputModule<edm::WatchInputFiles>(pset), m_tokens(), m_fetchedProducts(false), m_eventsTree(nullptr), m_percentBranches(pset.getUntrackedParameter<unsigned int>("percentBranches")), m_currentUsage(0), m_triggerFactor(pset.getUntrackedParameter<unsigned int>("triggerFactor")), m_triggerCount(0) { //now do what ever initialization is needed std::string const& selectionStrategy = pset.getUntrackedParameter<std::string>("selectionStrategy"); if (selectionStrategy == "smallestFirst") { m_selectionStrategy = SmallestFirst; } else if (selectionStrategy == "largestFirst") { m_selectionStrategy = LargestFirst; } else if (selectionStrategy == "roundRobin") { m_selectionStrategy = RoundRobin; } else { edm::Exception ex(edm::errors::Configuration); ex << "Invalid IOExerciser selection strategy: " << selectionStrategy; throw ex; } if ((m_percentBranches < 1) || (m_percentBranches > 100)) { edm::Exception ex(edm::errors::Configuration); ex << "Invalid value for percentBranches (" << m_percentBranches << "); must be between 1 and 100, inclusive"; throw ex; } for (auto const& product : keptProducts()[edm::InEvent]) { m_tokens.insert(std::make_pair(product.first->branchID(), product.second)); } } IOExerciser::~IOExerciser() {} // // member functions // // ------------ method called for each event ------------ void IOExerciser::write(edm::EventForOutput const& e) { using namespace edm; if (!m_fetchedProducts) { computeProducts(e, m_tokens); } m_triggerCount += 1; int ctr = 0; ProductInfos& products_to_use = (m_triggerCount == m_triggerFactor) ? m_all_products : m_products; if (m_triggerCount == m_triggerFactor) { m_triggerCount = 0; } for (auto const& product : products_to_use) { edm::BasicHandle result = e.getByToken(product.token(), product.type()); ctr++; } edm::LogInfo("IOExerciser") << "IOExerciser read out " << ctr << " products."; } // ------------ method called when starting to processes a run ------------ void IOExerciser::respondToOpenInputFile(edm::FileBlock const& fb) { TTree* eventsTree = fb.tree(); if (!eventsTree) { edm::Exception ex(edm::errors::ProductNotFound); ex << "IOExerciser was run with a TFile missing an events TTree."; throw ex; } m_eventsTree = eventsTree; m_fetchedProducts = false; } void IOExerciser::computeProducts(edm::EventForOutput const& e, TokenMap const& tokens) { using namespace edm; typedef std::vector<StableProvenance const*> Provenances; m_fetchedProducts = true; Provenances provenances; e.getAllStableProvenance(provenances); if (!m_eventsTree) { edm::Exception ex(edm::errors::ProductNotFound); ex << "IOExerciser invoked computeProducts without an events TTree."; throw ex; } m_all_products.clear(); m_all_products.reserve(provenances.size()); Long64_t totalSize = 0; for (auto const& provenance : provenances) { const std::string& branchName = provenance->branchName(); TBranch* branch = (TBranch*)m_eventsTree->GetBranch(branchName.c_str()); if (!branch) { LogWarning("IOExerciser") << "Ignoring missing branch " << branchName; continue; } edm::BranchID bid = provenance->branchID(); auto const iter = m_tokens.find(bid); if (iter == m_tokens.end()) { // product not kept continue; } ProductInfo pi(*provenance, *branch, iter->second); totalSize += pi.size(); m_all_products.push_back(pi); } Long64_t threshold = m_percentBranches * totalSize / 100; LogDebug("IOExerciser") << "Threshold is " << threshold << " of " << totalSize << " bytes."; std::sort(m_all_products.begin(), m_all_products.end(), ProductInfo::sort); m_products.clear(); m_currentUsage = 0; switch (m_selectionStrategy) { case SmallestFirst: fillSmallestFirst(m_all_products, threshold); break; case LargestFirst: fillLargestFirst(m_all_products, threshold); break; case RoundRobin: fillRoundRobin(m_all_products, threshold); break; } LogInfo("IOExerciser") << "Reading " << m_products.size() << " of " << m_all_products.size() << " products. Aggregate branch size is " << m_currentUsage << " of " << totalSize << " bytes."; } void IOExerciser::fillSmallestFirst(ProductInfos const& all_products, Long64_t threshold) { for (ProductInfos::const_iterator it = all_products.begin(), itEnd = all_products.end(); (it != itEnd) && (m_currentUsage < threshold); ++it) { m_products.push_back(*it); m_currentUsage += it->size(); LogDebug("IOExerciser") << "Adding label " << it->tag().label() << ", size " << it->size() << "; current usage is " << m_currentUsage << " of " << threshold << " bytes."; } } void IOExerciser::fillLargestFirst(ProductInfos const& all_products, Long64_t threshold) { m_currentUsage = 0; for (ProductInfos::const_iterator it = --all_products.end(), itBegin = all_products.begin(); m_currentUsage < threshold; --it) { m_products.push_back(*it); m_currentUsage += it->size(); LogDebug("IOExerciser") << "Adding label " << it->tag().label() << ", size " << it->size() << "; current usage is " << m_currentUsage << " of " << threshold << " bytes."; if (it == itBegin) { break; } } } void IOExerciser::fillRoundRobin(ProductInfos const& all_products, Long64_t threshold) { size_t currentSmallest = 0, currentLargest = all_products.size() - 1; bool useSmallest = true; while (m_currentUsage < threshold) { if (useSmallest) { ProductInfo const& pi = all_products[currentSmallest]; m_currentUsage += pi.size(); m_products.push_back(pi); currentSmallest++; useSmallest = false; LogDebug("IOExerciser") << "Adding label " << pi.tag().label() << ", size " << pi.size() << "; current usage is " << m_currentUsage << " of " << threshold << " bytes."; } else { ProductInfo const& pi = all_products[currentLargest]; m_currentUsage += pi.size(); m_products.push_back(pi); currentLargest--; useSmallest = true; LogDebug("IOExerciser") << "Adding label " << pi.tag().label() << ", size " << pi.size() << "; current usage is " << m_currentUsage << " of " << threshold << " bytes."; } } } // ------------ method fills 'descriptions' with the allowed parameters for the module ------------ void IOExerciser::fillDescriptions(edm::ConfigurationDescriptions& descriptions) { //The following says we do not know what parameters are allowed so do no validation // Please change this to state exactly what you do use, even if it is no parameters edm::ParameterSetDescription desc; desc.setComment("Reads a configurable subset of EDM files."); desc.addUntracked<unsigned int>("percentBranches", 100) ->setComment( "Control the percent of branches IOExerciser will read out.\n" "Branches are weighted by size. Valid values are between 1 and 100.\n" "Additional branches will be read out until at least this percent has\n" "been read; thus, IOExerciser will likely read out more than this amount."); desc.addUntracked<std::string>("selectionStrategy", "smallestFirst") ->setComment( "Control the branch selection strategy:\n" "'smallestFirst' (default): Read branches in increasing order of size until limit is hit.\n" "'largestFirst': Read branches in decreasing order of size until limit is hit.\n" "'roundRobin': Read a small branch, then large branch. Repeat until size limit is hit."); desc.addUntracked<unsigned int>("triggerFactor", 0) ->setComment( "Controls the trigger rate. Once every 'triggerFactor' events, IOExerciser\n" "will read out all event data, not just the selected branches. Setting to 10\n" "will cause it to read out one event in 10. Setting it to zero would mean to\n" "disable trigger behavior completely. Defaults to 0."); edm::one::OutputModule<edm::WatchInputFiles>::fillDescription(desc); descriptions.add("IOExerciser", desc); } //define this as a plug-in DEFINE_FWK_MODULE(IOExerciser);