Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooInvTransform.h
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * File: $Id: RooInvTransform.h,v 1.6 2007/05/11 09:11:30 verkerke Exp $
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16#ifndef ROO_INV_TRANSFORM
17#define ROO_INV_TRANSFORM
18
19#include "RooAbsFunc.h"
20
22public:
23 RooInvTransform(const RooAbsFunc &func);
24
25 inline double operator()(const double xvector[]) const override {
26 double xinv= 1./xvector[0];
27 return (*_func)(&xinv)*xinv*xinv;
28 }
29 inline double getMinLimit(UInt_t index) const override { return 1/_func->getMaxLimit(index); }
30 inline double getMaxLimit(UInt_t index) const override { return 1/_func->getMinLimit(index); }
31
32protected:
33 const RooAbsFunc *_func; ///< Input function binding
34
35 ClassDefOverride(RooInvTransform,0) // Function binding returning inverse of other function binding
36};
37
38#endif
39
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t index
Abstract interface for evaluating a real-valued function of one real variable and performing numerica...
Definition RooAbsFunc.h:27
virtual double getMaxLimit(UInt_t dimension) const =0
virtual double getMinLimit(UInt_t dimension) const =0
Lightweight function binding that returns the inverse of an input function binding.
double getMinLimit(UInt_t index) const override
const RooAbsFunc * _func
Input function binding.
double operator()(const double xvector[]) const override
double getMaxLimit(UInt_t index) const override