#include "RooFit.h"
#include "TClass.h"
#include "TClass.h"
#include "RooThreshEntry.h"
ClassImp(RooThreshEntry)
;
RooThreshEntry::RooThreshEntry(Double_t inThresh, const RooCatType& inCat) :
_thresh(inThresh), _cat(inCat)
{
}
RooThreshEntry::RooThreshEntry(const RooThreshEntry& other) :
TObject(other), _thresh(other._thresh), _cat(other._cat)
{
}
Int_t RooThreshEntry::Compare(const TObject* other) const
{
if (!other->IsA()->InheritsFrom(RooThreshEntry::Class())) return 0 ;
RooThreshEntry* otherTE = (RooThreshEntry*) other ;
return (_thresh < otherTE->_thresh) ? -1 : 1 ;
}
Last change: Tue May 13 17:06:13 2008
Last generated: 2008-05-13 17:06
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.