#ifndef ROO_SET_PAIR
#define ROO_SET_PAIR
#include "TObject.h"
#include "RooArgSet.h"
class RooLinkedListElem ;
class TBuffer ;
class RooSetPair : public TObject {
public:
RooSetPair(const RooArgSet* set1=0, const RooArgSet* set2=0) :
_set1((RooArgSet*)set1), _set2((RooArgSet*)set2) {
}
virtual ~RooSetPair() {
}
RooArgSet* _set1 ;
RooArgSet* _set2 ;
virtual ULong_t Hash() const {
return TString::Hash((void*)&_set1,2*sizeof(void*)) ;
}
protected:
RooSetPair(const RooSetPair&) ;
ClassDef(RooSetPair,0)
} ;
#endif
Last change: Wed Jun 25 08:34:10 2008
Last generated: 2008-06-25 08:34
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.