Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:00

0001 // -*- C++ -*-
0002 //
0003 // Package:     PyBind11ParameterSet
0004 // Class  :     initializePyBind11Module
0005 //
0006 
0007 #include "FWCore/PythonParameterSet/src/initializePyBind11Module.h"
0008 #include "PyBind11Module.h"
0009 #include <pybind11/embed.h>
0010 #include <iostream>
0011 
0012 namespace edm {
0013   namespace python {
0014     void initializePyBind11Module() {
0015       char *libFWCoreParameterSet = const_cast<char *>("libFWCorePythonParameterSet");
0016       pybind11::module::import(libFWCoreParameterSet);
0017     }
0018   }  // namespace python
0019 }  // namespace edm