#include "RooFit.h"
#include "TClass.h"
#include "TClass.h"
#include "RooThreshEntry.h"
ClassImp(RooThreshEntry)
;
RooThreshEntry::RooThreshEntry(Double_t thresh, const RooCatType& cat) : 
  _thresh(thresh), _cat(cat) 
{
}
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 ;
}
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.