Muon detector element returns wrong or invalid positions
The positions of many muon tiles seems to be wrong when running with DD4hep and also when comparing to DetDesc. For some tiles, positions with nan
or 0
are returned.
Details of a run with DD4hep where exceptions are caught can be seen in the attached log file: allen_muon_dd4hep.log. For example:
DumpMuonTable ERROR bad position for stripX, tile 46237185 S1(48,2)Q0,R2,48,1, gridX = 48, gridY = 2 bad numeric conversion: positive overflow
DumpMuonTable ERROR bad position for stripX, tile 46237217 S1(48,2)Q0,R2,49,1, gridX = 48, gridY = 2 bad numeric conversion: positive overflow
DumpMuonTable ERROR bad position for stripX, tile 46237249 S1(48,2)Q0,R2,50,1, gridX = 48, gridY = 2 bad numeric conversion: positive overflow
DumpMuonTable ERROR bad position for stripX, tile 46237281 S1(48,2)Q0,R2,51,1, gridX = 48, gridY = 2 bad numeric conversion: positive overflow
DumpMuonTable ERROR bad position for stripX, tile 46237313 S1(48,2)Q0,R2,52,1, gridX = 48, gridY = 2 bad numeric conversion: positive overflow
As a result of this, the HLT1 muon decoding cannot currently initialize with DD4hep. Even if that is fixed by catching exceptions the result cannot be trusted.
The lookup tables that are created for the HLT1 muon decoding contain the positions of all pads and strips. To allow easy comparison of these tables between DetDesc and DD4hep builds, I've added some code to the geometry converters that feed the HLT1 muon reconstruction; please see Allen!1028 (closed) (which is not to be merged). The respective branch can be used to recreate the json files to test fixes.
These tarballs (extract with Jxf
) contain the json files for the DetDesc and DD4hep builds:
To recreate these files, build the branch of Allen!1028 (closed) with DetDesc and DD4hep and run:
for DetDesc:
$> ./MooreOnline/run bash --norc
$> python ./Allen/Dumpers/BinaryDumpers/options/allen.py --real-data --tags="upgrade/master,upgrade/md_VP_SciFi_macromicrosurvey" --mep root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/247547-LHCb-MEP/bu_247547_BU_0000.mep -t 4 -s 8 --events-per-slice 1000 --sequence=${ALLEN_INSTALL_DIR}/constants/hlt1_pp_matching_veloSP.json --enable-run-changes -n 10000
for DD4hep:
$> ./MooreOnline/run bash --norc
$> python ./Allen/Dumpers/BinaryDumpers/options/allen.py --real-data --tags="master,master" --mep root://eoslhcb.cern.ch///eos/lhcb/wg/rta/samples/data/247547-LHCb-MEP/bu_247547_BU_0000.mep -t 4 -s 8 --events-per-slice 1000 --sequence=${ALLEN_INSTALL_DIR}/constants/hlt1_pp_matching_veloSP.json --enable-run-changes -n 10000
Please note that LHCb::MuonUpgrade::ComputeTilePosition
is doing something very similar and is used in the Moore CPU decoding algorithm: MuonRawInUpgradeToHits
. It probably suffers the same consequences. Exceptions are not thrown there, because nothing is done with the numbers that are obtained from DeMuon
. In DumpMuonTable
in Allen some calls to boost::numeric_cast<float>
are used, which throw the exceptions listed above.