00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef ROO_AIC_REGISTRY
00017 #define ROO_AIC_REGISTRY
00018
00019 #include "Riosfwd.h"
00020 #include <assert.h>
00021 #include "Rtypes.h"
00022 class RooArgSet ;
00023
00024 typedef Int_t* pInt_t ;
00025 typedef RooArgSet* pRooArgSet ;
00026
00027 class RooAICRegistry {
00028
00029 public:
00030 RooAICRegistry(Int_t regSize=10) ;
00031 RooAICRegistry(const RooAICRegistry& other) ;
00032 virtual ~RooAICRegistry() ;
00033
00034 Int_t store(Int_t* codeList, Int_t size, RooArgSet* set1=0, RooArgSet* set2=0, RooArgSet* set3=0, RooArgSet* set4=0) ;
00035 const Int_t* retrieve(Int_t masterCode) const ;
00036 const Int_t* retrieve(Int_t masterCode, pRooArgSet& set1) const ;
00037 const Int_t* retrieve(Int_t masterCode, pRooArgSet& set1, pRooArgSet& set2) const ;
00038 const Int_t* retrieve(Int_t masterCode, pRooArgSet& set1, pRooArgSet& set2, pRooArgSet& set3, pRooArgSet& set4) const ;
00039
00040 protected:
00041
00042 Int_t _regSize ;
00043 Int_t* _clSize;
00044 pInt_t* _clArr;
00045 pRooArgSet* _asArr1;
00046 pRooArgSet* _asArr2;
00047 pRooArgSet* _asArr3;
00048 pRooArgSet* _asArr4;
00049
00050 ClassDef(RooAICRegistry,1)
00051 } ;
00052
00053 #endif