#include "RooFit.h"
#include "RooAbsCache.h"
#include "RooAbsArg.h"
#include "RooArgList.h"
ClassImp(RooAbsCache)
;
RooAbsCache::RooAbsCache(RooAbsArg* owner) : _owner(owner)
{
if (_owner) {
_owner->registerCache(*this) ;
}
}
RooAbsCache::RooAbsCache(const RooAbsCache&, RooAbsArg* owner ) : _owner(owner)
{
if (_owner) {
owner->registerCache(*this) ;
}
}
RooAbsCache::~RooAbsCache()
{
if (_owner) {
_owner->unRegisterCache(*this) ;
}
}
void RooAbsCache::optimizeCacheMode(const RooArgSet& , RooArgSet&, RooLinkedList& )
{
}
Bool_t RooAbsCache::redirectServersHook(const RooAbsCollection& , Bool_t , Bool_t , Bool_t )
{
return kFALSE ;
}
void RooAbsCache::operModeHook()
{
}
void RooAbsCache::findConstantNodes(const RooArgSet&, RooArgSet&, RooLinkedList& )
{
}
void RooAbsCache::printCompactTreeHook(std::ostream&, const char *)
{
}
Last update: Thu Jan 17 08:43:27 2008
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.