GooFit  v2.1.3
MappedPdf.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 MappedPdf : public GooPdf {
8  public:
9  MappedPdf(std::string n, GooPdf *m, std::vector<GooPdf *> &t);
10  // Map function m must be custom written to correspond to order of function list t.
11  __host__ fptype normalize() const override;
12 
13  private:
14 };
15 } // namespace GooFit
double fptype
__host__ fptype normalize() const override
MappedPdf(std::string n, GooPdf *m, std::vector< GooPdf *> &t)