Changeset 3024 in Sophya for trunk/SophyaPI/PIext
- Timestamp:
- Jul 17, 2006, 2:33:29 PM (19 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/piaversion.h
r2762 r3024 2 2 #define PIAPPVERSION_H_SEEN 3 3 4 #define PIAPP_VERSIONNUMBER 3.9854 #define PIAPP_VERSIONNUMBER 4.0 5 5 6 6 #endif -
trunk/SophyaPI/PIext/piinit.cc
r2930 r3024 29 29 #include "gaussfilt.h" 30 30 #include "nomspecrespadapter.h" 31 32 #include "piaversion.h" 31 33 32 34 #endif … … 128 130 serv->RegisterClass(new GaussianFilter, new NOMAdapter_SpectralResponse ); 129 131 serv->RegisterClass(new SpecRespVec, new NOMAdapter_SpectralResponse ); 130 #endif131 132 133 SophyaInitiator::RegisterModule("PIext/piapp", PIAPP_VERSIONNUMBER); 134 #endif 132 135 } 133 136 -
trunk/SophyaPI/PIext/pistdimgapp.cc
r2954 r3024 319 319 sprintf(buff, "Version: piapp=%g PI=%g PEIDA=%g \n", (double)PIAPP_VERSIONNUMBER, 320 320 (double)PI_VERSIONNUMBER, (float)PeidaVersion()); 321 mCons->AddStr(buff, PIVA_Blue ); 321 322 #else 322 sprintf(buff, "Version: piapp=%g PI=%g SOPHYA=%g \n", (double)PIAPP_VERSIONNUMBER, 323 (double)PI_VERSIONNUMBER, glst_piai->Version()); 323 string svers; 324 SophyaInitiator::GetVersion(svers); 325 mCons->AddStr(svers.c_str(), PIVA_Blue ); 324 326 #endif 325 mCons->AddStr(buff, PIVA_Blue );326 327 mCons->AddStr(" ..........................................\n", PIVA_Blue ); 327 328 // PrintPeidaVersion(); … … 2283 2284 PIWK_dialog, bsx*5+3*spx, bsy*4+spy*3, 200, 200); 2284 2285 infow_win->SetAutoDelChilds(true); 2285 infow_txt = new PIText(infow_win,"about_piapp_text", bsx*5+spx, bsy*3, spx, spy);2286 infow_txt = new PIText(infow_win,"about_piapp_text", true, false, bsx*5+spx, bsy*3, spx, spy); 2286 2287 infow_txt->SetMutiLineMode(true); 2287 2288 infow_txt->SetTextEditable(false); … … 2293 2294 infow_but->SetMsgParent((PIMsgHandler *)app); 2294 2295 infow_but->SetBinding(PIBK_elastic,PIBK_elastic, PIBK_elastic,PIBK_elastic); 2296 2297 string info = "piapp : Interactive analysis program\n"; 2295 2298 char buff[128]; 2296 2299 #ifdef SANS_EVOLPLANCK 2297 2300 sprintf(buff, "Version: piapp=%g PI=%g PEIDA=%g \n", (double)PIAPP_VERSIONNUMBER, 2298 2301 (double)PI_VERSIONNUMBER, (float)PeidaVersion()); 2302 info += buff; 2299 2303 #else 2300 { 2301 sprintf(buff, "Version: piapp=%g PI=%g SOPHYA=%g \n", (double)PIAPP_VERSIONNUMBER, 2302 (double)PI_VERSIONNUMBER, glst_piai->Version()); 2303 } 2304 string svers; 2305 SophyaInitiator::GetVersion(svers); 2306 info += svers; 2307 sprintf(buff, "\n Version: PI=%g -- PIext/piapp= %g \n", (double)PI_VERSIONNUMBER, 2308 (double)PIAPP_VERSIONNUMBER); 2309 info += buff; 2304 2310 #endif 2305 string info = "piapp : Interactive analysis program\n"; 2306 info += buff; 2307 info += "(C) LAL-IN2P3/CNRS 1996-2003\n"; 2308 info += "(C) SPP-DAPNIA/CEA 1996-2003\n"; 2311 info += "(C) LAL-IN2P3/CNRS 1996-2006\n"; 2312 info += "(C) SPP-DAPNIA/CEA 1996-2006\n"; 2309 2313 #ifndef SANS_EVOLPLANCK 2310 2314 info += "Check http://www.sophya.org for more information";
Note:
See TracChangeset
for help on using the changeset viewer.