// RooCategory represents a fundamental (non-derived) discrete value object. The class
// has a public interface to define the possible value states.
// END_HTML
#include "RooFit.h"
#include "Riostream.h"
#include "Riostream.h"
#include <stdlib.h>
#include <string.h>
#include "TTree.h"
#include "TString.h"
#include "TH1.h"
#include "RooCategory.h"
#include "RooArgSet.h"
#include "RooStreamParser.h"
#include "RooMsgService.h"
ClassImp(RooCategory)
;
RooSharedPropertiesList RooCategory::_sharedPropList ;
RooCategory::RooCategory() : _sharedProp(0)
{
}
RooCategory::RooCategory(const char *name, const char *title) :
RooAbsCategoryLValue(name,title)
{
_sharedProp = (RooCategorySharedProperties*) _sharedPropList.registerProperties(new RooCategorySharedProperties()) ;
setValueDirty() ;
setShapeDirty() ;
}
RooCategory::RooCategory(const RooCategory& other, const char* name) :
RooAbsCategoryLValue(other, name)
{
_sharedProp = (RooCategorySharedProperties*) _sharedPropList.registerProperties(other._sharedProp) ;
}
RooCategory::~RooCategory()
{
_sharedPropList.unregisterProperties(_sharedProp) ;
}
Bool_t RooCategory::setIndex(Int_t index, Bool_t printError)
{
const RooCatType* type = lookupType(index,printError) ;
if (!type) return kTRUE ;
_value = *type ;
setValueDirty() ;
return kFALSE ;
}
Bool_t RooCategory::setLabel(const char* label, Bool_t printError)
{
const RooCatType* type = lookupType(label,printError) ;
if (!type) return kTRUE ;
_value = *type ;
setValueDirty() ;
return kFALSE ;
}
Bool_t RooCategory::defineType(const char* label)
{
if (TString(label).Contains(";")) {
coutE(InputArguments) << "RooCategory::defineType(" << GetName()
<< "): semicolons not allowed in label name" << endl ;
return kTRUE ;
}
return RooAbsCategory::defineType(label)?kFALSE:kTRUE ;
}
Bool_t RooCategory::defineType(const char* label, Int_t index)
{
if (TString(label).Contains(";")) {
coutE(InputArguments) << "RooCategory::defineType(" << GetName()
<< "): semicolons not allowed in label name" << endl ;
return kTRUE ;
}
return RooAbsCategory::defineType(label,index)?kFALSE:kTRUE ;
}
Bool_t RooCategory::readFromStream(istream& is, Bool_t , Bool_t verbose)
{
RooStreamParser parser(is) ;
TString token = parser.readToken() ;
return setLabel(token,verbose) ;
}
void RooCategory::writeToStream(ostream& os, Bool_t compact) const
{
if (compact) {
os << getIndex() ;
} else {
os << getLabel() ;
}
}
void RooCategory::clearRange(const char* name, Bool_t silent)
{
if (!name) {
coutE(InputArguments) << "RooCategory::clearRange(" << GetName() << ") ERROR: must specificy valid range name" << endl ;
return ;
}
TList* rangeNameList = static_cast<TList*>(_sharedProp->_altRanges.FindObject(name)) ;
if (rangeNameList) {
rangeNameList->Clear() ;
} else if (!silent) {
coutE(InputArguments) << "RooCategory::clearRange(" << GetName() << ") ERROR: range '" << name << "' does not exist" << endl ;
}
}
void RooCategory::setRange(const char* name, const char* stateNameList)
{
clearRange(name,kTRUE) ;
addToRange(name,stateNameList) ;
}
void RooCategory::addToRange(const char* name, const char* stateNameList)
{
if (!name || !stateNameList) {
coutE(InputArguments) << "RooCategory::setRange(" << GetName() << ") ERROR: must specificy valid name and state name list" << endl ;
return ;
}
TList* rangeNameList = static_cast<TList*>(_sharedProp->_altRanges.FindObject(name)) ;
if (!rangeNameList) {
coutI(Contents) << "RooCategory::setRange(" << GetName()
<< ") new range named '" << name << "' created with state list " << stateNameList << endl ;
rangeNameList = new TList ;
rangeNameList->SetOwner(kTRUE) ;
rangeNameList->SetName(name) ;
_sharedProp->_altRanges.Add(rangeNameList) ;
}
char* buf = new char[strlen(stateNameList)+1] ;
strcpy(buf,stateNameList) ;
char* token = strtok(buf,",") ;
while(token) {
const RooCatType* state = lookupType(token,kFALSE) ;
if (state && !rangeNameList->FindObject(token)) {
rangeNameList->Add(new RooCatType(*state)) ;
} else {
coutW(InputArguments) << "RooCategory::setRange(" << GetName() << ") WARNING: Ignoring invalid state name '"
<< token << "' in state name list" << endl ;
}
token = strtok(0,",") ;
}
delete[] buf ;
}
Bool_t RooCategory::isStateInRange(const char* rangeName, const char* stateName) const
{
if (!rangeName||!stateName) {
coutE(InputArguments) << "RooCategory::isStateInRange(" << GetName() << ") ERROR: must specificy valid range name and state name" << endl ;
return kFALSE ;
}
TList* rangeNameList = static_cast<TList*>(_sharedProp->_altRanges.FindObject(rangeName)) ;
if (rangeNameList) {
return rangeNameList->FindObject(stateName) ? kTRUE : kFALSE ;
}
return kTRUE ;
}
Last change: Thu Aug 28 09:04:02 2008
Last generated: 2008-08-28 09:04
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.