ROOT logo
/*****************************************************************************
 * Project: RooFit                                                           *
 * Package: RooFitCore                                                       *
 *    File: $Id: RooNormSetCache.h,v 1.12 2007/08/09 19:55:47 wouter Exp $
 * 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_NORMSET_CACHE
#define ROO_NORMSET_CACHE

#include "Riosfwd.h"
#include <assert.h>
#include "Rtypes.h"
#include "RooNameSet.h"
#include "RooSetPair.h"
#include "RooHashTable.h"

class RooArgSet ;
class RooSetPair ;

typedef RooArgSet* pRooArgSet ;

class RooNormSetCache {

public:
  RooNormSetCache(Int_t regSize=64) ;
  RooNormSetCache(const RooNormSetCache& other) ;
  virtual ~RooNormSetCache() ;

  void add(const RooArgSet* set1, const RooArgSet* set2=0) ;

  inline Int_t index(const RooArgSet* set1, const RooArgSet* set2=0, const TNamed* set2RangeName=0) {

    // Match range name first
    if (set2RangeName != _set2RangeName) return -1 ;

    // Match pointer of sets
    Int_t i ;
    for (i=0 ; i<_nreg ; i++) {
      if (_asArr[i]._set1 == set1 && 
	  _asArr[i]._set2 == set2 
	  ) return i ;
    }    
    
    return -1 ;
  }

  inline Bool_t contains(const RooArgSet* set1, const RooArgSet* set2=0, const TNamed* set2RangeName=0) {
    if (set2RangeName!=_set2RangeName) return kFALSE ;
    if (_htable) return (_htable->findSetPair(set1,set2)) ;
    return (index(set1,set2,set2RangeName)>=0) ;
  }

  inline Bool_t containsSet1(const RooArgSet* set1) {
    Int_t i ;
    for (i=0 ; i<_nreg ; i++) {
      if (_asArr[i]._set1 == set1) return kTRUE ;
    }
    return kFALSE ;
  }

  const RooArgSet* lastSet1() const { return _nreg>0?_asArr[_nreg-1]._set1:0 ; }
  const RooArgSet* lastSet2() const { return _nreg>0?_asArr[_nreg-1]._set2:0 ; }
  const RooNameSet& nameSet1() const { return _name1 ; }
  const RooNameSet& nameSet2() const { return _name2 ; }

  Bool_t autoCache(const RooAbsArg* self, const RooArgSet* set1, const RooArgSet* set2=0, const TNamed* set2RangeName=0, Bool_t autoRefill=kTRUE) ;
    
  void clear() ;
  Int_t entries() const { return _nreg ; }

  void initialize(const RooNormSetCache& other) ;

protected:

  void expand() ;

  RooHashTable* _htable ; //! do not persist
  Int_t _regSize ;
  Int_t _nreg ;
  RooSetPair* _asArr ;  //! do not persist

  RooNameSet _name1 ;   //!
  RooNameSet _name2 ;   //!
  TNamed*    _set2RangeName ; //!

  ClassDef(RooNormSetCache,1) // Management tool for tracking sets of similar integration/normalization sets
} ;

#endif 
 RooNormSetCache.h:1
 RooNormSetCache.h:2
 RooNormSetCache.h:3
 RooNormSetCache.h:4
 RooNormSetCache.h:5
 RooNormSetCache.h:6
 RooNormSetCache.h:7
 RooNormSetCache.h:8
 RooNormSetCache.h:9
 RooNormSetCache.h:10
 RooNormSetCache.h:11
 RooNormSetCache.h:12
 RooNormSetCache.h:13
 RooNormSetCache.h:14
 RooNormSetCache.h:15
 RooNormSetCache.h:16
 RooNormSetCache.h:17
 RooNormSetCache.h:18
 RooNormSetCache.h:19
 RooNormSetCache.h:20
 RooNormSetCache.h:21
 RooNormSetCache.h:22
 RooNormSetCache.h:23
 RooNormSetCache.h:24
 RooNormSetCache.h:25
 RooNormSetCache.h:26
 RooNormSetCache.h:27
 RooNormSetCache.h:28
 RooNormSetCache.h:29
 RooNormSetCache.h:30
 RooNormSetCache.h:31
 RooNormSetCache.h:32
 RooNormSetCache.h:33
 RooNormSetCache.h:34
 RooNormSetCache.h:35
 RooNormSetCache.h:36
 RooNormSetCache.h:37
 RooNormSetCache.h:38
 RooNormSetCache.h:39
 RooNormSetCache.h:40
 RooNormSetCache.h:41
 RooNormSetCache.h:42
 RooNormSetCache.h:43
 RooNormSetCache.h:44
 RooNormSetCache.h:45
 RooNormSetCache.h:46
 RooNormSetCache.h:47
 RooNormSetCache.h:48
 RooNormSetCache.h:49
 RooNormSetCache.h:50
 RooNormSetCache.h:51
 RooNormSetCache.h:52
 RooNormSetCache.h:53
 RooNormSetCache.h:54
 RooNormSetCache.h:55
 RooNormSetCache.h:56
 RooNormSetCache.h:57
 RooNormSetCache.h:58
 RooNormSetCache.h:59
 RooNormSetCache.h:60
 RooNormSetCache.h:61
 RooNormSetCache.h:62
 RooNormSetCache.h:63
 RooNormSetCache.h:64
 RooNormSetCache.h:65
 RooNormSetCache.h:66
 RooNormSetCache.h:67
 RooNormSetCache.h:68
 RooNormSetCache.h:69
 RooNormSetCache.h:70
 RooNormSetCache.h:71
 RooNormSetCache.h:72
 RooNormSetCache.h:73
 RooNormSetCache.h:74
 RooNormSetCache.h:75
 RooNormSetCache.h:76
 RooNormSetCache.h:77
 RooNormSetCache.h:78
 RooNormSetCache.h:79
 RooNormSetCache.h:80
 RooNormSetCache.h:81
 RooNormSetCache.h:82
 RooNormSetCache.h:83
 RooNormSetCache.h:84
 RooNormSetCache.h:85
 RooNormSetCache.h:86
 RooNormSetCache.h:87
 RooNormSetCache.h:88
 RooNormSetCache.h:89
 RooNormSetCache.h:90
 RooNormSetCache.h:91
 RooNormSetCache.h:92
 RooNormSetCache.h:93
 RooNormSetCache.h:94
 RooNormSetCache.h:95
 RooNormSetCache.h:96
 RooNormSetCache.h:97
 RooNormSetCache.h:98