Dear experts
When I use a minimizer to minimize the function, I want to retrieve the parameters after it, this is how I did:
fFit->Minimize(); //fFit is a instantiation of ROOT::Math::Minimizer
double const* pars = fFit->X();
//some usage
//Should I delete pars here???
My question is should I manage the pointer by my self (delete it)?