Hi, I would like to reference one RooAbsPdf from within a derived class. For RooRealVar references, I use RooRealProxy. Is there an equivalent for a RooAbsPdf?
Further details:
I have two classes A and B which inherit from RooAbsPdf. Class B has a special function called B::Special() Class A would like to store a pointer to class B and call B::Special(). The best way to do this is with a RooXXXProxy. I have tried using RooRealProxy and RooListProxy but neither of these seem to allow me to access B::Special(). How should I do this?
Thanks