Jpp 19.3.0-rc.2
the software that should make you happy
Loading...
Searching...
No Matches
JROOT::JF2 Struct Reference

Wrapper data structure to build ROOT 2D function. More...

#include <JRootfit.hh>

Inheritance diagram for JROOT::JF2:

Classes

struct  helper
 Helper. More...
 

Public Member Functions

template<class JF2_t >
 JF2 (const char *const name, const JF2_t &f2, const range_type &X=range_type(), const range_type &Y=range_type())
 Constructor.
 

Detailed Description

Wrapper data structure to build ROOT 2D function.

Definition at line 650 of file JRootfit.hh.

Constructor & Destructor Documentation

◆ JF2()

template<class JF2_t >
JROOT::JF2::JF2 ( const char *const name,
const JF2_t & f2,
const range_type & X = range_type(),
const range_type & Y = range_type() )
inline

Constructor.

Parameters
namename
f2function
Xfit range
Yfit range

Definition at line 662 of file JRootfit.hh.

665 :
666 TF2(name,
667 helper<JF2_t>(f2),
668 X.getLowerLimit(),
669 X.getUpperLimit(),
670 Y.getLowerLimit(),
671 Y.getUpperLimit(),
672 0)
673 {
674 this->SetNpx(1000);
675 this->SetNpy(1000);
676 };

The documentation for this struct was generated from the following file: