/***************************************************************************** * Project: RooFit * * Package: RooFitCore * * File: $Id: RooCacheManager.h 24269 2008-06-13 15:37:03Z wouter $ * 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_CACHE_MANAGER #define ROO_CACHE_MANAGER #include "Rtypes.h" #include "Riostream.h" #include "RooMsgService.h" #include "RooNormSetCache.h" #include "RooAbsReal.h" #include "RooArgSet.h" #include "RooArgList.h" #include "RooAbsCache.h" #include "RooAbsCacheElement.h" #include class RooNameSet ; template class RooCacheManager : public RooAbsCache { public: RooCacheManager(Int_t maxSize=10) ; RooCacheManager(RooAbsArg* owner, Int_t maxSize=10) ; RooCacheManager(const RooCacheManager& other, RooAbsArg* owner=0) ; virtual ~RooCacheManager() ; T* getObj(const RooArgSet* nset, Int_t* sterileIndex=0, const TNamed* isetRangeName=0) { // Getter function without integration set return getObj(nset,0,sterileIndex,isetRangeName) ; } Int_t setObj(const RooArgSet* nset, T* obj, const TNamed* isetRangeName=0) { // Setter function without integration set return setObj(nset,0,obj,isetRangeName) ; } T* getObj(const RooArgSet* nset, const RooArgSet* iset, Int_t* sterileIndex=0, const TNamed* isetRangeName=0) ; Int_t setObj(const RooArgSet* nset, const RooArgSet* iset, T* obj, const TNamed* isetRangeName=0) ; void reset() ; void sterilize() ; Int_t lastIndex() const { // Return index of slot used in last get or set operation return _lastIndex ; } Int_t cacheSize() const { // Return size of cache return _size ; } virtual Bool_t redirectServersHook(const RooAbsCollection& /*newServerList*/, Bool_t /*mustReplaceAll*/, Bool_t /*nameChange*/, Bool_t /*isRecursive*/) { // Interface function to intercept server redirects return kFALSE ; } virtual void operModeHook() { // Interface function to intercept cache operation mode changes } virtual void printCompactTreeHook(std::ostream&, const char *) { // Interface function to cache add contents to output in tree printing mode } T* getObjByIndex(Int_t index) const ; const RooNameSet* nameSet1ByIndex(Int_t index) const ; const RooNameSet* nameSet2ByIndex(Int_t index) const ; virtual void insertObjectHook(T&) { // Interface function to perform post-insert operations on cached object } protected: Int_t _maxSize ; // Maximum size Int_t _size ; // Actual use Int_t _lastIndex ; // Last slot accessed RooNormSetCache* _nsetCache ; //! Normalization/Integration set manager T** _object ; //! Payload ClassDef(RooCacheManager,1) // Cache Manager class generic objects } ; // needed to avoid 'specialization after instantiation' problem in gcc template <> void RooCacheManager::ShowMembers(TMemberInspector &R__insp, char *R__parent) ; template <> void RooCacheManager >::ShowMembers(TMemberInspector &R__insp, char *R__parent) ; template RooCacheManager::RooCacheManager(Int_t maxSize) : RooAbsCache(0) { // Constructor for simple caches without RooAbsArg payload. A cache // made with this constructor is not registered with its owner // and will not receive information on server redirects and // cache operation mode changes _maxSize = maxSize ; _nsetCache = new RooNormSetCache[maxSize] ; _object = new T*[maxSize] ; } template RooCacheManager::RooCacheManager(RooAbsArg* owner, Int_t maxSize) : RooAbsCache(owner) { // Constructor for simple caches with RooAbsArg derived payload. A cache // made with this constructor is registered with its owner // and will receive information on server redirects and // cache operation mode changes _maxSize = maxSize ; _size = 0 ; _nsetCache = new RooNormSetCache[maxSize] ; _object = new T*[maxSize] ; _lastIndex = -1 ; Int_t i ; for (i=0 ; i<_maxSize ; i++) { _object[i]=0 ; } } template RooCacheManager::RooCacheManager(const RooCacheManager& other, RooAbsArg* owner) : RooAbsCache(other,owner) { // Copy constructor _maxSize = other._maxSize ; _size = other._size ; _nsetCache = new RooNormSetCache[_maxSize] ; _object = new T*[_maxSize] ; _lastIndex = -1 ; // cout << "RooCacheManager:cctor(" << this << ")" << endl ; Int_t i ; for (i=0 ; i RooCacheManager::~RooCacheManager() { // Destructor delete[] _nsetCache ; Int_t i ; for (i=0 ; i<_size ; i++) { delete _object[i] ; } delete[] _object ; } template void RooCacheManager::reset() { // Clear the cache Int_t i ; for (i=0 ; i<_maxSize ; i++) { delete _object[i] ; _object[i]=0 ; _nsetCache[i].clear() ; } _lastIndex = -1 ; _size = 0 ; } template void RooCacheManager::sterilize() { // Clear the cache payload but retain slot mapping w.r.t to // normalization and integration sets. Int_t i ; for (i=0 ; i<_maxSize ; i++) { delete _object[i] ; _object[i]=0 ; } } template Int_t RooCacheManager::setObj(const RooArgSet* nset, const RooArgSet* iset, T* obj, const TNamed* isetRangeName) { // Insert payload object 'obj' in cache indexed on nset,iset and isetRangeName // Check if object is already registered Int_t sterileIdx(-1) ; if (getObj(nset,iset,&sterileIdx,isetRangeName)) { return lastIndex() ; } if (sterileIdx>=0) { // Found sterile slot that can should be recycled [ sterileIndex only set if isetRangeName matches ] _object[sterileIdx] = obj ; return lastIndex() ; } if (_size==_maxSize) { return -1 ; } _nsetCache[_size].autoCache(_owner,nset,iset,isetRangeName,kTRUE) ; if (_object[_size]) { delete _object[_size] ; } _object[_size] = obj ; _size++ ; // Allow optional post-processing of object inserted in cache insertObjectHook(*obj) ; return _size-1 ; } template T* RooCacheManager::getObj(const RooArgSet* nset, const RooArgSet* iset, Int_t* sterileIdx, const TNamed* isetRangeName) { // Retrieve payload object indexed on nset,uset amd isetRangeName // If sterileIdx is not null, it is set to the index of the sterile // slot in cacse such a slot is recycled Int_t i ; for (i=0 ; i<_size ; i++) { if (_nsetCache[i].contains(nset,iset,isetRangeName)==kTRUE) { _lastIndex = i ; if(_object[i]==0 && sterileIdx) *sterileIdx=i ; return _object[i] ; } } for (i=0 ; i<_size ; i++) { if (_nsetCache[i].autoCache(_owner,nset,iset,isetRangeName,kFALSE)==kFALSE) { _lastIndex = i ; if(_object[i]==0 && sterileIdx) *sterileIdx=i ; return _object[i] ; } } return 0 ; } template T* RooCacheManager::getObjByIndex(Int_t index) const { // Retrieve payload object by slot index if (index<0||index>=_size) { oocoutE(_owner,ObjectHandling) << "RooCacheManager::getNormListByIndex: ERROR index (" << index << ") out of range [0," << _size-1 << "]" << endl ; return 0 ; } return _object[index] ; } template const RooNameSet* RooCacheManager::nameSet1ByIndex(Int_t index) const { // Retrieve RooNameSet associated with slot at given index if (index<0||index>=_size) { oocoutE(_owner,ObjectHandling) << "RooCacheManager::getNormListByIndex: ERROR index (" << index << ") out of range [0," << _size-1 << "]" << endl ; return 0 ; } return &_nsetCache[index].nameSet1() ; } template const RooNameSet* RooCacheManager::nameSet2ByIndex(Int_t index) const { // Retrieve RooNameSet associated with slot at given index if (index<0||index>=_size) { oocoutE(_owner,ObjectHandling) << "RooCacheManager::getNormListByIndex: ERROR index (" << index << ") out of range [0," << _size-1 << "]" << endl ; return 0 ; } return &_nsetCache[index].nameSet2() ; } #endif