I have a problem with passing std vector to python.
std::vector<TMVA::Interval*> parameterRanges;
parameterRanges.push_back(new TMVA::Interval(-10,10));
parameterRanges.push_back(new TMVA::Interval(0.1,10));
parameterRanges.push_back(new TMVA::Interval(0,2000));
And I have to do that in python. unfortunately I can not change Interval C++ class. I can use std.vector in python, but only std.vector('double') or int, but not object type.
Do you have any idea?
TMVA::Intervalin Python without putting it in a vector? That would be the problem you would have to solve first.