- Timestamp:
- 04/06/13 13:01:45 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/fits.h
r15085 r15267 26 26 #ifdef __CINT__ 27 27 #define off_t size_t 28 #else 28 #endif 29 30 #if !defined(__MARS__) && !defined(__CINT__) 29 31 #include <unordered_map> 30 32 #endif … … 46 48 #endif 47 49 48 #if def HAVE_ZLIB50 #if defined(HAVE_ZLIB) || defined(__CINT__) 49 51 #include "izstream.h" 50 52 #else … … 425 427 Addresses fAddresses; 426 428 427 #if def __MARS__429 #if defined(__MARS__) || defined(__CINT__) 428 430 typedef map<string, void*> Pointers; 429 431 #else … … 638 640 } 639 641 642 #if !defined(__MARS__) && !defined(__CINT__) 640 643 bool GetRow(size_t row, bool check=true) 644 #else 645 bool GetRowNum(size_t row, bool check=true) 646 #endif 641 647 { 642 648 if (check && row>=fTable.num_rows) … … 657 663 658 664 // Let the compiler do some optimization by 659 // knowing th ewe only have 1, 2, 4 and 8665 // knowing that we only have 1, 2, 4 and 8 660 666 switch (c.size) 661 667 { … … 672 678 bool GetNextRow(bool check=true) 673 679 { 680 #if !defined(__MARS__) && !defined(__CINT__) 674 681 return GetRow(fRow+1, check); 682 #else 683 return GetRowNum(fRow+1, check); 684 #endif 675 685 } 676 686
Note:
See TracChangeset
for help on using the changeset viewer.