GooFit  v2.1.3
TrigThresholdPdf.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 TrigThresholdPdf : public GooPdf {
8  public:
10  std::string n, Observable _x, Variable thresh, Variable trigConst, Variable linConst, bool upper = true);
11  TrigThresholdPdf(std::string n,
12  Observable _x,
13  Observable _y,
14  Variable thresh,
15  Variable trigConst,
16  Variable linConst,
17  Variable massConstant,
18  bool upper);
19 
20  private:
21 };
22 } // namespace GooFit
Special class for observables. Used in DataSets.
Definition: Variable.h:109
TrigThresholdPdf(std::string n, Observable _x, Variable thresh, Variable trigConst, Variable linConst, bool upper=true)