#ifndef ROO_EFFICIENCY
#define ROO_EFFICIENCY
#include "RooAbsPdf.h"
#include "RooCategoryProxy.h"
#include "RooRealProxy.h"
#include "TString.h"
class RooArgList ;
class RooEfficiency : public RooAbsPdf {
public:
inline RooEfficiency() {
}
RooEfficiency(const char *name, const char *title, const RooAbsReal& effFunc, const RooAbsCategory& cat, const char* sigCatName);
RooEfficiency(const RooEfficiency& other, const char* name=0);
virtual TObject* clone(const char* newname) const { return new RooEfficiency(*this,newname); }
virtual ~RooEfficiency();
protected:
virtual Double_t evaluate() const ;
RooCategoryProxy _cat ;
RooRealProxy _effFunc ;
TString _sigCatName ;
ClassDef(RooEfficiency,1)
};
#endif
Last change: Wed Jun 25 08:32:41 2008
Last generated: 2008-06-25 08:32
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.