ROOT logo
/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 * @(#)root/roofitcore:$Id: RooInvTransform.cxx 24278 2008-06-15 15:21:16Z wouter $
 * Authors:                                                                  *
 *   WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu       *
 *   DK, David Kirkby,    UC Irvine,         dkirkby@uci.edu                 *
 *                                                                           *
 * Copyright (c) 2000-2005, Regents of the University of California          *
 *                          and Stanford University. All rights reserved.    *
 *                                                                           *
 * Redistribution and use in source and binary forms,                        *
 * with or without modification, are permitted according to the terms        *
 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)             *
 *****************************************************************************/

//////////////////////////////////////////////////////////////////////////////
//
// BEGIN_HTML
// Lightweight function binding that returns the inverse of an input function binding
// Apply the change of variables transformation x -> 1/x to the input
// function and its range. The function must be one dimensional and its
// range cannot include zero.
// END_HTML
//


#include "RooFit.h"

#include "RooInvTransform.h"
#include "RooInvTransform.h"

#include "Riostream.h"
#include <math.h>

ClassImp(RooInvTransform)
;


//_____________________________________________________________________________
RooInvTransform::RooInvTransform(const RooAbsFunc &func) :
  RooAbsFunc(func.getDimension()), _func(&func)
{
  // Constructor. 

}
 RooInvTransform.cxx:1
 RooInvTransform.cxx:2
 RooInvTransform.cxx:3
 RooInvTransform.cxx:4
 RooInvTransform.cxx:5
 RooInvTransform.cxx:6
 RooInvTransform.cxx:7
 RooInvTransform.cxx:8
 RooInvTransform.cxx:9
 RooInvTransform.cxx:10
 RooInvTransform.cxx:11
 RooInvTransform.cxx:12
 RooInvTransform.cxx:13
 RooInvTransform.cxx:14
 RooInvTransform.cxx:15
 RooInvTransform.cxx:16
 RooInvTransform.cxx:17
 RooInvTransform.cxx:18
 RooInvTransform.cxx:19
 RooInvTransform.cxx:20
 RooInvTransform.cxx:21
 RooInvTransform.cxx:22
 RooInvTransform.cxx:23
 RooInvTransform.cxx:24
 RooInvTransform.cxx:25
 RooInvTransform.cxx:26
 RooInvTransform.cxx:27
 RooInvTransform.cxx:28
 RooInvTransform.cxx:29
 RooInvTransform.cxx:30
 RooInvTransform.cxx:31
 RooInvTransform.cxx:32
 RooInvTransform.cxx:33
 RooInvTransform.cxx:34
 RooInvTransform.cxx:35
 RooInvTransform.cxx:36
 RooInvTransform.cxx:37
 RooInvTransform.cxx:38
 RooInvTransform.cxx:39
 RooInvTransform.cxx:40
 RooInvTransform.cxx:41
 RooInvTransform.cxx:42
 RooInvTransform.cxx:43
 RooInvTransform.cxx:44
 RooInvTransform.cxx:45
 RooInvTransform.cxx:46