LookUp2d
class description - source file - inheritance tree
class LookUp2d : public TObject
public:
LookUp2d LookUp2d(TString name, Float_t* key1, Float_t* key2, Float_t* matrix, Int_t numBins1, Int_t numBins2)
LookUp2d LookUp2d(LookUp2d&)
virtual void ~LookUp2d()
TClass* Class()
TString* getName()
Float_t interpolateVal(Float_t val1, Float_t val2, Int_t* rc)
virtual TClass* IsA()
virtual void ShowMembers(TMemberInspector& insp, char* parent)
virtual void Streamer(TBuffer& b)
private:
TString m_name name of table
Int_t m_numBins1 number of bins in first dimension
Int_t m_numBins2 number of bins in second dimension
Float_t* m_key1 coordinates of table in first dim
Float_t* m_key2 coordinates of table in second dim
Float_t* m_matrix values of table at gridpoints
LookUp2d
utility class which reads a 2-d table and uses it for interpolation
LookUp2d(TString name, Float_t* key1, Float_t* key2, Float_t* mat,
Int_t numBins1, Int_t numBins2) :
m_name(name), m_key1(key1), m_key2(key2), m_matrix(mat),
m_numBins1(numBins1), m_numBins2(numBins2)
~LookUp2d()
Float_t interpolateVal(Float_t val1, Float_t val2, Int_t* rc)
interpolates table given input val1, val2
Inline Functions
TString* getName()
TClass* Class()
TClass* IsA()
void ShowMembers(TMemberInspector& insp, char* parent)
void Streamer(TBuffer& b)
LookUp2d LookUp2d(LookUp2d&)
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.