Changeset 514 in Sophya for trunk/SophyaLib/Samba


Ignore:
Timestamp:
Oct 25, 1999, 6:43:04 PM (26 years ago)
Author:
ansari
Message:

elimination des OVector/OMatrix au profit des TVector/TMatrix cmv 25/10/99

Location:
trunk/SophyaLib/Samba
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaLib/Samba/anagen.cc

    r508 r514  
    3737    double phi0;
    3838    float theta;
    39     OVector phin, datan, phis, datas;
     39    Vector phin, datan, phis, datas;
    4040    map.GetThetaSlice(map.NbThetaSlices()-ith-1,theta,phis,datas);
    4141    map.GetThetaSlice(ith,theta,phin,datan);
     
    7777
    7878
    79 void comp_phas2gen(int nsmax,int nlmax,int nmmax, OVector datain,
     79void comp_phas2gen(int nsmax,int nlmax,int nmmax, Vector datain,
    8080                int nph,vector< complex<double> >& dataout,double phi0){
    8181  /*=======================================================================
     
    9292  //FFTVector outf=FFTServer::solve(inf,-1);
    9393  FFTServer fft;
    94   OVector outf;
     94  Vector outf;
    9595  //cout<<"in :"<<datain<<endl;
    9696  fft.fftb(datain,outf);
  • trunk/SophyaLib/Samba/anagen.h

    r508 r514  
    44#include <complex>
    55#include <vector>
    6 #include "cvector.h"
     6#include "tvector.h"
    77#include "sphericalmap.h"
    88
     
    1010             vector< vector< complex<double> > >& alm, double cos_theta_cut);
    1111
    12 void comp_phas2gen(int nsmax,int nlmax,int nmmax, OVector datain,
     12void comp_phas2gen(int nsmax,int nlmax,int nmmax, Vector datain,
    1313                int nph,vector< complex<double> >& dataout,double phi0);
    1414
  • trunk/SophyaLib/Samba/syngen.cc

    r508 r514  
    4343    double phi0;
    4444    float theta,thetas;
    45     OVector phin, datan,phis,datas;
     45    Vector phin, datan,phis,datas;
    4646    map.GetThetaSlice(map.NbThetaSlices()-ith-1,thetas,phis,datas);
    4747    map.GetThetaSlice(ith,theta,phin,datan);
     
    104104void syn_phasgen(const int nsmax,const int nlmax,const int nmmax,
    105105              const vector< complex<long double> >& datain,
    106               int nph, OVector& dataout, double phi0,
     106              int nph, Vector& dataout, double phi0,
    107107              vector< complex<long double> >& bw){
    108108
  • trunk/SophyaLib/Samba/syngen.h

    r508 r514  
    44#include <complex>
    55#include <vector>
    6 #include "cvector.h"
     6#include "tvector.h"
    77#include "sphericalmap.h"
    88
     
    1818void syn_phasgen(const int nsmax,const int nlmax,const int nmmax,
    1919              const vector< complex<long double> >& datain,
    20               int nph, OVector& dataout, double phi0,
     20              int nph, Vector& dataout, double phi0,
    2121              vector< complex<long double> >& bw);
    2222
Note: See TracChangeset for help on using the changeset viewer.