Changeset 1321 in Sophya for trunk/SophyaPI/PIext/nomhistadapter.cc
- Timestamp:
- Nov 13, 2000, 4:32:34 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/nomhistadapter.cc
r1315 r1321 13 13 #ifndef SANS_EVOLPLANCK 14 14 #include "objfitter.h" 15 #include "fitsntuple.h" 16 #include "fitsxntuple.h" 15 17 #endif 16 18 … … 417 419 418 420 /* --Methode-- */ 421 void NOMAdapter_NTuple::ReadFits(string const & flnm) 422 { 423 #ifdef SANS_EVOLPLANCK 424 cerr << " NOMAdapter_NTuple::ReadFits() Non disponible !! " << endl; 425 #else 426 FitsInFile fis(flnm); 427 fis >> (*mNt); 428 #endif 429 } 430 431 /* --Methode-- */ 432 void NOMAdapter_NTuple::SaveFits(string const & flnm) 433 { 434 #ifdef SANS_EVOLPLANCK 435 cerr << " NOMAdapter_NTuple::SaveFits() Non disponible !! " << endl; 436 #else 437 FitsOutFile fos(flnm); 438 fos << (*mNt); 439 440 #endif 441 } 442 443 444 /* --Methode-- */ 419 445 void NOMAdapter_NTuple::SavePPF(POutPersist& pos, string const & nom) 420 446 { … … 482 508 483 509 /* --Methode-- */ 510 void NOMAdapter_XNTuple::ReadFits(string const & flnm) 511 { 512 #ifdef SANS_EVOLPLANCK 513 cerr << " NOMAdapter_XNTuple::ReadFits() Non disponible !! " << endl; 514 #else 515 FitsInFile fis(flnm); 516 fis >> (*mNt); 517 #endif 518 } 519 520 /* --Methode-- */ 521 void NOMAdapter_XNTuple::SaveFits(string const & flnm) 522 { 523 #ifdef SANS_EVOLPLANCK 524 cerr << " NOMAdapter_XNTuple::SaveFits() Non disponible !! " << endl; 525 #else 526 FitsOutFile fos(flnm); 527 fos << (*mNt); 528 529 #endif 530 } 531 532 /* --Methode-- */ 484 533 void NOMAdapter_XNTuple::SavePPF(POutPersist& pos, string const & nom) 485 534 {
Note:
See TracChangeset
for help on using the changeset viewer.