00001 #ifndef TRANSPORT_H
00002 #define TRANSPORT_H
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef ZMENVIRONMENT_H
00012 #include "ZMutility/ZMenvironment.h"
00013 #endif
00014 #include <utility>
00015
00016 ZM_BEGIN_NAMESPACE( zmsf )
00017
00018 typedef std::pair<double,double> Dpair;
00019
00024
00025 struct Transport {
00026
00028 static double Transport2( const double x );
00029
00031 static Dpair Transport2Err( const double x );
00032
00034 static double Transport3( const double x );
00035
00037 static Dpair Transport3Err( const double x );
00038
00040 static double Transport4( const double x );
00041
00043 static Dpair Transport4Err( const double x );
00044
00046 static double Transport5( const double x );
00047
00049 static Dpair Transport5Err( const double x );
00050
00051 };
00052
00053 ZM_END_NAMESPACE( zmsf )
00054
00055 #endif