#include "TF1.h" #include int main() { TF1 function("identity", "x"); std::cout << "evaluation: " << function.Eval(1.) << std::endl; return 0; }