Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:20:45

0001 #ifndef __EVENT_IO_H__
0002 #define __EVENT_IO_H__
0003 
0004 #ifndef LVL2_WINNT
0005 #include "ioselect.h"
0006 #else
0007 #define STREAMBUF_NEW_IOSTREAM
0008 #endif
0009 
0010 #if defined(LVL2_WINNT) || defined(STREAMBUF_NEW_IOSTREAM)
0011 #include <iostream>
0012 #include <streambuf>
0013 #include <iomanip>
0014 
0015 #ifndef __CINT__
0016 
0017 #define COUT std::cout
0018 #define OSTREAM std::ostream
0019 #define ISTREAM std::istream
0020 #define SETW std::setw
0021 #define SETFILL std::setfill
0022 #define ENDL std::endl
0023 #define STREAMBUF std::streambuf
0024 
0025 #endif
0026 
0027 #include <stdio.h>
0028 
0029 #else     // not  LVL2_WINNT
0030 
0031 #include <iostream.h>
0032 #include <iomanip.h>
0033 
0034 #ifndef __CINT__
0035 
0036 #define COUT cout
0037 #define OSTREAM ostream
0038 #define ISTREAM istream
0039 #define SETW setw
0040 #define SETFILL setfill
0041 #define ENDL endl
0042 #define STREAMBUF streambuf
0043 
0044 #endif  
0045 
0046 #include <stdio.h>
0047 
0048 #endif
0049 
0050 
0051 #endif