The interface of the class has been changed. The old user interface was very hard to use, and the documentation in the source was also not on par with the correct usage. The old interface was a single get-function with 12 arguments, and the user was supposed to figure out which ~ 5 arguments were relevant for a specific model (1 out of 7 models).
The new user interface is is easy to use correctly and hard to use incorrectly (TM). It's a single set-method for each method:
SetPoissonBkgBinomialEff(Int_t x,Int_t y,Int_t z,Double_t tau,Int_t m);
SetPoissonBkgGaussianEff(Int_t x,Int_t y,Double_t em, Double_t tau,Double_t sde);
SetGaussianBkgGaussianEff(Int_t x,Double_t bm,Double_t em, Double_t sde,Double_t sdb);
SetPoissondBkgknownEff(Int_t x,Int_t y,Double_t tau,Double_t e);
SetGaussianBkgknownEff(Int_t x,Double_t bm,Double_t sdb,Double_t e);
SetKnownBkgBinomialEff(Int_t x, Int_t z,Int_t m,Double_t b);
SetknownBkgGaussianEff(Int_t x,Double_t em,Double_t sde,Double_t b);