8 : inputFile(file), pca(true) {
14 if (threshold < 0 || threshold >= 1) {
16 MACH3LOG_INFO(
"Principal component analysis but given the threshold for the principal components to be less than 0, or greater than (or equal to) 1. This will not work");
19 MACH3LOG_INFO(
"Am instead calling the usual non-PCA constructor...");
49 MACH3LOG_ERROR(
"Adaption has been enabled and now trying to enable PCA. Right now both configuration don't work with each other");
53 PCAObj = std::make_unique<PCAHandler>();
55 if(FirstPCAdpar == -999 || LastPCAdpar == -999) {
56 if(FirstPCAdpar == -999 && LastPCAdpar == -999) {
61 MACH3LOG_ERROR(
"You must either leave FirstPCAdpar and LastPCAdpar at -999 or set them both to something");
76 TFile *infile =
new TFile(file.c_str(),
"READ");
77 if (infile->IsZombie()) {
78 MACH3LOG_ERROR(
"Could not open input covariance ROOT file {} !!!", file);
83 TMatrixDSym *CovMat =
static_cast<TMatrixDSym*
>(infile->Get(name.c_str()));
86 MACH3LOG_ERROR(
"Could not find covariance matrix name {} in file {}", name, file);
87 MACH3LOG_ERROR(
"Are you really sure {} exists in the file?", name);
97 for (
int iThread = 0; iThread < nThreads; iThread++) {
120 bool CircEnabled =
false;
121 std::pair<double, double> circular_bounds;
123 bool FlipEnabled =
false;
124 std::string flip_group;
127 if (param[
"CircularBounds"]) {
129 circular_bounds = Get<std::pair<double, double>>(param[
"CircularBounds"], __FILE__, __LINE__);
132 if (param[
"FlipParameter"]) {
135 if (param[
"FlipGroup"]) {
136 flip_group = Get<std::string>(param[
"FlipGroup"], __FILE__, __LINE__);
140 flip_point = Get<double>(param[
"FlipParameter"], __FILE__, __LINE__);
143 if (!CircEnabled && !FlipEnabled) {
151 MACH3LOG_INFO(
"Enabling CircularBounds for parameter {} with range [{}, {}]",
153 circular_bounds.first,
154 circular_bounds.second);
156 if (circular_bounds.first <
_fLowBound.at(Index) || circular_bounds.second >
_fUpBound.at(Index)) {
157 MACH3LOG_ERROR(
"Circular bounds [{}, {}] for parameter {} exceed physical bounds [{}, {}]",
158 circular_bounds.first, circular_bounds.second,
166 MACH3LOG_ERROR(
"This is not supported, CircularPrior only works with flat prior");
177 MACH3LOG_INFO(
"Enabling Flipping for parameter {} in group {} with value {}",
183 if (CircEnabled && FlipEnabled) {
184 if (flip_point < circular_bounds.first || flip_point > circular_bounds.second) {
185 MACH3LOG_ERROR(
"FlipParameter value {} for parameter {} is outside the CircularBounds [{}, {}]",
186 flip_point,
GetParFancyName(Index), circular_bounds.first, circular_bounds.second);
190 const double low = circular_bounds.first;
191 const double high = circular_bounds.second;
194 const double flipped_low = 2 * flip_point - low;
195 const double flipped_high = 2 * flip_point - high;
196 const double min_flip = std::min(flipped_low, flipped_high);
197 const double max_flip = std::max(flipped_low, flipped_high);
199 if (min_flip < low || max_flip > high) {
200 MACH3LOG_ERROR(
"Flipping about point {} for parameter {} would leave circular bounds [{}, {}]",
211 if (cov ==
nullptr) {
212 MACH3LOG_ERROR(
"Could not find covariance matrix you provided to {}", __func__ );
217 invCovMatrix =
static_cast<TMatrixDSym *
>(cov->Clone());
238 _fNames = std::vector<std::string>(SizeVec);
242 _fError = std::vector<double>(SizeVec, 1.0);
243 _fCurrVal = std::vector<double>(SizeVec, 0.0);
244 _fPropVal = std::vector<M3::float_t>(SizeVec, 0.0);
245 _fLowBound = std::vector<double>(SizeVec, -999.99);
246 _fUpBound = std::vector<double>(SizeVec, 999.99);
255 for(
int i = 0; i < SizeVec; i++) {
263 for(
int i = 0; i < SizeVec; i++) {
265 for (
int j = 0; j < SizeVec; j++) {
278 MACH3LOG_DEBUG(
"Over-riding {}: _fPropVal ({}), _fCurrVal ({}), _fPreFitValue ({}) to ({})",
292 std::vector<double> props(
_fNumPar);
306 #pragma GCC diagnostic push
307 #pragma GCC diagnostic ignored "-Wuseless-cast"
311 if (__builtin_expect(!
pca, 1)) {
313 #pragma omp parallel for
315 for (
int i = 0; i <
_fNumPar; ++i) {
330 MACH3LOG_WARN(
"Tried {} times to throw parameter {} but failed",
throws, i);
349 #pragma GCC diagnostic pop
359 #pragma GCC diagnostic push
360 #pragma GCC diagnostic ignored "-Wuseless-cast"
365 for (
int i = 0; i <
_fNumPar; ++i) {
371 const double sigma = sqrt((*
covMatrix)(i,i));
372 double throwrange = sigma;
373 if (paramrange < sigma) throwrange = paramrange;
380 MACH3LOG_WARN(
"Tried {} times to throw parameter {} but failed",
throws, i);
391 #pragma GCC diagnostic pop
446 for (
const auto& [group_name, group] :
FlipGroups) {
460 #pragma omp parallel for
462 for (
int i = 0; i <
_fNumPar; ++i) {
475 #pragma omp parallel for
477 for (
int i = 0; i <
PCAObj->GetNumberPCAedParameters(); ++i)
480 if (
PCAObj->IsParameterFixedPCA(i)) {
499 #pragma omp parallel for
501 for (
int i = 0; i <
_fNumPar; ++i) {
503 #pragma GCC diagnostic push
504 #pragma GCC diagnostic ignored "-Wuseless-cast"
506 #pragma GCC diagnostic pop
520 #pragma omp parallel for
522 for (
int i = 0; i <
_fNumPar; ++i) {
535 #pragma GCC diagnostic push
536 #pragma GCC diagnostic ignored "-Wuseless-cast"
543 }
else if (
_fPropVal[index] < LowBound) {
552 for (
size_t i = 0; i <
FlipGroups[group].FlipParameterIndex.size(); ++i) {
553 const int index =
FlipGroups[group].FlipParameterIndex[i];
555 const double flip_point =
FlipGroups[group].FlipParameterPoint[i];
563 #pragma GCC diagnostic pop
569 for (
int i = 0; i <
_fNumPar; i++) {
583 MACH3LOG_INFO(
"{:<30} {:<10} {:<10} {:<10}",
"Name",
"Prior",
"Current",
"Proposed");
584 for (
int i = 0; i <
_fNumPar; ++i) {
598 #pragma omp parallel for reduction(+:logL)
610 for (
int j = 0; j <= i; ++j) {
613 double scale = (i != j) ? 1. : 0.5;
625 for (
int i = 0; i <
_fNumPar; ++i) {
649 #pragma GCC diagnostic push
650 #pragma GCC diagnostic ignored "-Wuseless-cast"
654 for (
int i = 0; i <
_fNumPar; i++) {
659 if (pars.size() !=
static_cast<size_t>(
_fNumPar)) {
663 int parsSize = int(pars.size());
664 for (
int i = 0; i < parsSize; i++) {
666 if(std::isnan(pars[i])) {
677 PCAObj->TransferToParam();
679 #pragma GCC diagnostic pop
686 for (
int i = 0; i <
_fNumPar; ++i) {
696 for (
int i = 0; i <
_fNumPar; ++i) {
709 MACH3LOG_ERROR(
"You are trying so set StepScale to 0 or negative this will not work");
715 const double SuggestedScale = 2.38/std::sqrt(
_fNumPar);
716 if(std::fabs(scale - SuggestedScale)/SuggestedScale > 1) {
717 MACH3LOG_WARN(
"Defined Global StepScale is {}, while suggested suggested {}", scale, SuggestedScale);
810 MACH3LOG_WARN(
"I couldn't find parameter with name {}, therefore will not fix it", name);
821 MACH3LOG_WARN(
"I couldn't find parameter with name {}, therefore don't know if it fixed", name);
847 if (
static_cast<int>(stepscale.size()) !=
_fNumPar)
849 MACH3LOG_WARN(
"Stepscale vector not equal to number of parameters. Quitting..");
850 MACH3LOG_WARN(
"Size of argument vector: {}", stepscale.size());
855 for (
int iParam = 0 ; iParam <
_fNumPar; iParam++) {
864 MACH3LOG_INFO(
"============================================================");
866 for (
int iParam = 0; iParam <
_fNumPar; iParam++) {
869 MACH3LOG_INFO(
"============================================================");
883 if(n_attempts > 0 && verbose) {
884 MACH3LOG_WARN(
"Covariance matrix {} was not positive-definite, made it positive-definite after {} attempts",
matrixName, n_attempts);
891 std::vector<double> stepScales(
_fNumPar, 1.0);
900 MACH3LOG_ERROR(
"Parameter skip adapt flags not set, cannot set individual step scales for skipped parameters.");
909 MACH3LOG_DEBUG(
"Updating individual step scales for non-adapting parameters to cancel global step scale change.");
917 if (cov ==
nullptr) {
918 MACH3LOG_ERROR(
"Could not find covariance matrix you provided to {}", __func__);
922 if (
covMatrix->GetNrows() != cov->GetNrows()) {
923 MACH3LOG_ERROR(
"Matrix given for throw Matrix is not the same size as the covariance matrix stored in object!");
929 throwMatrix =
static_cast<TMatrixDSym*
>(cov->Clone());
941 #pragma omp parallel for collapse(2)
954 TMatrixDSym
const &subcov) {
956 if ((last_index - first_index) >= subcov.GetNrows()) {
957 MACH3LOG_ERROR(
"Trying to SetSubThrowMatrix into range: ({},{}) with a "
958 "submatrix with only {} rows {}",
959 first_index, last_index, subcov.GetNrows(), __func__);
963 TMatrixDSym *current_ThrowMatrix =
965 for (
int i = first_index; i <= last_index; ++i) {
966 for (
int j = first_index; j <= last_index; ++j) {
967 current_ThrowMatrix->operator()(i, j) =
968 subcov(i - first_index, j - first_index);
973 delete current_ThrowMatrix;
989 for (
size_t i = 0; i < group.FlipParameterIndex.size(); ++i) {
990 const int index = group.FlipParameterIndex[i];
993 MACH3LOG_ERROR(
"Right now flipping and adapting doesn't work very well");
1003 double max_correlation = 0.01;
1004 for (
int i = 0; i <
_fNumPar; ++i) {
1005 for (
int j = 0; j <= i; ++j) {
1009 if(std::fabs(corr) > max_correlation) {
1010 MACH3LOG_ERROR(
"Correlation between skipped parameter {} ({}) and non-skipped parameter {} ({}) is {:.6e}, above the allowed threshold of {:.6e}.",
1024 MACH3LOG_ERROR(
"PCA has been enabled and now trying to enable Adaption. Right now both configuration don't work with each other");
1028 MACH3LOG_ERROR(
"Adaptive Handler has already been initialise can't do it again so skipping.");
1038 auto params_to_skip = GetFromManager<std::vector<std::string>>(adapt_manager[
"AdaptionOptions"][
"Covariance"][
matrixName][
"ParametersToSkip"], {}, __FILE__ , __LINE__);
1041 for (
int i = 0; i <
_fNumPar; ++i) {
1068 if(GetFromManager<bool>(adapt_manager[
"AdaptionOptions"][
"Covariance"][
matrixName][
"UseExternalMatrix"],
false, __FILE__ , __LINE__)) {
1070 auto external_file_name = GetFromManager<std::string>(adapt_manager[
"AdaptionOptions"][
"Covariance"][
matrixName][
"ExternalMatrixFileName"],
"", __FILE__ , __LINE__);
1071 auto external_matrix_name = GetFromManager<std::string>(adapt_manager[
"AdaptionOptions"][
"Covariance"][
matrixName][
"ExternalMatrixName"],
"", __FILE__ , __LINE__);
1072 auto external_mean_name = GetFromManager<std::string>(adapt_manager[
"AdaptionOptions"][
"Covariance"][
matrixName][
"ExternalMeansName"],
"", __FILE__ , __LINE__);
1082 MACH3LOG_INFO(
"Successfully Set External Throw Matrix Stored in {}", external_file_name);
1085 if (!success)
return;
1130 TMatrixDSym* update_matrix =
static_cast<TMatrixDSym*
>(
AdaptiveHandler->GetAdaptiveCovariance()->Clone());
1152 TMatrixDSym* cov_trans = cov;
1154 TMatrixDSym cov_sym = 0.5*(*cov+*cov_trans);
1157 TDecompSVD cov_sym_svd=TDecompSVD(cov_sym);
1158 if(!cov_sym_svd.Decompose()){
1159 MACH3LOG_WARN(
"Cannot do SVD on input matrix, trying MakePosDef() first!");
1163 TMatrixD cov_sym_v = cov_sym_svd.GetV();
1164 TMatrixD cov_sym_vt = cov_sym_v;
1167 TVectorD cov_sym_sigvect = cov_sym_svd.GetSig();
1169 const Int_t nCols = cov_sym_v.GetNcols();
1170 TMatrixDSym cov_sym_sig(nCols);
1171 TMatrixDDiag cov_sym_sig_diag(cov_sym_sig);
1172 cov_sym_sig_diag=cov_sym_sigvect;
1175 TMatrixDSym cov_sym_polar = cov_sym_sig.SimilarityT(cov_sym_vt);
1178 TMatrixDSym cov_closest_approx = 0.5*(cov_sym+cov_sym_polar);
1183 *cov = cov_closest_approx;
1193 hMatrix->SetDirectory(
nullptr);
1196 hMatrix->SetBinContent(i+1, i+1, 1.);
1202 #pragma omp parallel for
1206 for(
int j = 0; j <= i; j++)
1209 hMatrix->SetBinContent(i+1, j+1, Corr);
1210 hMatrix->SetBinContent(j+1, i+1, Corr);
1230 for (YAML::Node param : copyNode[
"Systematics"])
1237 std::ofstream fout(
"Modified_Matrix.yaml");
1246 if(
Tunes ==
nullptr) {
1247 MACH3LOG_ERROR(
"Tunes haven't been initialised, which are being loaded from YAML, have you used some deprecated constructor");
1250 auto Values =
Tunes->GetTune(TuneName);
1257 std::vector<double>& BranchValues,
1258 std::vector<std::string>& BranchNames,
1259 const std::vector<std::string>& FancyNames) {
1267 if(FancyNames.size() != 0){
1272 bool matched =
false;
1273 for (
size_t iPar = 0; iPar < FancyNames.size(); ++iPar) {
1276 PosteriorFile->SetBranchStatus(BranchNames[i].c_str(),
true);
1277 PosteriorFile->SetBranchAddress(BranchNames[i].c_str(), &BranchValues[i]);
1290 if (!PosteriorFile->GetBranch(BranchNames[i].c_str())) {
1291 MACH3LOG_ERROR(
"Branch '{}' does not exist in the TTree!", BranchNames[i]);
1294 PosteriorFile->SetBranchStatus(BranchNames[i].c_str(),
true);
1295 PosteriorFile->SetBranchAddress(BranchNames[i].c_str(), &BranchValues[i]);
#define _noexcept_
KS: noexcept can help with performance but is terrible for debugging, this is meant to help easy way ...
#define MACH3LOG_CRITICAL
Custom exception class used throughout MaCh3.
std::vector< int > CircularBoundsIndex
Indices of parameters with circular bounds.
int GetNumParams() const
Get total number of parameters.
std::vector< bool > param_skip_adapt_flags
Flags telling if parameter should be skipped during adaption.
void ToggleFixParameter(const int i)
Toggle fixing parameter at prior values.
bool use_adaptive
Are we using AMCMC?
void SetFixAllParameters()
Set all parameters to be fixed at prior values.
virtual void ProposeStep()
Generate a new proposed state.
TH2D * GetCorrelationMatrix() const
KS: Convert covariance matrix to correlation matrix and return TH2D which can be used for fancy plott...
void SanitizeAdaption() const
Perform sanity check to ensure adaption isn't misbehaving before fit starts.
double * randParams
Random number taken from gaussian around prior error used for corr_throw.
void SetName(const std::string &name)
Set matrix name.
std::map< std::string, FlipGroup > FlipGroups
Map of flip groups, where the key is the group name and the value is a FlipGroup struct.
double ** throwMatrixCholDecomp
Throw matrix that is being used in the fit, much faster as TMatrixDSym cache miss.
void SetStepScale(const double scale, const bool verbose=true)
Set global step scale for covariance object.
virtual ~ParameterHandlerBase()
Destructor.
TMatrixDSym * invCovMatrix
The inverse covariance matrix.
void SetCovMatrix(TMatrixDSym *cov)
Set covariance matrix.
std::string GetParName(const int i) const
Get name of parameter.
std::vector< double > GetProposed() const
Get vector of all proposed parameter values.
void SetFlatPrior(const int i, const bool eL)
Set if parameter should have flat prior or not.
void AcceptStep() _noexcept_
Accepted this step.
virtual double GetLikelihood()
Return CalcLikelihood if some params were thrown out of boundary return LARGE_LOGL
std::unique_ptr< AdaptiveMCMCHandler > AdaptiveHandler
Struct containing information about adaption.
void FlipParameterGroup(std::string group)
With a 50% chance, flip all parameters in a group around their respective flip points.
std::vector< M3::float_t > _fPropVal
Proposed value of the parameter.
std::unique_ptr< ParameterTunes > Tunes
Struct containing information about adaption.
void InitialiseAdaption(const YAML::Node &adapt_manager)
Initialise adaptive MCMC.
TMatrixDSym * throwMatrix
Matrix which we use for step proposal before Cholesky decomposition (not actually used for step propo...
double _fGlobalStepScale
Global step scale applied to all params in this class.
int GetParIndex(const std::string &name) const
Get index based on name.
void ReserveMemory(const int size)
Initialise vectors with parameters information.
std::vector< std::string > _fFancyNames
Fancy name for example rather than param_0 it is MAQE, useful for human reading.
bool doSpecialStepProposal
Check if any of special step proposal were enabled.
std::vector< bool > _fFlatPrior
Whether to apply flat prior or not.
void ThrowParameters()
Throw the parameters according to the covariance matrix. This shouldn't be used in MCMC code ase it c...
double _fGlobalStepScaleInitial
Backup of _fGlobalStepScale for parameters which are skipped during adaption.
std::string matrixName
Name of cov matrix.
void MakeClosestPosDef(TMatrixDSym *cov)
HW: Finds closest possible positive definite matrix in Frobenius Norm ||.||_frob Where ||X||_frob=sqr...
void RandomConfiguration()
Randomly throw the parameters in their 1 sigma range.
TMatrixDSym * GetCovMatrix() const
Return covariance matrix.
void UpdateAdaptiveCovariance()
Method to update adaptive MCMC .
std::string GetParFancyName(const int i) const
Get fancy name of the Parameter.
std::vector< double > _fError
Prior error on the parameter.
void SetFreeAllParameters()
Set all parameters to be treated as free.
void SetFixParameter(const int i)
Set parameter to be fixed at prior value.
void SetParameters(const std::vector< double > &pars={})
Set parameter values using vector, it has to have same size as covariance class.
YAML::Node _fYAMLDoc
Stores config describing systematics.
void SetThrowMatrix(const TMatrixDSym *cov)
Use new throw matrix, used in adaptive MCMC.
bool IsParameterFixed(const int i) const
Is parameter fixed or not.
void MatchMaCh3OutputBranches(TTree *PosteriorFile, std::vector< double > &BranchValues, std::vector< std::string > &BranchNames, const std::vector< std::string > &FancyNames={})
Matches branches in a TTree to parameters in a systematic handler.
void UpdateThrowMatrix(TMatrixDSym *cov)
Replaces old throw matrix with new one.
void CircularParBounds(const int i, const double LowBound, const double UpBound)
HW :: This method is a tad hacky but modular arithmetic gives me a headache.
void SetBranches(TTree &tree, const bool SaveProposal=false)
set branches for output file
void SaveUpdatedMatrixConfig()
KS: After step scale, prefit etc. value were modified save this modified config.
void InitFromFile(const std::string &name, const std::string &file)
Initialisation of the class using matrix from root file.
void ResetIndivStepScale()
Adaptive Step Tuning Stuff.
std::unique_ptr< PCAHandler > PCAObj
Struct containing information about PCA.
int _fNumPar
Number of systematic parameters.
double CalcLikelihood() const _noexcept_
Calc penalty term based on inverted covariance matrix.
void ConstructPCA(const double eigen_threshold, int FirstPCAdpar, int LastPCAdpar)
CW: Calculate eigen values, prepare transition matrices and remove param based on defined threshold.
std::vector< double > _fIndivStepScaleInitial
Backup of _fIndivStepScale for parameters which are skipped during adaption.
std::vector< double > _fLowBound
Lowest physical bound, parameter will not be able to go beyond it.
std::vector< double > _fCurrVal
Current value of the parameter.
std::vector< std::vector< double > > InvertCovMatrix
KS: Same as above but much faster as TMatrixDSym cache miss.
TMatrixDSym * covMatrix
The covariance matrix.
std::vector< double > _fPreFitValue
Parameter value dictated by the prior model. Based on it penalty term is calculated.
void Randomize() _noexcept_
"Randomize" the parameters in the covariance class for the proposed step. Used the proposal kernel an...
void PrintIndivStepScale() const
Print step scale for each parameter.
std::vector< std::string > _fNames
ETA _fNames is set automatically in the covariance class to be something like param_i,...
std::vector< std::pair< double, double > > CircularBoundsValues
Circular bounds for each parameter (lower, upper)
void EnableSpecialProposal(const YAML::Node ¶m, const int Index)
Enable special proposal.
double * corr_throw
Result of multiplication of Cholesky matrix and randParams.
bool GetFlatPrior(const int i) const
Get if param has flat prior or not.
std::string GetName() const
Get name of covariance.
double GetParPreFit(const int i) const
Get prior parameter value.
void SetParCurrProp(const int i, const double val)
Set current parameter value.
void SetFreeParameter(const int i)
Set parameter to be treated as free.
std::vector< double > _fUpBound
Upper physical bound, parameter will not be able to go beyond it.
void SetSingleParameter(const int parNo, const double parVal)
Set value of single param to a given value.
void SetPar(const int i, const double val)
Set all the covariance matrix parameters to a user-defined value.
void SetIndivStepScale(const int ParameterIndex, const double StepScale)
DB Function to set fIndivStepScale from a vector (Can be used from execs and inside covariance constr...
void SetIndivStepScaleForSkippedAdaptParams()
Set individual step scale for parameters which are skipped during adaption to initial values.
double GetDiagonalError(const int i) const
Get diagonal error for ith parameter.
ParameterHandlerBase()=default
void SetSubThrowMatrix(int first_index, int last_index, TMatrixDSym const &subcov)
void SetTune(const std::string &TuneName)
KS: Set proposed parameter values vector to be base on tune values, for example set proposed values t...
bool pca
perform PCA or not
std::vector< double > _fIndivStepScale
Individual step scale used by MCMC algorithm.
std::vector< std::unique_ptr< TRandom3 > > random_number
KS: Set Random numbers for each thread so each thread has different seed.
void PrintPreFitValues() const
Print prior value for every parameter.
void SpecialStepProposal()
Perform Special Step Proposal.
void PrintPreFitCurrPropValues() const
Print prior, current and proposed value for each parameter.
int PrintLength
KS: This is used when printing parameters, sometimes we have super long parameters name,...
void CorrelateSteps() _noexcept_
Use Cholesky throw matrix for better step proposal.
void MakePosDef(TMatrixDSym *cov=nullptr, bool verbose=true)
Make matrix positive definite by adding small values to diagonal, necessary for inverting matrix.
int CheckBounds() const _noexcept_
Check if parameters were proposed outside physical boundary.
std::string FormatDouble(const double value, const int precision)
Convert double into string for precision, useful for playing with yaml if you don't want to have in c...
constexpr static const double _LARGE_LOGL_
Large Likelihood is used it parameter go out of physical boundary, this indicates in MCMC that such s...
void MatrixVectorMulti(double *_restrict_ VecMulti, double **_restrict_ matrix, const double *_restrict_ vector, const int n)
KS: Custom function to perform multiplication of matrix and vector with multithreading.
int GetThreadIndex()
thread index inside parallel loop
double MatrixVectorMultiSingle(double **_restrict_ matrix, const double *_restrict_ vector, const int Length, const int i)
KS: Custom function to perform multiplication of matrix and single element which is thread safe.
int MakeMatrixPosDef(TMatrixDSym *cov)
Makes sure that matrix is positive-definite by adding a small number to on-diagonal elements.
constexpr static const int _BAD_INT_
Default value used for int initialisation.
int GetNThreads()
number of threads which we need for example for TRandom3
bool CaseInsensitiveMatchAny(std::string Text, const std::vector< std::string > &Patterns)
Matches a string against a simple wildcard Pattern using regex. Is not case sensitive.
std::vector< std::vector< double > > GetCholeskyDecomposedMatrix(const TMatrixDSym &matrix, const std::string &matrixName)
Computes Cholesky decomposition of a symmetric positive definite matrix using custom function which c...
Struct to hold information about a group of parameters that flip together at the same time.
std::vector< int > FlipParameterIndex
Indices of parameters with flip symmetry.
std::vector< double > FlipParameterPoint
Central points around which parameters are flipped.