Logo ROOT   6.30.04
Reference Guide
 All Namespaces Files Pages
TFoamIntegrand.h
Go to the documentation of this file.
1 // @(#)root/foam:$Id$
2 // Author: S. Jadach <mailto:Stanislaw.jadach@ifj.edu.pl>, P.Sawicki <mailto:Pawel.Sawicki@ifj.edu.pl>
3 
4 #ifndef ROOT_TFoamIntegrand
5 #define ROOT_TFoamIntegrand
6 
7 #include "TObject.h"
8 
9 class TFoamIntegrand : public TObject {
10 public:
11  TFoamIntegrand() { };
12  virtual ~TFoamIntegrand() { };
13  virtual Double_t Density(Int_t ndim, Double_t *) = 0;
14 
15  ClassDef(TFoamIntegrand,1); //n-dimensional real positive integrand of FOAM
16 };
17 
18 #endif