Changeset 17141 for trunk/Mars/mcore
- Timestamp:
- 09/07/13 16:17:07 (11 years ago)
- Location:
- trunk/Mars/mcore
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/checksum.h
r17132 r17141 5 5 #include <arpa/inet.h> 6 6 #endif 7 8 #include <stdint.h> 7 9 8 10 namespace std -
trunk/Mars/mcore/fits.h
r17133 r17141 2 2 #define MARS_fits 3 3 4 #ifdef __CINT__5 #define int8_t Char_t6 #define int16_t Short_t7 #define int32_t Int_t8 #define int64_t Long64_t9 #define uint8_t UChar_t10 #define uint16_t UShort_t11 #define uint32_t UInt_t12 #define uint64_t ULong64_t13 #else14 4 #include <stdint.h> 15 #endif16 5 17 6 #include <map> … … 20 9 #include <sstream> 21 10 #include <algorithm> 22 23 #ifdef __EXCEPTIONS24 11 #include <stdexcept> 25 #endif26 12 27 13 #ifdef __CINT__ -
trunk/Mars/mcore/ofits.h
r17136 r17141 11 11 #include <vector> 12 12 #include <algorithm> 13 14 #ifdef __EXCEPTIONS15 13 #include <stdexcept> 14 15 #ifdef __CINT__ 16 #define off_t size_t 17 #endif 18 19 #ifndef __MARS__ 20 #define gLog cerr 21 #define ___err___ "" 22 #define ___warn___ "" 23 #define ___all___ "" 24 #else 25 #include "MLog.h" 26 #include "MLogManip.h" 27 #define ___err___ err 28 #define ___warn___ warn 29 #define ___all___ all 16 30 #endif 17 31 -
trunk/Mars/mcore/zfits.h
r17137 r17141 6 6 */ 7 7 8 #ifndef MARS_ZFITS 9 #define MARS_ZFITS 10 11 #include <stdexcept> 8 #ifndef MARS_zfits 9 #define MARS_zfits 12 10 13 11 #include "fits.h"
Note:
See TracChangeset
for help on using the changeset viewer.