Problems with Jpp detx into km3pipe
Current Jpp version on CC-Lyon (13.0.0-49-g12a2c669) creates by default detector files (detx) with a version newer than v2 (https://wiki.km3net.de/index.php/Dataformats#Detector_Description_.28.detx.29) and a formatting that rises problems when loading them on km3pipe.
Initially with a lot of WARNING ++ km3pipe.hardware: Unexpected PMT values: ('0',)
and after solve this issue now with WARNING ++ km3pipe.hardware: Missing UTM information.
.
A sample code to reproduce this behavior on CC-Lyon is the following:
token="/pbs/throng/km3net/mycookies.txt"
tcal="A02181836"
pcal="A02181837"
rcal="A02182001"
detx="D_ORCA006_t.${tcal}.p.${pcal}.r.${rcal}.detx"
JDetectorDB -D D_ORCA006 -t "${tcal}" -p "${pcal}" -q "${rcal}" -r 1 -C "${token}" > ${detx}
echo "
import km3pipe as kp
det = kp.hardware.Detector('${detx}')
" > sample.py
python sample.py