MINT2
Functions
BinFlipChi2.cpp File Reference
#include <Mint/BinFlipChi2.h>
#include <Mint/NamedParameterBase.h>

Go to the source code of this file.

Functions

vector< double > _blindingPars (unsigned long seed, double range, unsigned long offset)
 

Function Documentation

◆ _blindingPars()

vector<double> _blindingPars ( unsigned long  seed,
double  range,
unsigned long  offset 
)

Definition at line 8 of file BinFlipChi2.cpp.

8  {
9  if(seed == 0)
10  return vector<double>();
11  vector<double> pars(3, seed + offset);
12  pars[1] = -range;
13  pars[2] = range;
14  return pars;
15 }