Changeset 1481 in Sophya for trunk/SophyaPI/ProgPI


Ignore:
Timestamp:
Apr 30, 2001, 10:41:05 AM (24 years ago)
Author:
ansari
Message:

correction petit bug ds sopiamodule.cc - Reza 30/4/2001

Location:
trunk/SophyaPI/ProgPI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/ProgPI/Makefile

    r1445 r1481  
    1212else
    1313LIBF =  $(SLB)libPI.so $(SLB)libsophya.so $(SLB)libextsophya.so
    14 LIBS = -L$(SLB) -lPI -lsophya -lextsophya  -lm
     14LIBS = -L$(SLB) -lPI -lsophya -lextsophya  -lXm -lXp -lXt -lX11 -lm
    1515endif
    1616LIBSORA := $(LIBS)
  • trunk/SophyaPI/ProgPI/sopiamodule.cc

    r1267 r1481  
    9595void SophyaFFT(string& nom, string& nomout, string dopt)
    9696{
     97Timer tm("powerspec");
    9798NamedObjMgr omg;
    9899AnyDataObj* obj=omg.GetObj(nom);
     
    107108  return;
    108109  }
    109 
    110 TVector< complex<double> > * vout = new TVector< complex<double> > (1) ;
     110TVector< complex<double> > * vout = new TVector< complex<double> >  ;
    111111FFTPackServer ffts;
    112 cout << "SophyaFFT() - Executing FFT of vector size " << vin->NElts() << endl;
     112cout << "SophyaFFT() - Computing FFT of vector size " << vin->NElts() << endl;
    113113ffts.FFTForward(*vin, *vout);
    114 Timer tm;
    115 tm.Split(" FFT done ");
     114// cout << " SophyaFFT - FFT done " << endl;
     115 // tm.Split(" FFT done ");
    116116
    117117omg.AddObj(vout, nomout);
Note: See TracChangeset for help on using the changeset viewer.