ATLAS Offline Software
Namespaces | Variables
widthestimators Namespace Reference

Namespaces

 binned
 

Variables

const double PROB_1SIGMA = 0.683
 

Detailed Description

How to use in C++

Just include this header. It depends on ROOT

Example:

using widthestimators;

int main()
{
  TH1F h("h", "h", 100, -5, 5);
  h.FillRandom("gaus");
  std::cout << "s68 : " << binned::s68(h) << std::endl;
  return 0;
}

Variable Documentation

◆ PROB_1SIGMA

const double widthestimators::PROB_1SIGMA = 0.683

Definition at line 29 of file widthestimators.h.