/***************************************************************************** * Project: RooFit * * * * Copyright (c) 2000-2005, Regents of the University of California * * and Stanford University. All rights reserved. * * * * Redistribution and use in source and binary forms, * * with or without modification, are permitted according to the terms * * listed in LICENSE (http://roofit.sourceforge.net/license.txt) * *****************************************************************************/ #ifndef ROOTEST #define ROOTEST #include "RooRealProxy.h" #include "RooAbsReal.h" #include "RooAbsPdf.h" class RooTest : public RooAbsPdf { public: RooTest() {} ; RooTest(const char *name, const char *title, RooAbsReal& _test); RooTest(const RooTest& other, const char* name=0) ; virtual TObject* clone(const char* newname) const { return new RooTest(*this,newname); } inline virtual ~RooTest() { } protected: RooRealProxy test ; //mass difference Double_t evaluate() const ; private: // ClassDef(RooTest,0) // Your description goes here... }; #endif