diff --git a/Event/PyDumper/python/Dumpers.py b/Event/PyDumper/python/Dumpers.py index 09a013e89c729828239e84f24e5ee0913e872b45..f0311b87936523d2ed43d63d515e926234f6a226 100644 --- a/Event/PyDumper/python/Dumpers.py +++ b/Event/PyDumper/python/Dumpers.py @@ -1826,6 +1826,7 @@ def dump_MissingET (m, f): r.exReg(i), r.eyReg(i), r.etSumReg(i)), + f.write ('\n') return @@ -1972,14 +1973,14 @@ def dump_MissingETSigObject (m, f): @nolist def dump_MissingEtCalo (m, f): dump_MissingET (m, f) - print >> f, '\n ', m.calibType(), + print >> f, ' ', m.calibType() for i in range(7): - print >> f, '\n %d %d %f %f %f' % \ + print >> f, ' %d %d %f %f %f' % \ (i, m.ncellCalo(i), m.exCalo(i), m.eyCalo(i), - m.etSumCalo(i)), + m.etSumCalo(i)) return @@ -1987,11 +1988,11 @@ def dump_MissingEtCalo (m, f): def dump_MissingEtTruth (m, f): dump_MissingET (m, f) for i in range(6): - print >> f, '\n %d %f %f %f' % \ + print >> f, ' %d %f %f %f' % \ (i, m.exTruth(i), m.eyTruth(i), - m.etSumTruth(i)), + m.etSumTruth(i)) return diff --git a/Reconstruction/RecAthenaPool/CMakeLists.txt b/Reconstruction/RecAthenaPool/CMakeLists.txt index adcf26f22106b1220f74514587efee38e2c6eb9f..7054e24626a4e863453059f3473a06b054334d3c 100644 --- a/Reconstruction/RecAthenaPool/CMakeLists.txt +++ b/Reconstruction/RecAthenaPool/CMakeLists.txt @@ -37,7 +37,7 @@ find_package( AthenaPoolUtilitiesTest ) if( ATHENAPOOLUTILITIESTEST_FOUND ) set( RECATHENAPOOL_REFERENCE_TAG - RecAthenaPoolReference-01-00-00 ) + RecAthenaPoolReference-02-00-00 ) run_tpcnv_test( RecTPCnv_15.0.0 AOD-15.0.0-full REQUIRED_LIBRARIES JetEventAthenaPoolPoolCnv REFERENCE_TAG ${RECATHENAPOOL_REFERENCE_TAG} )