File indexing completed on 2024-11-15 09:56:44
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef ROONUMCDF
0013 #define ROONUMCDF
0014
0015 #include "RooNumRunningInt.h"
0016
0017 class RooNumCdf : public RooNumRunningInt {
0018 public:
0019 RooNumCdf(const char *name, const char *title, RooAbsPdf& _pdf, RooRealVar& _x, const char* binningName="cache");
0020 RooNumCdf(const RooNumCdf& other, const char* name=nullptr) ;
0021 TObject* clone(const char* newname) const override { return new RooNumCdf(*this,newname); }
0022 ~RooNumCdf() override ;
0023
0024 protected:
0025
0026 void fillCacheObject(FuncCacheElem& cacheFunc) const override ;
0027
0028 private:
0029
0030 ClassDefOverride(RooNumCdf,1)
0031
0032 };
0033
0034 #endif