/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
FWCore/Framework/src/ScheduleInfo.cc
97 строк
2 KB
W. David Dagenhart
Only changes from scram build code-format-all
30 апр 2019, 22:05
30 апр 2019, 22:05
23d7339
Код
Авторство
О чём код?
// -*- C++ -*- // // Package: Framework // Class : ScheduleInfo // // Implementation: // [Notes on implementation] // // Original Author: Chris Jones // Created: Thu Jul 15 19:40:14 CEST 2010 // // system include files #include <algorithm> #include <iterator> #include <functional> // user include files #include "FWCore/Framework/interface/ScheduleInfo.h" #include "FWCore/Framework/interface/Schedule.h" #include "FWCore/ParameterSet/interface/Registry.h" using namespace edm; // // constants, enums and typedefs // // // static data member definitions // // // constructors and destructor // ScheduleInfo::ScheduleInfo(const Schedule* iSchedule) : schedule_(iSchedule) {} // ScheduleInfo::ScheduleInfo(const ScheduleInfo& rhs) // { // // do actual copying here; // } ScheduleInfo::~ScheduleInfo() {} // // assignment operators // // const ScheduleInfo& ScheduleInfo::operator=(const ScheduleInfo& rhs) // { // //An exception safe implementation is // ScheduleInfo temp(rhs); // swap(rhs); // // return *this; // } // // member functions // // // const member functions // void ScheduleInfo::availableModuleLabels(std::vector<std::string>& oLabelsToFill) const { using std::placeholders::_1; std::vector<ModuleDescription const*> desc = schedule_->getAllModuleDescriptions(); oLabelsToFill.reserve(oLabelsToFill.size() + desc.size()); std::transform( desc.begin(), desc.end(), std::back_inserter(oLabelsToFill), std::bind(&ModuleDescription::moduleLabel, _1)); } const ParameterSet* ScheduleInfo::parametersForModule(const std::string& iLabel) const { using std::placeholders::_1; std::vector<ModuleDescription const*> desc = schedule_->getAllModuleDescriptions(); std::vector<ModuleDescription const*>::iterator itFound = std::find_if(desc.begin(), desc.end(), std::bind(std::equal_to<std::string>(), iLabel, std::bind(&ModuleDescription::moduleLabel, _1))); if (itFound == desc.end()) { return nullptr; } return pset::Registry::instance()->getMapped((*itFound)->parameterSetID()); } void ScheduleInfo::availablePaths(std::vector<std::string>& oLabelsToFill) const { schedule_->availablePaths(oLabelsToFill); } void ScheduleInfo::modulesInPath(const std::string& iPathLabel, std::vector<std::string>& oLabelsToFill) const { schedule_->modulesInPath(iPathLabel, oLabelsToFill); } // // static member functions //