00001 #ifndef SYNCHROTRON_H
00002 #define SYNCHROTRON_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 Synchrotron {
00026
00028 static double Synchrotron1( const double x );
00029
00031 static Dpair Synchrotron1Err( const double x );
00032
00034 static double Synchrotron2( const double x );
00035
00037 static Dpair Synchrotron2Err( const double x );
00038
00039 };
00040
00041 ZM_END_NAMESPACE( zmsf )
00042
00043 #endif