#ifndef ROO_DOUBLE
#define ROO_DOUBLE
#include "Rtypes.h"
#include "TNamed.h"
class RooDouble : public TNamed {
public:
  RooDouble() {} ;
  RooDouble(Double_t value) : TNamed(), _value(value) {} ;
  RooDouble(const RooDouble& other) : TNamed(other), _value(other._value) {}
  virtual ~RooDouble() {} ;
  
  inline operator Double_t() const { return _value ; }
  RooDouble& operator=(Double_t value) { _value = value ; return *this ; }
  
  
  Int_t Compare(const TObject* other) const ;
  virtual Bool_t IsSortable() const { return kTRUE ; }
protected:
  Double_t _value ;
  ClassDef(RooDouble,1) 
};
#endif
Last update: Thu Jan 17 08:44:28 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.