/usr/include/root/RooCacheManager.h is in libroot-roofit-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 | /*****************************************************************************
* Project: RooFit *
* Package: RooFitCore *
* File: $Id$
* 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 "RooMsgService.h"
#include "RooNormSetCache.h"
#include "RooAbsReal.h"
#include "RooArgSet.h"
#include "RooArgList.h"
#include "RooAbsCache.h"
#include "RooAbsCacheElement.h"
#include "RooNameReg.h"
#include <vector>
class RooNameSet ;
template<class T>
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) ;
}
inline T* getObj(const RooArgSet* nset, const RooArgSet* iset, Int_t* sterileIdx, const char* isetRangeName) {
if (_wired) return _object[0] ;
return getObj(nset,iset,sterileIdx,RooNameReg::ptr(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() ;
virtual 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
}
void wireCache() {
if (_size==0) {
oocoutI(_owner,Optimization) << "RooCacheManager::wireCache(" << _owner->GetName() << ") no cached elements!" << std::endl ;
} else if (_size==1) {
oocoutI(_owner,Optimization) << "RooCacheManager::wireCache(" << _owner->GetName() << ") now wiring cache" << std::endl ;
_wired=kTRUE ;
} else if (_size>1) {
oocoutI(_owner,Optimization) << "RooCacheManager::wireCache(" << _owner->GetName() << ") cache cannot be wired because it contains more than one element" << std::endl ;
}
}
protected:
Int_t _maxSize ; // Maximum size
Int_t _size ; // Actual use
Int_t _lastIndex ; // Last slot accessed
std::vector<RooNormSetCache> _nsetCache ; //! Normalization/Integration set manager
std::vector<T*> _object ; //! Payload
Bool_t _wired ; //! In wired mode, there is a single payload which is returned always
ClassDef(RooCacheManager,1) // Cache Manager class generic objects
} ;
template<class T>
RooCacheManager<T>::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.resize(_maxSize) ; // = new RooNormSetCache[maxSize] ;
_object.resize(_maxSize,0) ; // = new T*[maxSize] ;
_wired = kFALSE ;
}
template<class T>
RooCacheManager<T>::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.resize(_maxSize) ; // = new RooNormSetCache[maxSize] ;
_object.resize(_maxSize,0) ; // = new T*[maxSize] ;
_wired = kFALSE ;
_lastIndex = -1 ;
Int_t i ;
for (i=0 ; i<_maxSize ; i++) {
_object[i]=0 ;
}
}
template<class T>
RooCacheManager<T>::RooCacheManager(const RooCacheManager& other, RooAbsArg* owner) : RooAbsCache(other,owner)
{
// Copy constructor
_maxSize = other._maxSize ;
_size = other._size ;
_nsetCache.resize(_maxSize) ; // = new RooNormSetCache[_maxSize] ;
_object.resize(_maxSize,0) ; // = new T*[_maxSize] ;
_wired = kFALSE ;
_lastIndex = -1 ;
// std::cout << "RooCacheManager:cctor(" << this << ")" << std::endl ;
Int_t i ;
for (i=0 ; i<other._size ; i++) {
_nsetCache[i].initialize(other._nsetCache[i]) ;
_object[i] = 0 ;
}
for (i=other._size ; i<_maxSize ; i++) {
_object[i] = 0 ;
}
}
template<class T>
RooCacheManager<T>::~RooCacheManager()
{
// Destructor
//delete[] _nsetCache ;
Int_t i ;
for (i=0 ; i<_size ; i++) {
delete _object[i] ;
}
//delete[] _object ;
}
template<class T>
void RooCacheManager<T>::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<class T>
void RooCacheManager<T>::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<class T>
Int_t RooCacheManager<T>::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 ;
// Allow optional post-processing of object inserted in cache
insertObjectHook(*obj) ;
return lastIndex() ;
}
if (_size==_maxSize) {
_maxSize *=2 ;
_object.resize(_maxSize,0) ;
_nsetCache.resize(_maxSize) ;
}
_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) ;
// Unwire cache in case it was wired
_wired = kFALSE ;
return _size-1 ;
}
template<class T>
T* RooCacheManager<T>::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
// Fast-track for wired mode
if (_wired) {
if(_object[0]==0 && sterileIdx) *sterileIdx=0 ;
return _object[0] ;
}
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<class T>
T* RooCacheManager<T>::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 << "]" << std::endl ;
return 0 ;
}
return _object[index] ;
}
template<class T>
const RooNameSet* RooCacheManager<T>::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 << "]" << std::endl ;
return 0 ;
}
return &_nsetCache[index].nameSet1() ;
}
template<class T>
const RooNameSet* RooCacheManager<T>::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 << "]" << std::endl ;
return 0 ;
}
return &_nsetCache[index].nameSet2() ;
}
#endif
|