Warning, file /include/root/RooFracRemainder.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_FRAC_REMAINDER
0017 #define ROO_FRAC_REMAINDER
0018
0019 #include "RooAbsReal.h"
0020 #include "RooListProxy.h"
0021
0022 class RooRealVar;
0023 class RooArgList ;
0024
0025 class RooFracRemainder : public RooAbsReal {
0026 public:
0027
0028
0029 RooFracRemainder() {}
0030 RooFracRemainder(const char *name, const char *title, const RooArgSet& sumSet) ;
0031
0032 RooFracRemainder(const RooFracRemainder& other, const char* name = nullptr);
0033 TObject* clone(const char* newname=nullptr) const override { return new RooFracRemainder(*this, newname); }
0034
0035 protected:
0036
0037 RooListProxy _set1 ;
0038
0039 double evaluate() const override;
0040
0041 ClassDefOverride(RooFracRemainder,1)
0042 };
0043
0044 #endif