#ifndef ROO_UNIFORM
#define ROO_UNIFORM
#include "RooAbsPdf.h"
#include "RooListProxy.h"
class RooRealVar;
class RooUniform : public RooAbsPdf {
public:
RooUniform() {} ;
RooUniform(const char *name, const char *title, const RooArgSet& _x);
RooUniform(const RooUniform& other, const char* name=0) ;
virtual TObject* clone(const char* newname) const { return new RooUniform(*this,newname); }
inline virtual ~RooUniform() { }
Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
Int_t getGenerator(const RooArgSet& directVars, RooArgSet &generateVars, Bool_t staticInitOK=kTRUE) const;
void generateEvent(Int_t code);
protected:
RooListProxy x ;
Double_t evaluate() const ;
private:
ClassDef(RooUniform,1)
};
#endif