/***************************************************************************** * Project: RooFit * * Package: RooFitCore * * File: $Id: RooGenCategory.rdl,v 1.10 2005/06/20 15:44:52 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_GEN_CATEGORY #define ROO_GEN_CATEGORY #include "TObjArray.h" #include "TMethodCall.h" #include "RooAbsCategory.h" #include "RooSuperCategory.h" #include "RooCategoryProxy.h" #include "RooCatType.h" class RooGenCategory : public RooAbsCategory { public: // Constructors etc. inline RooGenCategory() { } RooGenCategory(const char *name, const char *title, void* userFunc, RooArgSet& catList); RooGenCategory(const RooGenCategory& other, const char *name=0) ; virtual TObject* clone(const char* newname) const { return new RooGenCategory(*this,newname); } virtual ~RooGenCategory(); // Printing interface (human readable) virtual void printToStream(ostream& os, PrintOption opt=Standard, TString indent= "") const ; // I/O streaming interface (machine readable) virtual Bool_t readFromStream(istream& is, Bool_t compact, Bool_t verbose=kFALSE) ; virtual void writeToStream(ostream& os, Bool_t compact) const ; protected: void initialize() ; TString evalUserFunc(RooArgSet *vars) ; void updateIndexList() ; RooSuperCategory _superCat ; // Super category of input categories RooCategoryProxy _superCatProxy ; // Proxy for super category Int_t *_map ; //! Super-index to generic-index map TString _userFuncName ; // TMethodCall* _userFunc; // User function hook Long_t _userArgs[1]; // virtual RooCatType evaluate() const ; ClassDef(RooGenCategory,1) // Index variable derived from other indeces, via an external global function }; #endif