Changeset 2173 for trunk/MagicSoft/include-Classes
- Timestamp:
- 06/13/03 16:42:37 (22 years ago)
- Location:
- trunk/MagicSoft/include-Classes/MMcFormat
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/include-Classes/MMcFormat/MMcConfigRunHeader.cc
r1632 r2173 37 37 #include "MMcConfigRunHeader.h" 38 38 39 #include <fstream .h>40 #include <iomanip .h>39 #include <fstream> 40 #include <iomanip> 41 41 42 42 #include <TArrayF.h> … … 46 46 47 47 ClassImp(MMcConfigRunHeader); 48 49 using namespace std; 48 50 49 51 // -------------------------------------------------------------------------- -
trunk/MagicSoft/include-Classes/MMcFormat/MMcCorsikaRunHeader.cc
r1717 r2173 36 36 37 37 ClassImp(MMcCorsikaRunHeader); 38 39 using namespace std; 38 40 39 41 // -------------------------------------------------------------------------- -
trunk/MagicSoft/include-Classes/MMcFormat/MMcEvt.cxx
r1983 r2173 23 23 ClassImp(MMcEvt); 24 24 25 using namespace std; 25 26 26 27 -
trunk/MagicSoft/include-Classes/MMcFormat/MMcFadcHeader.cxx
r1032 r2173 1 1 #include "MMcFadcHeader.hxx" 2 2 3 #include <iostream .h>3 #include <iostream> 4 4 5 5 //========== … … 15 15 ClassImp(MMcFadcHeader); 16 16 17 using namespace std; 17 18 18 19 -
trunk/MagicSoft/include-Classes/MMcFormat/MMcRunHeader.cxx
r1983 r2173 69 69 #include "MMcRunHeader.hxx" 70 70 71 #include <fstream .h>72 #include <iomanip .h>71 #include <fstream> 72 #include <iomanip> 73 73 74 74 #include "MLog.h" 75 75 76 76 ClassImp(MMcRunHeader); 77 78 using namespace std; 77 79 78 80 // -------------------------------------------------------------------------- -
trunk/MagicSoft/include-Classes/MMcFormat/MMcTrig.cxx
r1313 r2173 1 1 #include "MMcTrig.hxx" 2 2 3 #include <iostream .h>3 #include <iostream> 4 4 5 5 … … 24 24 ClassImp(MMcTrig); 25 25 26 using namespace std; 26 27 27 28 … … 123 124 // 124 125 125 Byte_t ret=0; 126 Byte_t reminder; 127 Int_t body; 126 const Int_t body=npix/8; 127 const Byte_t reminder= 1>>(npix%8); 128 128 129 body=npix/8; 130 reminder=(Byte_t)(pow(2,npix%8)); 131 132 ret=reminder&fPixelsFirst[body][nfirstlevel]; 133 return(ret); 134 129 return reminder&fPixelsFirst[body][nfirstlevel]; 135 130 } -
trunk/MagicSoft/include-Classes/MMcFormat/MMcTrigHeader.cxx
r1314 r2173 1 1 #include "MMcTrigHeader.hxx" 2 2 3 #include <iostream .h>3 #include <iostream> 4 4 5 5 … … 28 28 ClassImp(MMcTrigHeader); 29 29 30 using namespace std; 30 31 31 32
Note:
See TracChangeset
for help on using the changeset viewer.