Changeset 19829 for trunk/Mars/mcore
- Timestamp:
- 10/30/19 14:29:43 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/fits.h
r19655 r19829 26 26 #endif 27 27 28 #if defined(__MARS__) || defined(__CINT__) || defined(__CLING__) 28 // ROOT_VERSION is not defined in ROOTv5, but special treatment is 29 // needed depending on whether this is to create the disctionary or not 30 // For ROOTv6 now either __CLING__ (dirctionary) or __ROOTv6__ (compiler) 31 // should be defined. 32 #if defined(ROOT_VERSION_CODE) 33 #if ROOT_VERSION_CODE >= ROOT_VERSION(6,00,0) 34 #define __ROOTv6__ 1 35 #endif 36 #endif 37 38 #if defined(__MARS__) || defined(__CINT__) || defined (__CLING__) || defined (__ROOTv6__) 29 39 #include "MLog.h" 30 40 #include "MLogManip.h" … … 44 54 #endif 45 55 46 #if defined(HAVE_ZLIB) || defined(__CINT__) || defined(__CLING__) 56 #if defined(HAVE_ZLIB) || defined(__CINT__) || defined(__CLING__) || defined (__ROOTv6__) 47 57 #include "izstream.h" 48 58 #else
Note:
See TracChangeset
for help on using the changeset viewer.