#ifndef ROO_DOUBLE
#define ROO_DOUBLE
#include "Rtypes.h"
#include "TNamed.h"
class RooDouble : public TNamed {
public:
RooDouble() {
} ;
RooDouble(Double_t 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 change: Mon Aug 25 11:36:23 2008
Last generated: 2008-08-25 11:36
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.