GooFit  v2.1.3
CrystalBallPdf.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 CrystalBallPdf : public GooPdf {
8  public:
9  CrystalBallPdf(std::string n, Observable _x, Variable m, Variable s, Variable a);
10  CrystalBallPdf(std::string n, Observable _x, Variable m, Variable s, Variable a, Variable power);
11  __host__ fptype integrate(fptype lo, fptype hi) const override;
12  //__host__ virtual bool hasAnalyticIntegral () const {return true;}
13 
14  private:
15 };
16 } // namespace GooFit
double fptype
CrystalBallPdf(std::string n, Observable _x, Variable m, Variable s, Variable a)
__host__ fptype integrate(fptype lo, fptype hi) const override
Special class for observables. Used in DataSets.
Definition: Variable.h:109