MaCh3  2.6.0
Reference Guide
Public Member Functions | Private Attributes | List of all members
MinuitFit Class Reference

Implementation of Minuit fitting algorithm [20]. More...

#include <Fitters/MinuitFit.h>

Inheritance diagram for MinuitFit:
[legend]
Collaboration diagram for MinuitFit:
[legend]

Public Member Functions

 MinuitFit (Manager *const fitMan)
 Constructor. More...
 
virtual ~MinuitFit ()
 Destructor. More...
 
void RunMCMC () final
 Actual implementation of Minuit Fit algorithm. More...
 
- Public Member Functions inherited from LikelihoodFit
 LikelihoodFit (Manager *const fitMan)
 Constructor. More...
 
virtual ~LikelihoodFit ()
 Destructor. More...
 
virtual double CalcChi2 (const double *x)
 Chi2 calculation over all included samples and syst objects. More...
 
int GetNPars () const
 Get total number of params, this sums over all covariance objects. More...
 
- Public Member Functions inherited from FitterBase
 FitterBase (Manager *const fitMan)
 Constructor. More...
 
virtual ~FitterBase ()
 Destructor for the FitterBase class. More...
 
void AddSampleHandler (SampleHandlerInterface *sample)
 This function adds a sample PDF object to the analysis framework. The sample PDF object will be utilized in fitting procedures or likelihood scans. More...
 
void AddSystObj (ParameterHandlerBase *cov)
 This function adds a Covariance object to the analysis framework. The Covariance object will be utilized in fitting procedures or likelihood scans. More...
 
void DragRace (const int NLaps=100)
 Calculates the required time for each sample or covariance object in a drag race simulation. Inspired by Dan's feature. More...
 
void RunLLHScan ()
 Perform a 1D likelihood scan. More...
 
void RunLLHMap ()
 Perform a general multi-dimensional likelihood scan. More...
 
void GetStepScaleBasedOnLLHScan (const std::string &filename="")
 LLH scan is good first estimate of step scale. More...
 
void Run2DLLHScan ()
 Perform a 2D likelihood scan. More...
 
void RunSigmaVar ()
 Perform a 1D/2D sigma var for all samples. More...
 
virtual void StartFromPreviousFit (const std::string &FitName)
 Allow to start from previous fit/chain. More...
 
std::string GetName () const
 Get name of class. More...
 

Private Attributes

std::unique_ptr< ROOT::Math::Minimizer > minuit
 Pointer to minimizer, which most often is Minuit. More...
 

Additional Inherited Members

- Protected Member Functions inherited from LikelihoodFit
void PrepareFit ()
 prepare output and perform sanity checks More...
 
- Protected Member Functions inherited from FitterBase
void ProcessMCMC ()
 Process MCMC output. More...
 
void PrepareOutput ()
 Prepare the output file. More...
 
void SaveOutput ()
 Save output and close files. More...
 
void SanitiseInputs ()
 Remove obsolete memory and make other checks before fit starts. More...
 
void SaveSettings ()
 Save the settings that the MCMC was run with. More...
 
bool GetScanRange (std::map< std::string, std::vector< double >> &scanRanges) const
 YSP: Set up a mapping to store parameters with user-specified ranges, suggested by D. Barrow. More...
 
void GetParameterScanRange (const ParameterHandlerBase *cov, const int i, double &CentralValue, double &lower, double &upper, const int n_points, const std::string &suffix="") const
 Helper function to get parameter scan range, central value. More...
 
bool CheckSkipParameter (const std::vector< std::string > &SkipVector, const std::string &ParamName) const
 KS: Check whether we want to skip parameter using skip vector. More...
 
void CustomRange (const std::string &ParName, const double sigma, double &ParamShiftValue) const
 For comparison with other fitting frameworks (like P-Theta) we usually have to apply different parameter values then usual 1, 3 sigma. More...
 
- Protected Attributes inherited from LikelihoodFit
int NPars
 Number of all parameters from all covariances. More...
 
int NParsPCA
 Number of all parameters from all covariances in PCA base. More...
 
bool fMirroring
 Flag telling if mirroring is used or not. More...
 
- Protected Attributes inherited from FitterBase
ManagerfitMan
 The manager for configuration handling. More...
 
unsigned int step
 current state More...
 
double logLCurr
 current likelihood More...
 
double logLProp
 proposed likelihood More...
 
double accProb
 current acceptance prob More...
 
int accCount
 counts accepted steps More...
 
unsigned int stepStart
 step start, by default 0 if we start from previous chain then it will be different More...
 
std::vector< double > sample_llh
 store the llh breakdowns More...
 
std::vector< double > syst_llh
 systematic llh breakdowns More...
 
std::vector< SampleHandlerInterface * > samples
 Sample holder. More...
 
unsigned int TotalNSamples
 Total number of samples used, single SampleHandler can store more than one analysis sample! More...
 
std::vector< ParameterHandlerBase * > systematics
 Systematic holder. More...
 
std::unique_ptr< TStopwatch > clock
 tells global time how long fit took More...
 
std::unique_ptr< TStopwatch > stepClock
 tells how long single step/fit iteration took More...
 
double stepTime
 Time of single step. More...
 
std::unique_ptr< TRandom3 > random
 Random number. More...
 
TFile * outputFile
 Output. More...
 
TDirectory * CovFolder
 Output cov folder. More...
 
TDirectory * SampleFolder
 Output sample folder. More...
 
TTree * outTree
 Output tree with posteriors. More...
 
int auto_save
 auto save every N steps More...
 
bool fTestLikelihood
 Necessary for some fitting algorithms like PSO. More...
 
bool FileSaved
 Checks if file saved not repeat some operations. More...
 
bool SettingsSaved
 Checks if setting saved not repeat some operations. More...
 
bool OutputPrepared
 Checks if output prepared not repeat some operations. More...
 
std::string AlgorithmName
 Name of fitting algorithm that is being used. More...
 

Detailed Description

Implementation of Minuit fitting algorithm [20].

Author
Kamil Skwarczynski

Definition at line 18 of file MinuitFit.h.

Constructor & Destructor Documentation

◆ MinuitFit()

MinuitFit::MinuitFit ( Manager *const  fitMan)

Constructor.

Todo:
KS: Make this in future configurable, for more see: https://root.cern.ch/doc/master/classROOT_1_1Math_1_1Minimizer.html

Definition at line 5 of file MinuitFit.cpp.

5  : LikelihoodFit(man) {
6 // *******************
7  AlgorithmName = "MinuitFit";
9  // Minimizer type: determines the underlying implementation.
10  // Available types include:
11  // - "Minuit2" (recommended modern option)
12  // - "Minuit" (legacy)
13  // - "Fumili"
14  // - "GSLMultiMin" (for gradient-free minimization)
15  // - "GSLMultiFit"
16  // - "GSLSimAn" (Simulated Annealing)
17  const std::string MinimizerType = "Minuit2";
18  // Minimizer algorithm (specific to the selected type).
19  // For Minuit2, the following algorithms are available:
20  // - "Migrad" : gradient-based minimization (default)
21  // - "Simplex" : Nelder-Mead simplex method (derivative-free)
22  // - "Combined" : combination of Simplex and Migrad
23  // - "Scan" : parameter grid scan
24  const std::string MinimizerAlgo = "Migrad";
25 
26  MACH3LOG_INFO("Creating instance of Minimizer with {} and {}", MinimizerType, MinimizerAlgo);
27 
28  minuit = std::unique_ptr<ROOT::Math::Minimizer>(
29  ROOT::Math::Factory::CreateMinimizer(MinimizerType.c_str(), MinimizerAlgo.c_str()));
30 
31  std::string Features = gROOT->GetConfigFeatures();
32  if (Features.find("minuit2_omp") != std::string::npos) {
33  MACH3LOG_ERROR("Minuit in ROOT has been compiled with OMP support");
34  MACH3LOG_ERROR("Since MaCh3 uses OMP for reweight this could cause terrible clash");
35  throw MaCh3Exception(__FILE__ , __LINE__ );
36  }
37 }
#define MACH3LOG_ERROR
Definition: MaCh3Logger.h:37
#define MACH3LOG_INFO
Definition: MaCh3Logger.h:35
std::string AlgorithmName
Name of fitting algorithm that is being used.
Definition: FitterBase.h:173
LikelihoodFit(Manager *const fitMan)
Constructor.
Custom exception class used throughout MaCh3.
std::unique_ptr< ROOT::Math::Minimizer > minuit
Pointer to minimizer, which most often is Minuit.
Definition: MinuitFit.h:29

◆ ~MinuitFit()

MinuitFit::~MinuitFit ( )
virtual

Destructor.

Definition at line 41 of file MinuitFit.cpp.

41  {
42 // *************************
43 }

Member Function Documentation

◆ RunMCMC()

void MinuitFit::RunMCMC ( )
finalvirtual

Actual implementation of Minuit Fit algorithm.

Implements FitterBase.

Definition at line 47 of file MinuitFit.cpp.

47  {
48 // *******************
49  PrepareFit();
50 
51  // Remove obsolete memory and make other checks before fit starts
53 
54  //KS: For none PCA this will be equal to normal parameters
55  const int NparsMinuitFull = NPars;
56  const int NparsMinuit = NParsPCA;
57 
58  //KS: Set SetFunction we will Minimize
59  ROOT::Math::Functor fChi2(this, &MinuitFit::CalcChi2, NparsMinuit);
60  minuit->SetFunction(fChi2);
61 
62  //KS: add config or something
63  minuit->SetPrintLevel(2);
64  minuit->SetTolerance(0.01);
65  minuit->SetMaxFunctionCalls(fitMan->raw()["General"]["Minuit2"]["NSteps"].as<unsigned>());
66  minuit->SetMaxIterations(10000);
67 
68 
69  // Save the adaptive MCMC
70  for (const auto &syst : systematics)
71  {
72  if (syst->GetDoAdaption())
73  {
74  MACH3LOG_ERROR("Param Handler {} has enabled Adaption, this is not needed for Minuit so please turn it off", syst->GetDoAdaption());
75  throw MaCh3Exception(__FILE__ , __LINE__ );
76  }
77  }
78 
79  MACH3LOG_INFO("Preparing Minuit");
80  int ParCounter = 0;
81  for (std::vector<ParameterHandlerBase*>::iterator it = systematics.begin(); it != systematics.end(); ++it)
82  {
83  if(!(*it)->IsPCA())
84  {
85  for(int i = 0; i < (*it)->GetNumParams(); ++i, ++ParCounter)
86  {
87  // KS: Index, name, prior, step scale [different to MCMC],
88  // divide by 10 because this is what BANFF used to do...
89  minuit->SetVariable(ParCounter, ((*it)->GetParName(i)), (*it)->GetParPreFit(i), (*it)->GetDiagonalError(i)/10);
90  minuit->SetVariableValue(ParCounter, (*it)->GetParPreFit(i));
91  //KS: lower bound, upper bound, if Mirroring enabled then ignore
92  if(!fMirroring) minuit->SetVariableLimits(ParCounter, (*it)->GetLowerBound(i), (*it)->GetUpperBound(i));
93  if((*it)->IsParameterFixed(i))
94  {
95  minuit->FixVariable(ParCounter);
96  }
97  }
98  }
99  else
100  {
101  for(int i = 0; i < (*it)->GetNParameters(); ++i, ++ParCounter)
102  {
103  // KS: Index, name, prior, step scale [different to MCMC],
104  // divide by 10 because this is what BANFF used to do...
105  minuit->SetVariable(ParCounter, Form("%i_PCA", i), (*it)->GetPCAHandler()->GetParPropPCA(i), (*it)->GetPCAHandler()->GetEigenValuesMaster()[i]/10);
106  if((*it)->GetPCAHandler()->IsParameterFixedPCA(i))
107  {
108  minuit->FixVariable(ParCounter);
109  }
110  }
111  }
112  }
113 
114  minuit->SetPrintLevel(2);
115 
116  MACH3LOG_INFO("Starting MIGRAD");
117  minuit->Minimize();
118 
119  MACH3LOG_INFO("Starting HESSE");
120  minuit->Hesse();
121  outputFile->cd();
122 
123  TVectorD* MinuitParValue = new TVectorD(NparsMinuitFull);
124  TVectorD* MinuitParError = new TVectorD(NparsMinuitFull);
125  TMatrixDSym* Postmatrix = new TMatrixDSym(NparsMinuitFull);
126 
127  for(int i = 0; i < NparsMinuitFull; ++i)
128  {
129  (*MinuitParValue)(i) = 0;
130  (*MinuitParError)(i) = 0;
131  for(int j = 0; j < NparsMinuitFull; ++j)
132  {
133  (*Postmatrix)(i,j) = 0;
134  (*Postmatrix)(i,j) = minuit->CovMatrix(i,j);
135  }
136  }
137 
138  ParCounter = 0;
139  const double *X = minuit->X();
140  const double *err = minuit->Errors();
141  for (std::vector<ParameterHandlerBase*>::iterator it = systematics.begin(); it != systematics.end(); ++it)
142  {
143  if(!(*it)->IsPCA())
144  {
145  for(int i = 0; i < (*it)->GetNumParams(); ++i, ++ParCounter)
146  {
147  double ParVal = X[ParCounter];
148  //KS: Basically apply mirroring for parameters out of bounds
149  if(fMirroring)
150  {
151  if(ParVal < (*it)->GetLowerBound(i))
152  {
153  ParVal = (*it)->GetLowerBound(i) + ((*it)->GetLowerBound(i) - ParVal);
154  }
155  else if (ParVal > (*it)->GetUpperBound(i))
156  {
157  ParVal = (*it)->GetUpperBound(i) - ( ParVal - (*it)->GetUpperBound(i));
158  }
159  }
160  (*MinuitParValue)(ParCounter) = ParVal;
161  (*MinuitParError)(ParCounter) = err[ParCounter];
162  //KS: For fixed params HESS will not calculate error so we need to pass prior error
163  if((*it)->IsParameterFixed(i))
164  {
165  (*MinuitParError)(ParCounter) = (*it)->GetDiagonalError(i);
166  (*Postmatrix)(ParCounter,ParCounter) = (*MinuitParError)(ParCounter) * (*MinuitParError)(ParCounter);
167  }
168  }
169  }
170  else
171  {
172  //KS: We need to convert parameters from PCA to normal base
173  TVectorD ParVals((*it)->GetNumParams());
174  TVectorD ParVals_PCA((*it)->GetNParameters());
175 
176  TVectorD ErrorVals((*it)->GetNumParams());
177  TVectorD ErrorVals_PCA((*it)->GetNParameters());
178 
179  TMatrixD MatrixVals((*it)->GetNumParams(), (*it)->GetNumParams());
180  TMatrixD MatrixVals_PCA((*it)->GetNParameters(), (*it)->GetNParameters());
181 
182  //First save them
183  //KS: This code is super convoluted as MaCh3 can store separate matrices while Minuit has one matrix. In future this will be simplified, keep it like this for now.
184  const int StartVal = ParCounter;
185  for(int i = 0; i < (*it)->GetNParameters(); ++i, ++ParCounter)
186  {
187  ParVals_PCA(i) = X[ParCounter];
188  ErrorVals_PCA(i) = err[ParCounter];
189  int ParCounterMatrix = StartVal;
190  for(int j = 0; j < (*it)->GetNParameters(); ++j, ++ParCounterMatrix)
191  {
192  MatrixVals_PCA(i,j) = minuit->CovMatrix(ParCounter,ParCounterMatrix);
193  }
194  }
195  ParVals = ((*it)->GetPCAHandler()->GetTransferMatrix())*ParVals_PCA;
196  ErrorVals = ((*it)->GetPCAHandler()->GetTransferMatrix())*ErrorVals_PCA;
197  MatrixVals.Mult(((*it)->GetPCAHandler()->GetTransferMatrix()),MatrixVals_PCA);
198 
199  ParCounter = StartVal;
200  //KS: Now after going from PCA to normal let';s save it
201  for(int i = 0; i < (*it)->GetNumParams(); ++i, ++ParCounter)
202  {
203  (*MinuitParValue)(ParCounter) = ParVals(i);
204  (*MinuitParError)(ParCounter) = std::fabs(ErrorVals(i));
205  int ParCounterMatrix = StartVal;
206  for(int j = 0; j < (*it)->GetNumParams(); ++j, ++ParCounterMatrix)
207  {
208  (*Postmatrix)(ParCounter,ParCounterMatrix) = MatrixVals(i,j);
209  }
210  //If fixed take prior
211  if((*it)->GetPCAHandler()->IsParameterFixedPCA(i))
212  {
213  (*MinuitParError)(ParCounter) = (*it)->GetDiagonalError(i);
214  (*Postmatrix)(ParCounter,ParCounter) = (*MinuitParError)(ParCounter) * (*MinuitParError)(ParCounter);
215  }
216  }
217  }
218  }
219 
220  MinuitParValue->Write("MinuitParValue");
221  MinuitParError->Write("MinuitParError");
222  Postmatrix->Write("Postmatrix");
223  delete MinuitParValue;
224  delete MinuitParError;
225  delete Postmatrix;
226  // Save all the output
227  SaveOutput();
228 }
void SaveOutput()
Save output and close files.
Definition: FitterBase.cpp:229
TFile * outputFile
Output.
Definition: FitterBase.h:152
Manager * fitMan
The manager for configuration handling.
Definition: FitterBase.h:113
void SanitiseInputs()
Remove obsolete memory and make other checks before fit starts.
Definition: FitterBase.cpp:221
std::vector< ParameterHandlerBase * > systematics
Systematic holder.
Definition: FitterBase.h:139
int NParsPCA
Number of all parameters from all covariances in PCA base.
Definition: LikelihoodFit.h:25
int NPars
Number of all parameters from all covariances.
Definition: LikelihoodFit.h:23
void PrepareFit()
prepare output and perform sanity checks
bool fMirroring
Flag telling if mirroring is used or not.
Definition: LikelihoodFit.h:27
virtual double CalcChi2(const double *x)
Chi2 calculation over all included samples and syst objects.
YAML::Node const & raw() const
Return config.
Definition: Manager.h:47

Member Data Documentation

◆ minuit

std::unique_ptr<ROOT::Math::Minimizer> MinuitFit::minuit
private

Pointer to minimizer, which most often is Minuit.

Definition at line 29 of file MinuitFit.h.


The documentation for this class was generated from the following files: