Print

Print


Commit in lcio/src/cpp/src/SIO on MAIN
SIOClusterHandler.cc+1-11.15 -> 1.16
bug fix (64 bit): read hit weights as float (was pointer)

lcio/src/cpp/src/SIO
SIOClusterHandler.cc 1.15 -> 1.16
diff -u -r1.15 -r1.16
--- SIOClusterHandler.cc	1 Jun 2005 13:17:17 -0000	1.15
+++ SIOClusterHandler.cc	15 Mar 2010 13:16:42 -0000	1.16
@@ -116,7 +116,7 @@
 
       for(int i=0;i<nHits;i++){
 	SIO_PNTR( stream , &(cluster->_hits[i] ) ) ;
-	SIO_PNTR( stream , &(cluster->_weights[i] ) ) ;
+	SIO_DATA( stream , &(cluster->_weights[i] ) , 1 ) ;
       }
       
     }
CVSspam 0.2.8