Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/root/TFoamIntegrand.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // @(#)root/foam:$Id$
0002 // Author: S. Jadach <mailto:Stanislaw.jadach@ifj.edu.pl>, P.Sawicki <mailto:Pawel.Sawicki@ifj.edu.pl>
0003 
0004 #ifndef ROOT_TFoamIntegrand
0005 #define ROOT_TFoamIntegrand
0006 
0007 #include "TObject.h"
0008 
0009 class TFoamIntegrand : public TObject  {
0010 public:
0011    TFoamIntegrand() { };
0012    ~TFoamIntegrand() override { };
0013    virtual Double_t Density(Int_t ndim, Double_t *) = 0;
0014 
0015    ClassDefOverride(TFoamIntegrand,1); //n-dimensional real positive integrand of FOAM
0016 };
0017 
0018 #endif