Changeset 1191 in Sophya for trunk/SigPredictor/makebolotimeline.cc
- Timestamp:
- Sep 19, 2000, 2:28:59 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SigPredictor/makebolotimeline.cc
r1148 r1191 3 3 #include <iomanip.h> 4 4 #include <new> 5 #ifdef __MWERKS__ 6 #include "macenvvariables.h" 7 #else 8 # define ERROR_LABEL -32768 9 #endif 5 6 # define ERROR_LABEL -32768 10 7 11 8 #include "makebolotimeline.h" … … 38 35 #endif 39 36 37 38 NormRJ=ptool->NormKelvinRayleighJeans(); 39 NormTCMB=ptool->NormKelvinCMB(); 40 40 saveReadMe(file); 41 41 42 42 char filecur[150]; 43 sprintf(filecur,"%s %s.dat", PATHResults,file);43 sprintf(filecur,"%s.dat",file); 44 44 45 45 pMystr= new ofstream(filecur,ios::out|ios::trunc); … … 57 57 } 58 58 59 sprintf(Name, "%s%s %s",PATHResults,file,".visu");59 sprintf(Name, "%s%s",file,".visu"); 60 60 #endif 61 61 } … … 139 139 { char filecur[150]; 140 140 // Fill Header file for ascii output 141 sprintf(filecur,"%s %s.ReadMe", PATHResults,File);141 sprintf(filecur,"%s.ReadMe",File); 142 142 cout<<filecur<<endl; 143 143 ofstream ReadMe(filecur,ios::out|ios::trunc); … … 145 145 ReadMe<<" Fichier de timeline pour:"<<endl; 146 146 ptool->print(ReadMe); 147 148 NormRJ=ptool->NormKelvinRayleighJeans(); 149 NormTCMB=ptool->NormKelvinCMB(); 147 150 148 151 149 ReadMe<< setprecision(3);
Note:
See TracChangeset
for help on using the changeset viewer.