00001 #ifndef __SBprofile_h__ 00002 #define __SBprofile_h__ 00003 00004 class CSprofile 00005 { 00006 double radmin; 00007 double radmax; 00008 int band; 00009 int nbin; 00011 void calc_the_profiles(void); 00012 00013 public: 00014 double * radius; 00015 double * radius_center; 00016 double * sbprofile; 00017 int * nsspprofile; 00018 double * nstarprofile; 00019 00020 bool empty; 00022 CSprofile(double radmin, double radmax, int band, int nbin); 00023 ~CSprofile(); 00024 }; 00025 00026 #endif // __SBprofile_h__