Changeset 532 in Sophya
- Timestamp:
- Oct 28, 1999, 11:21:33 AM (26 years ago)
- Location:
- trunk/SophyaLib/Samba
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/Samba/anagen.cc
r514 r532 11 11 } 12 12 13 void map2almgen(int nsmax,int nlmax,int nmmax,const SphericalMap & map,13 void map2almgen(int nsmax,int nlmax,int nmmax,const SphericalMap<double>& map, 14 14 vector< vector< complex<double> > >& alm, double cos_theta_cut){ 15 15 … … 36 36 int nph; 37 37 double phi0; 38 float theta; 39 Vector phin, datan, phis, datas; 38 double theta; 39 Vector phin, datan, datas; 40 TVector<double> phis; 40 41 map.GetThetaSlice(map.NbThetaSlices()-ith-1,theta,phis,datas); 41 42 map.GetThetaSlice(ith,theta,phin,datan); -
trunk/SophyaLib/Samba/anagen.h
r514 r532 7 7 #include "sphericalmap.h" 8 8 9 void map2almgen(int nsmax,int nlmax,int nmmax,const SphericalMap & map,9 void map2almgen(int nsmax,int nlmax,int nmmax,const SphericalMap<double>& map, 10 10 vector< vector< complex<double> > >& alm, double cos_theta_cut); 11 11 -
trunk/SophyaLib/Samba/syngen.cc
r514 r532 11 11 void alm2mapgen(const int nsmax,const int nlmax,const int nmmax, 12 12 const vector< vector< complex<double> > >&alm, 13 SphericalMap & map,13 SphericalMap<double>& map, 14 14 vector< complex<long double> > b_north, 15 15 vector< complex<long double> > b_south, … … 42 42 int nph; 43 43 double phi0; 44 float theta,thetas; 45 Vector phin, datan,phis,datas; 44 double theta,thetas; 45 Vector phin, datan,datas; 46 TVector<double> phis; 46 47 map.GetThetaSlice(map.NbThetaSlices()-ith-1,thetas,phis,datas); 47 48 map.GetThetaSlice(ith,theta,phin,datan); -
trunk/SophyaLib/Samba/syngen.h
r514 r532 9 9 void alm2mapgen(const int nsmax,const int nlmax,const int nmmax, 10 10 const vector< vector< complex<double> > >&alm, 11 SphericalMap & map,11 SphericalMap<double>& map, 12 12 vector< complex<long double> > b_north, 13 13 vector< complex<long double> > b_south,
Note:
See TracChangeset
for help on using the changeset viewer.