Print

Print


Commit in lcio on MAIN
sio/src/SIO_functions.cc+3-11.8 -> 1.9
       /SIO_record.cc+2-11.4 -> 1.5
       /SIO_stream.cc+3-11.6 -> 1.7
src/cpp/src/EXAMPLE/anajob.cc+21.15 -> 1.16
                   /dumpevent.cc+11.9 -> 1.10
                   /lsh.cc+2-11.1 -> 1.2
src/cpp/src/IMPL/MCParticleImpl.cc+11.28 -> 1.29
src/cpp/src/SIO/SIOReader.cc+21.50 -> 1.51
               /SIOStrVecHandler.cc+11.5 -> 1.6
               /SIOWriter.cc+21.35 -> 1.36
src/cpp/src/UTIL/BitField64.cc+31.3 -> 1.4
                /LCTime.cc+11.5 -> 1.6
+23-4
12 modified files
patched to make gcc 4.3 compliant

lcio/sio/src
SIO_functions.cc 1.8 -> 1.9
diff -u -r1.8 -r1.9
--- SIO_functions.cc	2 Feb 2007 08:59:06 -0000	1.8
+++ SIO_functions.cc	28 May 2008 14:02:09 -0000	1.9
@@ -1,5 +1,5 @@
 // ----------------------------------------------------------------------------
-// CVS $Id: SIO_functions.cc,v 1.8 2007/02/02 08:59:06 gaede Exp $
+// CVS $Id: SIO_functions.cc,v 1.9 2008/05/28 14:02:09 engels Exp $
 // ----------------------------------------------------------------------------
 // => Function package for SIO                            
 // ----------------------------------------------------------------------------
@@ -16,6 +16,8 @@
 #endif
 
 #include <iostream>
+#include <cstdlib>
+#include <cstring>
 
 #include "SIO_stream.h"
 #include "SIO_functions.h"

lcio/sio/src
SIO_record.cc 1.4 -> 1.5
diff -u -r1.4 -r1.5
--- SIO_record.cc	22 Sep 2005 12:27:19 -0000	1.4
+++ SIO_record.cc	28 May 2008 14:02:09 -0000	1.5
@@ -1,5 +1,5 @@
 // ----------------------------------------------------------------------------
-// CVS $Id: SIO_record.cc,v 1.4 2005/09/22 12:27:19 gaede Exp $
+// CVS $Id: SIO_record.cc,v 1.5 2008/05/28 14:02:09 engels Exp $
 // ----------------------------------------------------------------------------
 // => Controller for a single SIO record.                          
 // ----------------------------------------------------------------------------
@@ -15,6 +15,7 @@
 #endif
 
 #include <iostream>
+#include <cstdlib>
 
 #include "SIO_block.h"
 #include "SIO_blockManager.h"

lcio/sio/src
SIO_stream.cc 1.6 -> 1.7
diff -u -r1.6 -r1.7
--- SIO_stream.cc	27 May 2008 07:23:40 -0000	1.6
+++ SIO_stream.cc	28 May 2008 14:02:09 -0000	1.7
@@ -1,5 +1,5 @@
 // ----------------------------------------------------------------------------
-// CVS $Id: SIO_stream.cc,v 1.6 2008/05/27 07:23:40 gaede Exp $
+// CVS $Id: SIO_stream.cc,v 1.7 2008/05/28 14:02:09 engels Exp $
 // ----------------------------------------------------------------------------
 // => Controller for a single SIO stream.                          
 // ----------------------------------------------------------------------------
@@ -15,6 +15,8 @@
 #endif
 
 #include <iostream>
+#include <cstdlib>
+#include <cstring>
 
 #include "zlib.h"
 

lcio/src/cpp/src/EXAMPLE
anajob.cc 1.15 -> 1.16
diff -u -r1.15 -r1.16
--- anajob.cc	25 Jun 2004 12:53:19 -0000	1.15
+++ anajob.cc	28 May 2008 14:02:09 -0000	1.16
@@ -4,6 +4,8 @@
 #include "IMPL/LCTOOLS.h"
 #include "EVENT/LCRunHeader.h" 
 
+#include <cstdlib>
+
 //static const char* FILEN = "recjob.slcio" ; // default file name 
 static std::vector<std::string> FILEN ; 
 

lcio/src/cpp/src/EXAMPLE
dumpevent.cc 1.9 -> 1.10
diff -u -r1.9 -r1.10
--- dumpevent.cc	18 May 2006 14:35:29 -0000	1.9
+++ dumpevent.cc	28 May 2008 14:02:09 -0000	1.10
@@ -11,6 +11,7 @@
 
 #include "UTIL/CellIDDecoder.h"
 
+#include <cstdlib>
 
 using namespace std ;
 using namespace lcio ;

lcio/src/cpp/src/EXAMPLE
lsh.cc 1.1 -> 1.2
diff -u -r1.1 -r1.2
--- lsh.cc	19 Sep 2007 06:50:47 -0000	1.1
+++ lsh.cc	28 May 2008 14:02:09 -0000	1.2
@@ -6,12 +6,13 @@
  * (developed during DESY summerstudent programme 2007)
  * 
  * @author N. Chiapolini, DESY
- * @version $Id: lsh.cc,v 1.1 2007/09/19 06:50:47 gaede Exp $
+ * @version $Id: lsh.cc,v 1.2 2008/05/28 14:02:09 engels Exp $
  */
 
 #include <signal.h>
 #include <string>
 #include <cstring>
+#include <cstdlib>
 #include <sstream>
 #include <fstream>
 #include <iomanip>

lcio/src/cpp/src/IMPL
MCParticleImpl.cc 1.28 -> 1.29
diff -u -r1.28 -r1.29
--- MCParticleImpl.cc	29 Mar 2006 14:11:26 -0000	1.28
+++ MCParticleImpl.cc	28 May 2008 14:02:09 -0000	1.29
@@ -6,6 +6,7 @@
 #include <stdexcept>
 #include <vector>
 #include <math.h> 
+#include <algorithm>
 
 using namespace EVENT ;
 

lcio/src/cpp/src/SIO
SIOReader.cc 1.50 -> 1.51
diff -u -r1.50 -r1.51
--- SIOReader.cc	18 Oct 2007 09:45:16 -0000	1.50
+++ SIOReader.cc	28 May 2008 14:02:09 -0000	1.51
@@ -26,6 +26,8 @@
 #include <sstream>
 #include <vector>
 #include <algorithm>
+#include <cstring>
+#include <climits>
 //#include <limits>
 
 using namespace EVENT ;

lcio/src/cpp/src/SIO
SIOStrVecHandler.cc 1.5 -> 1.6
diff -u -r1.5 -r1.6
--- SIOStrVecHandler.cc	2 Feb 2007 09:07:56 -0000	1.5
+++ SIOStrVecHandler.cc	28 May 2008 14:02:09 -0000	1.6
@@ -8,6 +8,7 @@
 #include "SIO/LCSIO.h"
 
 #include <iostream>
+#include <cstring>
 
 using namespace std ;
 using namespace EVENT ;

lcio/src/cpp/src/SIO
SIOWriter.cc 1.35 -> 1.36
diff -u -r1.35 -r1.36
--- SIOWriter.cc	9 Nov 2007 20:21:09 -0000	1.35
+++ SIOWriter.cc	28 May 2008 14:02:09 -0000	1.36
@@ -24,6 +24,8 @@
 #include "IMPL/LCTOOLS.h"
 #include "IMPL/LCRelationImpl.h" 
 
+#include <cstring>
+
 using namespace EVENT ;
 using namespace IO ;
 using namespace IMPL ;

lcio/src/cpp/src/UTIL
BitField64.cc 1.3 -> 1.4
diff -u -r1.3 -r1.4
--- BitField64.cc	13 Nov 2006 17:21:19 -0000	1.3
+++ BitField64.cc	28 May 2008 14:02:09 -0000	1.4
@@ -1,5 +1,8 @@
 #include "UTIL/BitField64.h"
 
+#include <cmath>
+#include <algorithm>
+
 using namespace EVENT ;
 
 namespace UTIL{

lcio/src/cpp/src/UTIL
LCTime.cc 1.5 -> 1.6
diff -u -r1.5 -r1.6
--- LCTime.cc	22 Apr 2005 15:39:00 -0000	1.5
+++ LCTime.cc	28 May 2008 14:02:09 -0000	1.6
@@ -4,6 +4,7 @@
 
 #include <sstream>
 #include <iomanip>
+#include <cstdlib>
 
 // the canonical year zero
 #define YEAR0 1970 
CVSspam 0.2.8