GooFit  v2.1.3
BinTransformPdf.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <goofit/PDFs/GooPdf.h>
4 
5 namespace GooFit {
6 
7 // Transforms ND coordinates into a single bin number.
8 class BinTransformPdf : public GooPdf {
9  public:
10  BinTransformPdf(std::string n,
11  std::vector<Observable> obses,
12  std::vector<fptype> limits,
13  std::vector<fptype> binSizes,
14  std::vector<int> numBins);
15 
16  private:
17 };
18 } // namespace GooFit
BinTransformPdf(std::string n, std::vector< Observable > obses, std::vector< fptype > limits, std::vector< fptype > binSizes, std::vector< int > numBins)