GooFit  v2.1.3
ScaledGaussianPdf.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 ScaledGaussianPdf : public GooPdf {
8  public:
9  ScaledGaussianPdf(std::string n, Observable _x, Variable m, Variable s, Variable d, Variable e);
10  __host__ bool hasAnalyticIntegral() const override { return false; }
11 
12  private:
13 };
14 } // namespace GooFit
Special class for observables. Used in DataSets.
Definition: Variable.h:109
__host__ bool hasAnalyticIntegral() const override
ScaledGaussianPdf(std::string n, Observable _x, Variable m, Variable s, Variable d, Variable e)