Details
-
New Feature
-
Resolution: Completed
-
High
-
None
-
None
-
None
-
Feature request
Description
1) MinuitParameter class:
http://root.cern.ch/root/html/ROOT__Minuit2__MinuitParameter.html
Has methods:
const string& GetName() const
const char* Name() const
But does not have, e.g.,:
void SetName(const string& name)
(ROOT.Fit.ParameterSettings class has equivalent method)
Would it be possible to add SetName method to MinuitParameter class which would allow to set the name?
2) MnUserParameters class:
http://root.cern.ch/root/html/ROOT__Minuit2__MnUserParameters.html
Has methods:
const string& GetName(unsigned int) const
But does not have, e.g.,:
void SetName(unsigned int i, const string& name)
Would it be possible to add also this method to the MnUserParameters class?
Mainly the MinuitParameter::SetName method is currently blocking me a lot, If the methods could be added I would be very gratefull! Thanks!