// 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 ;
RooCategorySharedProperties RooCategory::_nullProp("00000000-0000-0000-0000-000000000000") ;
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 ;
}
void RooCategory::Streamer(TBuffer &R__b)
{
UInt_t R__s, R__c;
if (R__b.IsReading()) {
Version_t R__v = R__b.ReadVersion(&R__s, &R__c); if (R__v) { }
RooAbsCategoryLValue::Streamer(R__b);
if (R__v==1) {
R__b >> _sharedProp;
} else {
RooCategorySharedProperties* tmpSharedProp = new RooCategorySharedProperties() ;
tmpSharedProp->Streamer(R__b) ;
if (!(_nullProp==*tmpSharedProp)) {
_sharedProp = (RooCategorySharedProperties*) _sharedPropList.registerProperties(tmpSharedProp,kFALSE) ;
} else {
delete tmpSharedProp ;
_sharedProp = 0 ;
}
}
R__b.CheckByteCount(R__s, R__c, RooCategory::IsA());
} else {
R__c = R__b.WriteVersion(RooCategory::IsA(), kTRUE);
RooAbsCategoryLValue::Streamer(R__b);
if (_sharedProp) {
_sharedProp->Streamer(R__b) ;
} else {
_nullProp.Streamer(R__b) ;
}
R__b.SetByteCount(R__c, kTRUE);
}
}