#ifndef ROO_EXPONENTIAL
#define ROO_EXPONENTIAL
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
class RooRealVar;
class RooAbsReal;
class RooExponential : public RooAbsPdf {
public:
  RooExponential(const char *name, const char *title,
		 RooAbsReal& _x, RooAbsReal& _c);
  RooExponential(const RooExponential& other, const char* name=0);
  virtual TObject* clone(const char* newname) const { return new RooExponential(*this,newname); }
  inline virtual ~RooExponential() { }
  Int_t getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName=0) const ;
  Double_t analyticalIntegral(Int_t code, const char* rangeName=0) const ;
protected:
  RooRealProxy x;
  RooRealProxy c;
  Double_t evaluate() const;
private:
  ClassDef(RooExponential,0) 
};
#endif
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.