#ifndef ROO_EXTENDED_TERM
#define ROO_EXTENDED_TERM
#include "RooAbsPdf.h"
#include "RooRealProxy.h"
class RooExtendedTerm : public RooAbsPdf {
public:
  RooExtendedTerm() ;
  RooExtendedTerm(const char *name, const char *title, const RooAbsReal& n) ;
  RooExtendedTerm(const RooExtendedTerm& other, const char* name=0) ;
  virtual TObject* clone(const char* newname) const { return new RooExtendedTerm(*this,newname) ; }
  virtual ~RooExtendedTerm() ;
  Double_t evaluate() const { return 1. ; }
  virtual ExtendMode extendMode() const { return CanBeExtended ; }
  virtual Double_t expectedEvents(const RooArgSet* nset) const ;
  virtual Double_t expectedEvents(const RooArgSet& nset) const { 
    
    return expectedEvents(&nset) ; 
  }
protected:
  RooRealProxy _n ;          
  ClassDef(RooExtendedTerm,1) 
};
#endif
Last change: Wed Jun 25 08:32:49 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.