Changeset 3246 in Sophya for trunk/Cosmo/SimLSS


Ignore:
Timestamp:
May 15, 2007, 10:39:59 AM (18 years ago)
Author:
cmv
Message:

modifs ... cmv 15/05/2007

Location:
trunk/Cosmo/SimLSS
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/Cosmo/SimLSS/cmvconcherr.cc

    r3193 r3246  
    5757 cout<<"nameh = "<<nameh
    5858     <<" , number of file to be read = "<<ppfname.size()
    59      <<" , write_type="<<Write_Type<<endl;
     59     <<" , write_type="<<Write_Type<<" , cov="<<Do_Cov<<endl;
    6060
    6161 // --- Quel type d'objet ?
  • trunk/Cosmo/SimLSS/cmvdefsurv.cc

    r3199 r3246  
    366366 cout<<"Observation flux density limit: "<<slim<<" Jy (in 1 lobe)"<<endl;
    367367
    368  slim = slim * sqrt(nlobes);
    369  cout<<"Observation flux density limit: "<<slim<<" Jy (in "<<nlobes<<" lobes)"<<endl;
     368 double slim_nl = slim * sqrt(nlobes);
     369 cout<<"Observation flux density limit: "<<slim_nl<<" Jy (in "<<nlobes<<" lobes)"<<endl;
    370370
    371371 double SsN = ssig/slim;
    372  cout<<"\nSignal to noise ratio = "<<SsN<<endl;
     372 cout<<"\nSignal to noise ratio = "<<SsN<<" (1 lobe)"<<endl;
     373 double SsN_nl = ssig/slim_nl;
     374 cout<<"\nSignal to noise ratio = "<<SsN_nl<<" ("<<nlobes<<" lobes)"<<endl;
    373375
    374376 double smass = mhiref/ssig*slim;
  • trunk/Cosmo/SimLSS/cmvobserv3d.cc

    r3200 r3246  
    166166     <<", npt="<<npt<<endl;
    167167 cout<<"R="<<R<<" Rg="<<Rg<<" Mpc, sigmaR="<<sigmaR<<endl;
    168  cout<<"nstar= "<<nstar<<"  mstar="<<mstar<<"  alpa="<<alpha<<endl;
     168 cout<<"nstar= "<<nstar<<"  mstar="<<mstar<<"  alpha="<<alpha<<endl;
    169169 cout<<"schmin="<<schmin<<" ("<<lschmin
    170170     <<"), schmax="<<schmax<<" ("<<lschmax<<") Msol"
  • trunk/Cosmo/SimLSS/cmvtstsch.cc

    r3196 r3246  
    3939 double mstar = pow(10.,9.8/(h75*h75));  // MSol
    4040 double alpha = -1.37;
    41  cout<<"nstar= "<<nstar<<"  mstar="<<mstar<<"  alpha="<<alpha<<endl;
     41 cout<<"h75= "<<h75<<" nstar= "<<nstar<<"  mstar="<<mstar<<"  alpha="<<alpha<<endl;
    4242
    4343 double xmin=1e6, xmax=1e12;
     
    8484
    8585 Schechter sch(nstar,mstar,alpha);
    86  cout<<"sch(mstar) = "<<sch(mstar)<<" /Mpc^3/Msol"<<endl;
    8786
    8887 InitTim();
     
    9089 //-------dn/dm
    9190 cout<<endl;
     91 cout<<"sch(mstar) = "<<sch(mstar)<<" /Mpc^3/Msol"<<endl;
    9292 sch.SetOutValue(0);
    9393 for(int i=0;i<=5;i++) {
  • trunk/Cosmo/SimLSS/cmvtvarspec.cc

    r3115 r3246  
    1313#include "pkspectrum.h"
    1414
    15 // cmvtvarspec [zref,R]
    1615void usage(void);
    1716void usage(void)
     
    117116 
    118117 //----
    119   cout<<endl<<"Filtrage 1 (integrale du sppectre)"<<endl;
     118  cout<<endl<<"Filtrage 1 (integrale du spectre)"<<endl;
    120119 VarianceSpectrum varpk_int(pkz,2);
    121120 double kfind_int = varpk_int.FindMaximum(Rg,kmin,kmax,eps);
  • trunk/Cosmo/SimLSS/pkspectrum.cc

    r3196 r3246  
    7171  nobaryon_ = false;
    7272  O0_ = Oc_ + Ob_;
    73     if(lp) cout<<"Omatter="<<O0_<<" Ocdm="<<Oc_<<" Ob="<<Ob_<<endl;
     73  if(lp) cout<<"h100="<<h_<<" Omatter="<<O0_<<" Ocdm="<<Oc_<<" Ob="<<Ob_<<endl;
    7474
    7575  double H0 = 100. * h_, h2 = h_*h_;
Note: See TracChangeset for help on using the changeset viewer.