// RooSuperCategory consolidates several RooAbsCategoryLValue objects into
// a single category. The states of the super category consist of all the permutations
// of the input categories. The super category is an lvalue and requires that
// all input categories are lvalues as well as modification
// of its state will back propagate into a modification of its input categories.
// To define a consolidated category of multiple non-lvalye categories
// use class RooMultiCategory
// <p>
// RooSuperCategory state are automatically defined and updated whenever an input
// category modifies its list of states
// END_HTML
#include "RooFit.h"
#include "Riostream.h"
#include "Riostream.h"
#include <stdlib.h>
#include <stdio.h>
#include "TString.h"
#include "TClass.h"
#include "RooSuperCategory.h"
#include "RooStreamParser.h"
#include "RooArgSet.h"
#include "RooMultiCatIter.h"
#include "RooAbsCategoryLValue.h"
#include "RooMsgService.h"
using namespace std;
ClassImp(RooSuperCategory)
;
RooSuperCategory::RooSuperCategory(const char *name, const char *title, const RooArgSet& inInputCatList) :
RooAbsCategoryLValue(name, title), _catSet("input","Input category set",this,kTRUE,kTRUE)
{
TIterator* iter = inInputCatList.createIterator() ;
RooAbsArg* arg ;
while ((arg=(RooAbsArg*)iter->Next())) {
if (!arg->IsA()->InheritsFrom(RooAbsCategoryLValue::Class())) {
coutE(InputArguments) << "RooSuperCategory::RooSuperCategory(" << GetName() << "): input category " << arg->GetName()
<< " is not an lvalue" << endl ;
}
_catSet.add(*arg) ;
}
delete iter ;
_catIter = _catSet.createIterator() ;
updateIndexList() ;
}
RooSuperCategory::RooSuperCategory(const RooSuperCategory& other, const char *name) :
RooAbsCategoryLValue(other,name), _catSet("input",this,other._catSet)
{
_catIter = _catSet.createIterator() ;
updateIndexList() ;
setIndex(other.getIndex()) ;
}
RooSuperCategory::~RooSuperCategory()
{
delete _catIter ;
}
TIterator* RooSuperCategory::MakeIterator() const
{
return new RooMultiCatIter(_catSet) ;
}
void RooSuperCategory::updateIndexList()
{
clearTypes() ;
RooMultiCatIter mcIter(_catSet) ;
TObjString* obj ;
Int_t i(0) ;
while((obj = (TObjString*) mcIter.Next())) {
defineTypeUnchecked(obj->String(),i++) ;
}
setValueDirty() ;
}
TString RooSuperCategory::currentLabel() const
{
_catIter->Reset() ;
TString label ;
RooAbsCategory* cat ;
Bool_t first(kTRUE) ;
while((cat=(RooAbsCategory*) _catIter->Next())) {
label.Append(first?"{":";") ;
label.Append(cat->getLabel()) ;
first=kFALSE ;
}
label.Append("}") ;
return label ;
}
RooCatType RooSuperCategory::evaluate() const
{
if (isShapeDirty()) {
const_cast<RooSuperCategory*>(this)->updateIndexList() ;
}
const RooCatType* ret = lookupType(currentLabel(),kTRUE) ;
if (!ret) {
coutE(Eval) << "RooSuperCat::evaluate(" << this << ") error: current state not defined: '" << currentLabel() << "'" << endl ;
printStream(ccoutE(Eval),0,kVerbose) ;
return RooCatType() ;
}
return *ret ;
}
Bool_t RooSuperCategory::setIndex(Int_t index, Bool_t )
{
const RooCatType* type = lookupType(index,kTRUE) ;
if (!type) return kTRUE ;
return setType(type) ;
}
Bool_t RooSuperCategory::setLabel(const char* label, Bool_t )
{
const RooCatType* type = lookupType(label,kTRUE) ;
if (!type) return kTRUE ;
return setType(type) ;
}
Bool_t RooSuperCategory::setType(const RooCatType* type, Bool_t )
{
char buf[1024] ;
strlcpy(buf,type->GetName(),1024) ;
RooAbsCategoryLValue* arg ;
Bool_t error(kFALSE) ;
char* ptr=buf+1 ;
char* token = ptr ;
_catIter->Reset() ;
while ((arg=(RooAbsCategoryLValue*)_catIter->Next())) {
if (*ptr=='{') {
Int_t nBrak(1) ;
while(*(++ptr)) {
if (nBrak==0) {
*ptr = 0 ;
break ;
}
if (*ptr=='{') {
nBrak++ ;
} else if (*ptr=='}') {
nBrak-- ;
}
}
} else {
ptr = strtok(ptr,";}") ;
ptr += strlen(ptr) ;
}
error |= arg->setLabel(token) ;
token = ++ptr ;
}
return error ;
}
void RooSuperCategory::printMultiline(ostream& os, Int_t content, Bool_t verbose, TString indent) const
{
RooAbsCategory::printMultiline(os,content,verbose,indent) ;
if (verbose) {
os << indent << "--- RooSuperCategory ---" << endl;
os << indent << " Input category list:" << endl ;
TString moreIndent(indent) ;
os << moreIndent << _catSet << endl ;
}
}
Bool_t RooSuperCategory::readFromStream(istream& , Bool_t , Bool_t )
{
return kTRUE ;
}
void RooSuperCategory::writeToStream(ostream& os, Bool_t compact) const
{
RooAbsCategory::writeToStream(os,compact) ;
}
Bool_t RooSuperCategory::inRange(const char* rangeName) const
{
_catIter->Reset() ;
RooAbsCategoryLValue* cat ;
while((cat = (RooAbsCategoryLValue*)_catIter->Next())) {
if (!cat->inRange(rangeName)) {
return kFALSE ;
}
}
return kTRUE ;
}
Bool_t RooSuperCategory::hasRange(const char* rangeName) const
{
_catIter->Reset() ;
RooAbsCategoryLValue* cat ;
while((cat = (RooAbsCategoryLValue*)_catIter->Next())) {
if (cat->hasRange(rangeName)) return kTRUE ;
}
return kFALSE ;
}