#ifndef ROO_ADDITION
#define ROO_ADDITION
#include "RooAbsReal.h"
#include "RooListProxy.h"
class RooRealVar;
class RooArgList ;
class RooAddition : public RooAbsReal {
public:
  RooAddition() ;
  RooAddition(const char *name, const char *title, const RooArgSet& sumSet, Bool_t takeOwnerShip=kFALSE) ;
  RooAddition(const char *name, const char *title, const RooArgList& sumSet1, const RooArgList& sumSet2, Bool_t takeOwnerShip=kFALSE) ;
  virtual ~RooAddition() ;
  RooAddition(const RooAddition& other, const char* name = 0);
  virtual TObject* clone(const char* newname) const { return new RooAddition(*this, newname); }
  virtual Double_t defaultErrorLevel() const ;
protected:
  RooArgList   _ownedList ;
  RooListProxy _set1 ;
  RooListProxy _set2 ;
  TIterator* _setIter1 ;  
  TIterator* _setIter2 ;  
  Double_t evaluate() const;
  ClassDef(RooAddition,1) 
};
#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.