Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef SUNDANCE_INTEGRAL_H
00032 #define SUNDANCE_INTEGRAL_H
00033
00034 #include "SundanceDefs.hpp"
00035 #include "SundanceExpr.hpp"
00036 #include "SundanceQuadratureFamilyStub.hpp"
00037 #include "SundanceCellFilterStub.hpp"
00038 #include "SundanceWatchFlag.hpp"
00039 #include "PlayaHandle.hpp"
00040 #include "SundanceParametrizedCurve.hpp"
00041 #include "Teuchos_RefCountPtr.hpp"
00042
00043
00044 namespace Sundance
00045 {
00046 using namespace Teuchos;
00047 using Playa::Handle;
00048 using Playa::Handleable;
00049
00050
00051
00052
00053
00054
00055 Expr Integral(const Handle<CellFilterStub>& domain,
00056 const Expr& integrand,
00057 const WatchFlag& watch=WatchFlag());
00058
00059
00060
00061
00062
00063 Expr Integral(const Handle<CellFilterStub>& domain,
00064 const Expr& integrand,
00065 const Handle<QuadratureFamilyStub>& quad,
00066 const WatchFlag& watch=WatchFlag());
00067
00068
00069
00070
00071
00072 Expr Integral(const Handle<CellFilterStub>& domain,
00073 const Expr& integrand,
00074 const Handle<QuadratureFamilyStub>& quad,
00075 const ParametrizedCurve& curve,
00076 const WatchFlag& watch=WatchFlag());
00077
00078 }
00079
00080 #endif