/*****************************************************************************
 * Project: RooFit                                                           *
 *                                                                           *
 * 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 ROONUMCDF
#define ROONUMCDF

#include "RooNumRunningInt.h"

class RooNumCdf : public RooNumRunningInt {
public:
  RooNumCdf(const char *name, const char *title, RooAbsPdf& _pdf, RooRealVar& _x, const char* binningName="cache");
  RooNumCdf(const RooNumCdf& other, const char* name=0) ;
  virtual TObject* clone(const char* newname) const { return new RooNumCdf(*this,newname); }
  virtual ~RooNumCdf() ;

protected:

  virtual void fillCacheObject(FuncCacheElem& cacheFunc) const ;

private:

  ClassDef(RooNumCdf,1) // Numeric calculator for CDF for a given PDF

};
 
#endif

Last change: Wed Jun 25 08:33:37 2008
Last generated: 2008-06-25 08:33

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.