Warning, file /include/root/RooAICRegistry.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #ifndef ROO_AIC_REGISTRY
0017 #define ROO_AIC_REGISTRY
0018
0019 #include <vector>
0020 #include "Rtypes.h"
0021
0022 class RooArgSet;
0023
0024 typedef RooArgSet* pRooArgSet ;
0025
0026 class RooAICRegistry {
0027
0028 public:
0029 RooAICRegistry(UInt_t size = 10) ;
0030 RooAICRegistry(const RooAICRegistry& other) ;
0031 virtual ~RooAICRegistry() ;
0032
0033 Int_t store(const std::vector<Int_t>& codeList, RooArgSet* set1 = nullptr, RooArgSet* set2 = nullptr,
0034 RooArgSet* set3 = nullptr, RooArgSet* set4 = nullptr) ;
0035 const std::vector<Int_t>& retrieve(Int_t masterCode) const ;
0036 const std::vector<Int_t>& retrieve(Int_t masterCode, pRooArgSet& set1) const ;
0037 const std::vector<Int_t>& retrieve(Int_t masterCode, pRooArgSet& set1, pRooArgSet& set2) const ;
0038 const std::vector<Int_t>& retrieve(Int_t masterCode, pRooArgSet& set1,
0039 pRooArgSet& set2, pRooArgSet& set3, pRooArgSet& set4) const ;
0040
0041 protected:
0042
0043 std::vector<std::vector<Int_t> > _clArr;
0044 std::vector<pRooArgSet> _asArr1;
0045 std::vector<pRooArgSet> _asArr2;
0046 std::vector<pRooArgSet> _asArr3;
0047 std::vector<pRooArgSet> _asArr4;
0048
0049 ClassDef(RooAICRegistry,2)
0050 } ;
0051
0052 #endif