/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
GeneratorInterface/SherpaInterface/interface/SherpackFetcher.h
39 строк
957 B
shimashimarin
add NewFormatSherpack
27 май 2026, 20:50
27 май 2026, 20:50
112331a
Код
Авторство
О чём код?
#ifndef SherpackFetcher_h #define SherpackFetcher_h #include <iostream> #include <sstream> #include <string> #include <memory> #include <cstdint> #include <fstream> #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h" #include "FWCore/ParameterSet/interface/ParameterSetDescription.h" #include "FWCore/Utilities/interface/Exception.h" #include "GeneratorInterface/SherpaInterface/interface/SherpackUtilities.h" namespace spf { class SherpackFetcher { public: SherpackFetcher(edm::ParameterSet const &); int Fetch(); ~SherpackFetcher(); int CopyFile(std::string pathstring); const char *classname() const { return "SherpackFetcher"; } private: std::string SherpaProcess; std::string SherpackLocation; std::string SherpackChecksum; bool FetchSherpack; bool NewSherpackFormat; std::string SherpaPath; }; } // namespace spf #endif