GooFit  v2.1.3
CorrGaussianPdf.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 CorrGaussianPdf : public GooPdf {
8  public:
9  CorrGaussianPdf(std::string n,
10  Observable _x,
11  Observable _y,
12  Variable mean1,
13  Variable sigma1,
14  Variable mean2,
15  Variable sigma2,
16  Variable correlation);
17 
18  private:
19 };
20 
21 } // namespace GooFit
Special class for observables. Used in DataSets.
Definition: Variable.h:109
CorrGaussianPdf(std::string n, Observable _x, Observable _y, Variable mean1, Variable sigma1, Variable mean2, Variable sigma2, Variable correlation)