ROOT  6.06/09
Reference Guide
Public Member Functions | Static Public Member Functions | Protected Attributes | Static Protected Attributes | List of all members
RooObjCacheManager Class Reference

Definition at line 33 of file RooObjCacheManager.h.

Public Member Functions

 RooObjCacheManager (RooAbsArg *owner=0, Int_t maxSize=2, Bool_t clearCacheOnServerRedirect=kTRUE, Bool_t allowOptimize=kFALSE)
 Constructor of object cache manager for given owner. More...
 
 RooObjCacheManager (const RooObjCacheManager &other, RooAbsArg *owner=0)
 Copy constructor. More...
 
virtual ~RooObjCacheManager ()
 Destructor. More...
 
virtual Bool_t redirectServersHook (const RooAbsCollection &, Bool_t, Bool_t, Bool_t)
 Intercept server redirect calls. More...
 
virtual void operModeHook ()
 Intercept changes to cache operation mode and forward to cache elements. More...
 
virtual void optimizeCacheMode (const RooArgSet &, RooArgSet &, RooLinkedList &)
 Intercept calls to perform automatic optimization of cache mode operation. More...
 
virtual void printCompactTreeHook (std::ostream &, const char *)
 Add details on cache contents when printing in tree mode. More...
 
virtual void findConstantNodes (const RooArgSet &, RooArgSet &, RooLinkedList &)
 If clearOnRedirect is false, forward constant term optimization calls to cache elements. More...
 
virtual void insertObjectHook (RooAbsCacheElement &)
 Set owner link on all object inserted into cache. More...
 
void sterilize ()
 
void setClearOnRedirect (Bool_t flag)
 
- Public Member Functions inherited from RooCacheManager< RooAbsCacheElement >
 RooCacheManager (Int_t maxSize=2)
 
 RooCacheManager (RooAbsArg *owner, Int_t maxSize=2)
 
 RooCacheManager (const RooCacheManager &other, RooAbsArg *owner=0)
 
virtual ~RooCacheManager ()
 
RooAbsCacheElementgetObj (const RooArgSet *nset, Int_t *sterileIndex=0, const TNamed *isetRangeName=0)
 
RooAbsCacheElementgetObj (const RooArgSet *nset, const RooArgSet *iset, Int_t *sterileIdx, const char *isetRangeName)
 
RooAbsCacheElementgetObj (const RooArgSet *nset, const RooArgSet *iset, Int_t *sterileIndex=0, const TNamed *isetRangeName=0)
 
Int_t setObj (const RooArgSet *nset, RooAbsCacheElement *obj, const TNamed *isetRangeName=0)
 
Int_t setObj (const RooArgSet *nset, const RooArgSet *iset, RooAbsCacheElement *obj, const TNamed *isetRangeName=0)
 
void reset ()
 
Int_t lastIndex () const
 
Int_t cacheSize () const
 
RooAbsCacheElementgetObjByIndex (Int_t index) const
 
const RooNameSetnameSet1ByIndex (Int_t index) const
 
const RooNameSetnameSet2ByIndex (Int_t index) const
 
void wireCache ()
 
- Public Member Functions inherited from RooAbsCache
 RooAbsCache (RooAbsArg *owner=0)
 Constructor. Takes owner as argument and register cache with owner. More...
 
 RooAbsCache (const RooAbsCache &, RooAbsArg *owner=0)
 Copy constructor. Takes owner as argument and registers cache with owne. More...
 
virtual ~RooAbsCache ()
 Destructor. Unregisters cache with owner. More...
 

Static Public Member Functions

static void doClearObsList (Bool_t flag)
 
static Bool_t clearObsList ()
 

Protected Attributes

Bool_t _clearOnRedirect
 
Bool_t _allowOptimize
 
Bool_t _optCacheModeSeen
 
RooArgSet_optCacheObservables
 
- Protected Attributes inherited from RooCacheManager< RooAbsCacheElement >
Int_t _maxSize
 
Int_t _size
 Maximum size. More...
 
Int_t _lastIndex
 Actual use. More...
 
std::vector< RooNormSetCache_nsetCache
 Last slot accessed. More...
 
std::vector< RooAbsCacheElement * > _object
 Normalization/Integration set manager. More...
 
Bool_t _wired
 Payload. More...
 
- Protected Attributes inherited from RooAbsCache
RooAbsArg_owner
 

Static Protected Attributes

static Bool_t _clearObsList
 current optCacheObservables More...
 

#include <RooObjCacheManager.h>

+ Inheritance diagram for RooObjCacheManager:
+ Collaboration diagram for RooObjCacheManager:

Constructor & Destructor Documentation

RooObjCacheManager::RooObjCacheManager ( RooAbsArg owner = 0,
Int_t  maxSize = 2,
Bool_t  clearCacheOnServerRedirect = kTRUE,
Bool_t  allowOptimize = kFALSE 
)

Constructor of object cache manager for given owner.

If clearCacheOnServerRedirect is true all cache elements will be cleared when a server redirect is intercepted by the cache manager. This is the default strategy and should only be overridden when you really understand what you're doing as properly implementing server redirect in cache elements can get very complicated, especially if there are (cyclical) reference back to the owning object

Definition at line 51 of file RooObjCacheManager.cxx.

RooObjCacheManager::RooObjCacheManager ( const RooObjCacheManager other,
RooAbsArg owner = 0 
)

Copy constructor.

Definition at line 64 of file RooObjCacheManager.cxx.

RooObjCacheManager::~RooObjCacheManager ( )
virtual

Destructor.

Definition at line 77 of file RooObjCacheManager.cxx.

Member Function Documentation

static Bool_t RooObjCacheManager::clearObsList ( )
inlinestatic

Definition at line 52 of file RooObjCacheManager.h.

static void RooObjCacheManager::doClearObsList ( Bool_t  flag)
inlinestatic

Definition at line 51 of file RooObjCacheManager.h.

void RooObjCacheManager::findConstantNodes ( const RooArgSet obs,
RooArgSet cacheList,
RooLinkedList processedNodes 
)
virtual

If clearOnRedirect is false, forward constant term optimization calls to cache elements.

Reimplemented from RooAbsCache.

Definition at line 215 of file RooObjCacheManager.cxx.

void RooObjCacheManager::insertObjectHook ( RooAbsCacheElement obj)
virtual

Set owner link on all object inserted into cache.

Also if cache mode optimization was requested, apply it now to cache element being inserted

Reimplemented from RooCacheManager< RooAbsCacheElement >.

Definition at line 181 of file RooObjCacheManager.cxx.

void RooObjCacheManager::operModeHook ( )
virtual

Intercept changes to cache operation mode and forward to cache elements.

Reimplemented from RooCacheManager< RooAbsCacheElement >.

Definition at line 114 of file RooObjCacheManager.cxx.

void RooObjCacheManager::optimizeCacheMode ( const RooArgSet obs,
RooArgSet optNodes,
RooLinkedList processedNodes 
)
virtual

Intercept calls to perform automatic optimization of cache mode operation.

Forward calls to existing cache elements and save configuration of cache mode optimization so that it can be applied on new cache elements upon insertion

Reimplemented from RooAbsCache.

Definition at line 135 of file RooObjCacheManager.cxx.

void RooObjCacheManager::printCompactTreeHook ( std::ostream &  os,
const char *  indent 
)
virtual

Add details on cache contents when printing in tree mode.

Reimplemented from RooCacheManager< RooAbsCacheElement >.

Definition at line 200 of file RooObjCacheManager.cxx.

Bool_t RooObjCacheManager::redirectServersHook ( const RooAbsCollection newServerList,
Bool_t  mustReplaceAll,
Bool_t  nameChange,
Bool_t  isRecursive 
)
virtual

Intercept server redirect calls.

If clearOnRedirect was set, sterilize the cache (i.e. keep the structure but delete all contents). If not forward serverRedirect to cache elements

Reimplemented from RooCacheManager< RooAbsCacheElement >.

Definition at line 90 of file RooObjCacheManager.cxx.

void RooObjCacheManager::setClearOnRedirect ( Bool_t  flag)
inline

Definition at line 54 of file RooObjCacheManager.h.

void RooObjCacheManager::sterilize ( )
virtual

Member Data Documentation

Bool_t RooObjCacheManager::_allowOptimize
protected

Definition at line 59 of file RooObjCacheManager.h.

Referenced by findConstantNodes().

Bool_t RooObjCacheManager::_clearObsList
staticprotected

current optCacheObservables

Definition at line 64 of file RooObjCacheManager.h.

Referenced by clearObsList(), doClearObsList(), and sterilize().

Bool_t RooObjCacheManager::_clearOnRedirect
protected

Definition at line 58 of file RooObjCacheManager.h.

Referenced by redirectServersHook(), and setClearOnRedirect().

Bool_t RooObjCacheManager::_optCacheModeSeen
protected

Definition at line 60 of file RooObjCacheManager.h.

Referenced by insertObjectHook(), optimizeCacheMode(), and sterilize().

RooArgSet* RooObjCacheManager::_optCacheObservables
protected

The documentation for this class was generated from the following files: