#ifndef ROO_NOVOSIBIRSK
#define ROO_NOVOSIBIRSK
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
class RooRealVar;
class RooAbsReal;
class RooNovosibirsk : public RooAbsPdf {
public:
  
  
  
  
  RooNovosibirsk(const char *name, const char *title,
		 RooAbsReal& _x,     RooAbsReal& _peak,
		 RooAbsReal& _width, RooAbsReal& _tail);
  RooNovosibirsk(const RooNovosibirsk& other,const char* name=0) ;	
  virtual TObject* clone(const char* newname) const { return new RooNovosibirsk(*this,newname);	}
  
  inline virtual ~RooNovosibirsk() { }
protected:
  RooRealProxy x;
  RooRealProxy width;
  RooRealProxy peak;
  RooRealProxy tail;
  Double_t evaluate() const;
private:
  ClassDef(RooNovosibirsk,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.