Kernel/PartProp: modify LHCb::ParticleID to solve the problems introduced by !1187
LHCb::ParticleID
class is modified to solve the issue with LHCBPS-1796
- all quantities are calculated on flight. It definitely causes for CPU penalty, but actually all "expensive" functionality is used relatively rarely (e.g. decay-descriptors) and always in conjuction with really CPU expensive code - like filtering of decays according to decay descriptors. Therefore I think in reality this CPU penalty is not vizible and not so important.
- it is tested versus the reference code by Phil Ilten for all PIDs from Particle Property service + all "exceptional" PIDs, explicitly coded in
ParticleID
class. The results are identical.
@philten @erodrigu @jonrob @gcorti
As pointed out in LHCBPS-1796, the branches on which the update from !1189 (merged) was applied are:
-
sim09-patches (released in LHCb v39r1p1) - !1371 (merged) -
digi14-patches (released in LHCb v41r2) - !1370 (merged) -
reco14-patches (released in LHCb v35r1p3) - !1372 (merged) -
2016-patches (released in LHCb v40r6) - !1369 (merged) -
2017-patches (released in LHCb v42r8) - !1366 (merged) -
2018-patches (released in LHCb v44r2) - !1367 (merged) -
run2-patches (not yet released) - !1365 (merged) -
master (released in LHCb v50r1) - this MR
This will have to be backported to all those branches.
Merge request reports
Activity
@ibelyaev There is something wrong with this MR, it is empty (no changes)
Thanks @ibelyaev. Just a couple of remarks:
- We will need also updated Packers/Unpackers (in practice I think we can go back to the original version, but we will now need to support unpacking the version with several data members into this version, as we have been producing data with the new version (in particular Reco18 Brunel output, and soon S34)
- Would it be possible to convert the test file you provided into a QMTest, that would immediately spot any regressions in any future development?
As a minor aside, a pet gripe from me and @sponce is that it would be nice to separate formatting changes and actual code changes, it makes review a lot easier...
for the first item, I think, since the visible interface is the same, probably no change in (un)packers is needed at all (for @jonrob to confirm)
for the second item, I can do it, but there is one minor problem - one needs to ignore two lines in reference file (the date and the Git-DB-commit tag). Are there examples to ignore two lines from the output in qmtest?
For first point, what you say is correct if we had not already merged (and used in some cases) the version with the additional data members. So we have to revert the update to the packers, but taking care to retain support for unpacking the data that contains the additional data members
For the second point, you can explicit exclude some lines from the comparison with the
LineSkipper
construct, but these CondDB lines are already excluded in the default exclusions file (https://gitlab.cern.ch/lhcb/LHCb/blob/master/GaudiConf/python/GaudiConf/QMTest/LHCbExclusions.py
) by defining your validator as follows:<argument name="validator"><text> from GaudiConf.QMTest.LHCbExclusions import preprocessor as LHCbPreprocessor preprocessor = LHCbPreprocessor validateWithReference(preproc = preprocessor) </text></argument>
Edited by Marco CattaneoI don't think anything needs to be changed w.r.t. the packing. There, only the main PDG code int data member was persisted, and when the packed data is unpacked the constructor from int is called which would in the implementation with the hidden members properly initialise them. So the same code should work in both cases, interchangeably across the two implementations. @cattanem What changes are you referring to in the packing ?
Edited by Christopher Rob JonesJust to comment on timing, I tend to agree with @ibelyaev that is is not obvious what the impact on timing is with this. Yes, it makes the methods that need to compute things now on the fly a bit slower, but in return it makes the constructor of the class much simpler, just setting an int. As the constructor is generally always used, but the other methods much less so, its quite possible this actually makes things faster for most use cases. Proper profiling would really be the only way to tell how it impacts a particular use case.
I think the issue is the non-ascii character. If in the reference file you replace it with a
#
(so that the line begins with# WARNING
) it should be ignored by the framework. Or just remove it altogether from the reference file.Edited by Marco Cattaneo@cattanem Thank you! Removal of this line from reference file does the job! Now the test is ok, added and commit.
@philten Phil I see that
PartProp.partprop0
test fails. It is expected? It is a bit strange, since I've generated the reference file using lhcb-head nighlies with your version of the class. If your test is supposed to be valid, I am a bit confused - I am testing all known PIDs + all "exceptional" PIDs. and I see no difference between your code and modified code. It is not clear for me whypartprop0
test fails.output_diff - isValid True ? ^^^ + isValid False ? ^^^^ - isNucleus True ? ^^^ + isNucleus False ? ^^^^ - threeCharge 3 ? ^ + threeCharge 2 ? ^ - jSpin 1 ? ^ + jSpin 0 ? ^ - extra 100 ? ^^^ + extra 45 ? ^^ - A 2 ? ^ + A 0 ? ^ - Z 1 ? ^ + Z 0 ? ^ Legend: -) reference file +) standard output of the test environment