/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 * @(#)root/roofitcore:$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)             *
 *****************************************************************************/

//////////////////////////////////////////////////////////////////////////////
// 
// BEGIN_HTML
// Template class RooCacheManager manages the storage of any type of data indexed on
// the choice of normalization and optionally the set of integrated observables.
// The purpose of this class is to faciliate storage of intermediate results
// in operator p.d.f.s whose value and inner working are often highly dependent
// on the user provided choice of normalization in getVal(). 
//
// For efficiency reasons these normalization set pointer are
// derefenced as little as possible. This class contains a lookup
// table for RooArgSet pointer pairs -> normalization lists.  Distinct
// pointer pairs that represent the same normalization/projection are
// recognized and will all point to the same normalization list. Lists
// for up to 'maxSize' different normalization/ projection
// configurations can be cached.  
// END_HTML
//
// 

#include "RooFit.h"
#include <vector>
#include "RooCacheManager.h"

using namespace std ;

#ifndef ROOFIT_R__NO_CLASS_TEMPLATE_SPECIALIZATION
#define ROOFIT_R__NO_CLASS_TEMPLATE_SPECIALIZATION
templateClassImp(RooCacheManager) 
#endif 





 RooCacheManager.cxx:1
 RooCacheManager.cxx:2
 RooCacheManager.cxx:3
 RooCacheManager.cxx:4
 RooCacheManager.cxx:5
 RooCacheManager.cxx:6
 RooCacheManager.cxx:7
 RooCacheManager.cxx:8
 RooCacheManager.cxx:9
 RooCacheManager.cxx:10
 RooCacheManager.cxx:11
 RooCacheManager.cxx:12
 RooCacheManager.cxx:13
 RooCacheManager.cxx:14
 RooCacheManager.cxx:15
 RooCacheManager.cxx:16
 RooCacheManager.cxx:17
 RooCacheManager.cxx:18
 RooCacheManager.cxx:19
 RooCacheManager.cxx:20
 RooCacheManager.cxx:21
 RooCacheManager.cxx:22
 RooCacheManager.cxx:23
 RooCacheManager.cxx:24
 RooCacheManager.cxx:25
 RooCacheManager.cxx:26
 RooCacheManager.cxx:27
 RooCacheManager.cxx:28
 RooCacheManager.cxx:29
 RooCacheManager.cxx:30
 RooCacheManager.cxx:31
 RooCacheManager.cxx:32
 RooCacheManager.cxx:33
 RooCacheManager.cxx:34
 RooCacheManager.cxx:35
 RooCacheManager.cxx:36
 RooCacheManager.cxx:37
 RooCacheManager.cxx:38
 RooCacheManager.cxx:39
 RooCacheManager.cxx:40
 RooCacheManager.cxx:41
 RooCacheManager.cxx:42
 RooCacheManager.cxx:43
 RooCacheManager.cxx:44
 RooCacheManager.cxx:45
 RooCacheManager.cxx:46
 RooCacheManager.cxx:47
 RooCacheManager.cxx:48
 RooCacheManager.cxx:49
 RooCacheManager.cxx:50
 RooCacheManager.cxx:51