/*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id: RooThresholdCategory.rdl,v 1.7 2005/06/20 15:45:14 wverkerke Exp $
* Authors: *
* WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
* DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
* *
* Copyright (c) 2000-2005, Regents of the University of California *
* and Stanford University. All rights reserved. *
* *
* Redistribution and use in source and binary forms, *
* with or without modification, are permitted according to the terms *
* listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
*****************************************************************************/
#ifndef ROO_THRESHOLD_CATEGORY
#define ROO_THRESHOLD_CATEGORY
#include "TSortedList.h"
#include "RooAbsCategory.h"
#include "RooRealProxy.h"
#include "RooCatType.h"
class RooThresholdCategory : public RooAbsCategory {
public:
// Constructors etc.
inline RooThresholdCategory() { }
RooThresholdCategory(const char *name, const char *title, RooAbsReal& inputVar, const char* defCatName="Default", Int_t defCatIdx=0);
RooThresholdCategory(const RooThresholdCategory& other, const char *name=0) ;
virtual TObject* clone(const char* newname) const { return new RooThresholdCategory(*this, newname); }
virtual ~RooThresholdCategory();
// Mapping function
Bool_t addThreshold(Double_t upperLimit, const char* catName, Int_t catIdx=-99999) ;
// Printing interface (human readable)
virtual void printToStream(ostream& os, PrintOption opt=Standard, TString indent= "") const ;
void writeToStream(ostream& os, Bool_t compact) const ;
protected:
RooRealProxy _inputVar ;
RooCatType* _defCat ;
TSortedList _threshList ;
TIterator* _threshIter ; //! do not persist
virtual RooCatType evaluate() const ;
ClassDef(RooThresholdCategory,1) // Index variable, defined by a series of thresholds on a RooAbsReal
};
#endif
syntax highlighted by Code2HTML, v. 0.9.1