#ifndef ROO_CATEGORY_PROXY
#define ROO_CATEGORY_PROXY
#include "RooAbsCategory.h"
#include "RooArgProxy.h"
#include "RooAbsCategoryLValue.h"
class RooCategoryProxy : public RooArgProxy {
public:
RooCategoryProxy() {} ;
RooCategoryProxy(const char* name, const char* desc, RooAbsArg* owner, RooAbsCategory& ref,
Bool_t valueServer=kTRUE, Bool_t shapeServer=kFALSE, Bool_t proxyOwnsArg=kFALSE) ;
RooCategoryProxy(const char* name, RooAbsArg* owner, const RooCategoryProxy& other) ;
virtual TObject* Clone(const char* newName=0) const { return new RooCategoryProxy(newName,_owner,*this); }
virtual ~RooCategoryProxy();
inline operator Int_t() const { return ((RooAbsCategory*)_arg)->getIndex() ; }
inline operator const char*() const { return ((RooAbsCategory*)_arg)->getLabel() ; }
inline const RooAbsCategory& arg() const { return (RooAbsCategory&)*_arg ; }
inline Bool_t hasRange(const char* rangeName) const { return arg().hasRange(rangeName) ; }
protected:
inline RooAbsCategoryLValue* lvptr() const {
RooAbsCategoryLValue* lvptr = dynamic_cast<RooAbsCategoryLValue*>(_arg) ;
if (!lvptr) {
cout << "RooCategoryProxy(" << name() << ")::INTERNAL error, expected " << _arg->GetName() << " to be an lvalue" << endl ;
assert(0) ;
}
return lvptr ;
}
public:
RooCategoryProxy& operator=(Int_t index) { lvptr()->setIndex(index) ; return *this ; }
RooCategoryProxy& operator=(const char* label) { lvptr()->setLabel(label) ; return *this ; }
protected:
ClassDef(RooCategoryProxy,0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
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.