Changeset 514 in Sophya for trunk/SophyaLib/Samba
- Timestamp:
- Oct 25, 1999, 6:43:04 PM (26 years ago)
- Location:
- trunk/SophyaLib/Samba
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/Samba/anagen.cc
r508 r514 37 37 double phi0; 38 38 float theta; 39 OVector phin, datan, phis, datas;39 Vector phin, datan, phis, datas; 40 40 map.GetThetaSlice(map.NbThetaSlices()-ith-1,theta,phis,datas); 41 41 map.GetThetaSlice(ith,theta,phin,datan); … … 77 77 78 78 79 void comp_phas2gen(int nsmax,int nlmax,int nmmax, OVector datain,79 void comp_phas2gen(int nsmax,int nlmax,int nmmax, Vector datain, 80 80 int nph,vector< complex<double> >& dataout,double phi0){ 81 81 /*======================================================================= … … 92 92 //FFTVector outf=FFTServer::solve(inf,-1); 93 93 FFTServer fft; 94 OVector outf;94 Vector outf; 95 95 //cout<<"in :"<<datain<<endl; 96 96 fft.fftb(datain,outf); -
trunk/SophyaLib/Samba/anagen.h
r508 r514 4 4 #include <complex> 5 5 #include <vector> 6 #include " cvector.h"6 #include "tvector.h" 7 7 #include "sphericalmap.h" 8 8 … … 10 10 vector< vector< complex<double> > >& alm, double cos_theta_cut); 11 11 12 void comp_phas2gen(int nsmax,int nlmax,int nmmax, OVector datain,12 void comp_phas2gen(int nsmax,int nlmax,int nmmax, Vector datain, 13 13 int nph,vector< complex<double> >& dataout,double phi0); 14 14 -
trunk/SophyaLib/Samba/syngen.cc
r508 r514 43 43 double phi0; 44 44 float theta,thetas; 45 OVector phin, datan,phis,datas;45 Vector phin, datan,phis,datas; 46 46 map.GetThetaSlice(map.NbThetaSlices()-ith-1,thetas,phis,datas); 47 47 map.GetThetaSlice(ith,theta,phin,datan); … … 104 104 void syn_phasgen(const int nsmax,const int nlmax,const int nmmax, 105 105 const vector< complex<long double> >& datain, 106 int nph, OVector& dataout, double phi0,106 int nph, Vector& dataout, double phi0, 107 107 vector< complex<long double> >& bw){ 108 108 -
trunk/SophyaLib/Samba/syngen.h
r508 r514 4 4 #include <complex> 5 5 #include <vector> 6 #include " cvector.h"6 #include "tvector.h" 7 7 #include "sphericalmap.h" 8 8 … … 18 18 void syn_phasgen(const int nsmax,const int nlmax,const int nmmax, 19 19 const vector< complex<long double> >& datain, 20 int nph, OVector& dataout, double phi0,20 int nph, Vector& dataout, double phi0, 21 21 vector< complex<long double> >& bw); 22 22
Note:
See TracChangeset
for help on using the changeset viewer.