00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef myBetheBloch_hh
00020 #define myBetheBloch_hh
00021
00022 #include <map>
00023 #include "StObject.h"
00024 #ifndef ST_NO_NAMESPACES
00025 using std::map;
00026 #endif
00027
00028 class myBetheBloch : public StObject {
00029 map<double, double> mMap;
00030 public:
00031 myBetheBloch();
00032 virtual ~myBetheBloch();
00033 double operator() (double);
00034 ClassDef(myBetheBloch,1)
00035 };
00036 #endif