Macros

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
#ifndef FWCore_Framework_ParameterSetReader_h
#define FWCore_Framework_ParameterSetReader_h

#include "FWCore/ParameterSet/interface/ParameterSet.h"

namespace edm {

  std::unique_ptr<edm::ParameterSet> getPSetFromConfig(const std::string& config);

  std::unique_ptr<edm::ParameterSet> readConfig(std::string const& config, const std::vector<std::string>& args);

  std::unique_ptr<edm::ParameterSet> readConfig(std::string const& config);

  void makeParameterSets(std::string const& configtext, std::unique_ptr<ParameterSet>& main);

  std::unique_ptr<edm::ParameterSet> readPSetsFrom(std::string const& fileOrString);

}  // namespace edm
#endif