#ifndef _tpython_test_h_ #define _tpython_test_h_ #include "TPython.h" TPython::Exec("from math import sqrt as sqrt_py"); Double_t sqrt_cpp(Double_t x){ return (Double_t) TPython::Eval("sqrt_py(4.)"); } #endif