/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/FWLite/interface/RunFactory.h
47 строк
1 KB
Shahzad Malik Muzaffar
[DataFormats][clang-tidy] make deleted function public
28 июл 2021, 15:38
28 июл 2021, 15:38
4fd5d99
Код
Авторство
О чём код?
#ifndef DataFormats_FWLite_RunFactory_h #define DataFormats_FWLite_RunFactory_h // -*- C++ -*- // // Package: DataFormats/FWLite // Class : RunFactory // /**\class RunFactory RunFactory.h src/DataFormats/interface/RunFactory.h Description: [one line class summary] Usage: <usage> */ // // Original Author: // Created: Wed Feb 10 11:15:16 CST 2010 // #include <memory> #include "DataFormats/FWLite/interface/Run.h" #include "FWCore/Utilities/interface/thread_safety_macros.h" namespace fwlite { class RunFactory { public: RunFactory(); virtual ~RunFactory(); // ---------- const member functions --------------------- std::shared_ptr<fwlite::Run> makeRun(std::shared_ptr<BranchMapReader> branchMap) const; RunFactory(const RunFactory&) = delete; // stop default const RunFactory& operator=(const RunFactory&) = delete; // stop default private: //This class is not inteded to be used across different threads CMS_SA_ALLOW mutable std::shared_ptr<fwlite::Run> run_; // ---------- member data -------------------------------- }; } // namespace fwlite #endif