#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 printToStream(ostream &os, PrintOption opt= Standard, TString indent= "") const;
  inline virtual void Print(Option_t *options= 0) const {
    printToStream(defaultStream(),parseOptions(options));
  }
  Int_t _len ;
  char* _nameList ; 
protected:
  void extendBuffer(Int_t inc) ;
  ClassDef(RooNameSet,1) 
};
#endif
Last update: Thu Jan 17 08:45:20 2008
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.