#ifndef ROO_NAME_SET
#define ROO_NAME_SET
#include "TString.h"
#include "RooAbsArg.h"
#include "RooPrintable.h"
class RooArgSet ;
class RooNameSet : public TObject, public RooPrintable {
public:
RooNameSet();
RooNameSet(const RooArgSet& argSet);
RooNameSet(const RooNameSet& other) ;
virtual TObject* Clone(const char*) const { return new RooNameSet(*this) ; }
virtual ~RooNameSet() ;
void refill(const RooArgSet& argSet) ;
RooArgSet* select(const RooArgSet& list) const ;
Bool_t operator==(const RooNameSet& other) ;
RooNameSet& operator=(const RooNameSet&) ;
virtual void printName(ostream& os) const ;
virtual void printTitle(ostream& os) const ;
virtual void printClassName(ostream& os) const ;
virtual void printValue(ostream& os) const ;
inline virtual void Print(Option_t *options= 0) const {
printStream(defaultPrintStream(),defaultPrintContents(options),defaultPrintStyle(options));
}
Int_t _len ;
char* _nameList ;
protected:
void extendBuffer(Int_t inc) ;
ClassDef(RooNameSet,1)
};
#endif
Last change: Wed Jun 25 08:33:33 2008
Last generated: 2008-06-25 08:33
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.