GooFit  v2.1.3
KinLimitBWPdf.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <goofit/PDFs/GooPdf.h>
4 
5 namespace GooFit {
6 
7 class KinLimitBWPdf : public GooPdf {
8  public:
9  KinLimitBWPdf(std::string n, Observable _x, Variable m, Variable s);
10  __host__ bool hasAnalyticIntegral() const override { return false; }
11  __host__ void setMasses(fptype bigM, fptype smallM);
12 
13  private:
14 };
15 } // namespace GooFit
double fptype
Special class for observables. Used in DataSets.
Definition: Variable.h:109
KinLimitBWPdf(std::string n, Observable _x, Variable m, Variable s)
__host__ void setMasses(fptype bigM, fptype smallM)
__host__ bool hasAnalyticIntegral() const override
Definition: KinLimitBWPdf.h:10