00001
00002
00007 #ifndef __DMprofile_h__
00008 #define __DMprofile_h__
00009
00010 #include "CBinning.h"
00011
00012 class CDMprofile
00013 {
00014 int nbin;
00016 int nbin_cummass;
00017 double rmax_cummass;
00019 int noutside;
00020 Cbinner * binner;
00022 void radial_profiles(void);
00023 void vcirc_profile(void);
00025 public:
00026 double * cummass;
00027 double * vcirc;
00029 double rvcircmax;
00030 double vvcircmax;
00032 CDMprofile();
00033 ~CDMprofile();
00034 static double radius(int part);
00035 };
00036
00037 #endif // __DMprofile_h__