Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
RooNumCdf.h
Go to the documentation of this file.
1 /*****************************************************************************
2  * Project: RooFit *
3  * *
4  * Copyright (c) 2000-2005, Regents of the University of California *
5  * and Stanford University. All rights reserved. *
6  * *
7  * Redistribution and use in source and binary forms, *
8  * with or without modification, are permitted according to the terms *
9  * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
10  *****************************************************************************/
11 
12 #ifndef ROONUMCDF
13 #define ROONUMCDF
14 
15 #include "RooNumRunningInt.h"
16 
17 class RooNumCdf : public RooNumRunningInt {
18 public:
19  RooNumCdf(const char *name, const char *title, RooAbsPdf& _pdf, RooRealVar& _x, const char* binningName="cache");
20  RooNumCdf(const RooNumCdf& other, const char* name=0) ;
21  virtual TObject* clone(const char* newname) const { return new RooNumCdf(*this,newname); }
22  virtual ~RooNumCdf() ;
23 
24 protected:
25 
26  virtual void fillCacheObject(FuncCacheElem& cacheFunc) const ;
27 
28 private:
29 
30  ClassDef(RooNumCdf,1) // Numeric calculator for CDF for a given PDF
31 
32 };
33 
34 #endif