Changeset 3246 in Sophya
- Timestamp:
- May 15, 2007, 10:39:59 AM (18 years ago)
- Location:
- trunk/Cosmo/SimLSS
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Cosmo/SimLSS/cmvconcherr.cc
r3193 r3246 57 57 cout<<"nameh = "<<nameh 58 58 <<" , number of file to be read = "<<ppfname.size() 59 <<" , write_type="<<Write_Type<< endl;59 <<" , write_type="<<Write_Type<<" , cov="<<Do_Cov<<endl; 60 60 61 61 // --- Quel type d'objet ? -
trunk/Cosmo/SimLSS/cmvdefsurv.cc
r3199 r3246 366 366 cout<<"Observation flux density limit: "<<slim<<" Jy (in 1 lobe)"<<endl; 367 367 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; 370 370 371 371 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; 373 375 374 376 double smass = mhiref/ssig*slim; -
trunk/Cosmo/SimLSS/cmvobserv3d.cc
r3200 r3246 166 166 <<", npt="<<npt<<endl; 167 167 cout<<"R="<<R<<" Rg="<<Rg<<" Mpc, sigmaR="<<sigmaR<<endl; 168 cout<<"nstar= "<<nstar<<" mstar="<<mstar<<" alp a="<<alpha<<endl;168 cout<<"nstar= "<<nstar<<" mstar="<<mstar<<" alpha="<<alpha<<endl; 169 169 cout<<"schmin="<<schmin<<" ("<<lschmin 170 170 <<"), schmax="<<schmax<<" ("<<lschmax<<") Msol" -
trunk/Cosmo/SimLSS/cmvtstsch.cc
r3196 r3246 39 39 double mstar = pow(10.,9.8/(h75*h75)); // MSol 40 40 double alpha = -1.37; 41 cout<<" nstar= "<<nstar<<" mstar="<<mstar<<" alpha="<<alpha<<endl;41 cout<<"h75= "<<h75<<" nstar= "<<nstar<<" mstar="<<mstar<<" alpha="<<alpha<<endl; 42 42 43 43 double xmin=1e6, xmax=1e12; … … 84 84 85 85 Schechter sch(nstar,mstar,alpha); 86 cout<<"sch(mstar) = "<<sch(mstar)<<" /Mpc^3/Msol"<<endl;87 86 88 87 InitTim(); … … 90 89 //-------dn/dm 91 90 cout<<endl; 91 cout<<"sch(mstar) = "<<sch(mstar)<<" /Mpc^3/Msol"<<endl; 92 92 sch.SetOutValue(0); 93 93 for(int i=0;i<=5;i++) { -
trunk/Cosmo/SimLSS/cmvtvarspec.cc
r3115 r3246 13 13 #include "pkspectrum.h" 14 14 15 // cmvtvarspec [zref,R]16 15 void usage(void); 17 16 void usage(void) … … 117 116 118 117 //---- 119 cout<<endl<<"Filtrage 1 (integrale du sp pectre)"<<endl;118 cout<<endl<<"Filtrage 1 (integrale du spectre)"<<endl; 120 119 VarianceSpectrum varpk_int(pkz,2); 121 120 double kfind_int = varpk_int.FindMaximum(Rg,kmin,kmax,eps); -
trunk/Cosmo/SimLSS/pkspectrum.cc
r3196 r3246 71 71 nobaryon_ = false; 72 72 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; 74 74 75 75 double H0 = 100. * h_, h2 = h_*h_;
Note:
See TracChangeset
for help on using the changeset viewer.