/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 *    File: $Id$
 * 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)             *
 *****************************************************************************/
#ifndef ROO_ADAPTIVE_INTEGRATOR_ND
#define ROO_ADAPTIVE_INTEGRATOR_ND

#include "RooAbsIntegrator.h"
#include "RooNumIntConfig.h"
#include "TString.h"

namespace ROOT { namespace Math { class AdaptiveIntegratorMultiDim ; } } 
class RooMultiGenFunction ;

class RooAdaptiveIntegratorND : public RooAbsIntegrator {
public:

  // Constructors, assignment etc
  RooAdaptiveIntegratorND() ;
  RooAdaptiveIntegratorND(const RooAbsFunc& function, const RooNumIntConfig& config) ;

  virtual RooAbsIntegrator* clone(const RooAbsFunc& function, const RooNumIntConfig& config) const ;
  virtual ~RooAdaptiveIntegratorND();

  virtual Bool_t checkLimits() const;
  virtual Double_t integral(const Double_t *yvec=0) ;

  using RooAbsIntegrator::setLimits ;
  Bool_t setLimits(Double_t* xmin, Double_t* xmax);

  virtual Bool_t canIntegrate1D() const { return kFALSE ; }
  virtual Bool_t canIntegrate2D() const { return kTRUE ; }
  virtual Bool_t canIntegrateND() const { return kTRUE ; }
  virtual Bool_t canIntegrateOpenEnded() const { return kFALSE ; }

  virtual Bool_t setUseIntegrandLimits(Bool_t flag) {_useIntegrandLimits = flag ; return kTRUE ; }

protected:
  
  RooAdaptiveIntegratorND(const RooAdaptiveIntegratorND&) ;

  Bool_t _useIntegrandLimits;  // If true limits of function binding are ued

  mutable Double_t* _xmin ;  // Lower bound in each dimension
  mutable Double_t* _xmax ;  // Upper bound in each dimension
  Double_t _epsRel ; // Relative precision
  Double_t _epsAbs ; // Absolute precision
  Int_t    _nmax ;   // Max number of divisions
  Int_t    _nError ; // Number of error occurrences
  Int_t    _nWarn ; // Max number of warnings to be issued ;
  RooMultiGenFunction* _func ; //! ROOT::Math multi-parameter function binding 
  ROOT::Math::AdaptiveIntegratorMultiDim* _integrator ;
  TString _intName ; // Integrand name

  friend class RooNumIntFactory ;
  static void registerIntegrator(RooNumIntFactory& fact) ;	

  ClassDef(RooAdaptiveIntegratorND,0) // N-dimensional adaptive integration (interface to MathCore integrator)
};

#endif
 RooAdaptiveIntegratorND.h:1
 RooAdaptiveIntegratorND.h:2
 RooAdaptiveIntegratorND.h:3
 RooAdaptiveIntegratorND.h:4
 RooAdaptiveIntegratorND.h:5
 RooAdaptiveIntegratorND.h:6
 RooAdaptiveIntegratorND.h:7
 RooAdaptiveIntegratorND.h:8
 RooAdaptiveIntegratorND.h:9
 RooAdaptiveIntegratorND.h:10
 RooAdaptiveIntegratorND.h:11
 RooAdaptiveIntegratorND.h:12
 RooAdaptiveIntegratorND.h:13
 RooAdaptiveIntegratorND.h:14
 RooAdaptiveIntegratorND.h:15
 RooAdaptiveIntegratorND.h:16
 RooAdaptiveIntegratorND.h:17
 RooAdaptiveIntegratorND.h:18
 RooAdaptiveIntegratorND.h:19
 RooAdaptiveIntegratorND.h:20
 RooAdaptiveIntegratorND.h:21
 RooAdaptiveIntegratorND.h:22
 RooAdaptiveIntegratorND.h:23
 RooAdaptiveIntegratorND.h:24
 RooAdaptiveIntegratorND.h:25
 RooAdaptiveIntegratorND.h:26
 RooAdaptiveIntegratorND.h:27
 RooAdaptiveIntegratorND.h:28
 RooAdaptiveIntegratorND.h:29
 RooAdaptiveIntegratorND.h:30
 RooAdaptiveIntegratorND.h:31
 RooAdaptiveIntegratorND.h:32
 RooAdaptiveIntegratorND.h:33
 RooAdaptiveIntegratorND.h:34
 RooAdaptiveIntegratorND.h:35
 RooAdaptiveIntegratorND.h:36
 RooAdaptiveIntegratorND.h:37
 RooAdaptiveIntegratorND.h:38
 RooAdaptiveIntegratorND.h:39
 RooAdaptiveIntegratorND.h:40
 RooAdaptiveIntegratorND.h:41
 RooAdaptiveIntegratorND.h:42
 RooAdaptiveIntegratorND.h:43
 RooAdaptiveIntegratorND.h:44
 RooAdaptiveIntegratorND.h:45
 RooAdaptiveIntegratorND.h:46
 RooAdaptiveIntegratorND.h:47
 RooAdaptiveIntegratorND.h:48
 RooAdaptiveIntegratorND.h:49
 RooAdaptiveIntegratorND.h:50
 RooAdaptiveIntegratorND.h:51
 RooAdaptiveIntegratorND.h:52
 RooAdaptiveIntegratorND.h:53
 RooAdaptiveIntegratorND.h:54
 RooAdaptiveIntegratorND.h:55
 RooAdaptiveIntegratorND.h:56
 RooAdaptiveIntegratorND.h:57
 RooAdaptiveIntegratorND.h:58
 RooAdaptiveIntegratorND.h:59
 RooAdaptiveIntegratorND.h:60
 RooAdaptiveIntegratorND.h:61
 RooAdaptiveIntegratorND.h:62
 RooAdaptiveIntegratorND.h:63
 RooAdaptiveIntegratorND.h:64
 RooAdaptiveIntegratorND.h:65
 RooAdaptiveIntegratorND.h:66
 RooAdaptiveIntegratorND.h:67
 RooAdaptiveIntegratorND.h:68
 RooAdaptiveIntegratorND.h:69
 RooAdaptiveIntegratorND.h:70
 RooAdaptiveIntegratorND.h:71
 RooAdaptiveIntegratorND.h:72