Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:59

0001 #ifndef FWCore_Framework_ParameterSetReader_h
0002 #define FWCore_Framework_ParameterSetReader_h
0003 
0004 #include "FWCore/ParameterSet/interface/ParameterSet.h"
0005 
0006 namespace edm {
0007 
0008   std::unique_ptr<edm::ParameterSet> getPSetFromConfig(const std::string& config);
0009 
0010   std::unique_ptr<edm::ParameterSet> readConfig(std::string const& config, const std::vector<std::string>& args);
0011 
0012   std::unique_ptr<edm::ParameterSet> readConfig(std::string const& config);
0013 
0014   void makeParameterSets(std::string const& configtext, std::unique_ptr<ParameterSet>& main);
0015 
0016   std::unique_ptr<edm::ParameterSet> readPSetsFrom(std::string const& fileOrString);
0017 
0018 }  // namespace edm
0019 #endif