Skip to content
Snippets Groups Projects

Kernel/PartProp: modify LHCb::ParticleID to solve the problems introduced by !1187

Merged Vanya Belyaev requested to merge vanya-particleid-v1 into master

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:

This will have to be backported to all those branches.

Edited by Marco Cattaneo

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • @ibelyaev There is something wrong with this MR, it is empty (no changes)

  • Vanya Belyaev added 1 commit

    added 1 commit

    Compare with previous version

  • Author Developer

    @cattanem sorry.. :-( It should be ok now.

  • 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...

  • Author Developer

    @cattanem

    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?

  • Marco Cattaneo changed title from Kernel/PartProp: modify LHCb::ParticleID to solve the problmes to Kernel/PartProp: modify LHCb::ParticleID to solve the problems introduced by !1189

    changed title from Kernel/PartProp: modify LHCb::ParticleID to solve the problmes to Kernel/PartProp: modify LHCb::ParticleID to solve the problems introduced by !1189

  • Marco Cattaneo changed the description

    changed the description

  • Marco Cattaneo marked as a Work In Progress

    marked as a Work In Progress

  • @ibelyaev

    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 Cattaneo
  • @ibelyaev thanks! Just to make certain from your comment, this passes the scripts/check_ParticleID test? The timing issue was my original concern, but if you think this doesn't really matter, then fine.

  • I 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 Jones
  • Just 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.

  • Author Developer

    @cattaneo And how can I suppreess this difference ?

    - [NON-XML-CHAR-0x1B][?1034h# WARNING: Using default tag dddb-20171030-2 for partition DDDB
                    Legend:
                    -) reference file
                    +) standard output of the test
  • 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
  • Vanya Belyaev added 1 commit

    added 1 commit

    Compare with previous version

  • Author Developer

    @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 why partprop0 test fails.

  • Vanya Belyaev added 1 commit

    added 1 commit

    Compare with previous version

  • How does it fail? I have seen sometimes a failure where just two lines of the output are interchanged.

  • Author Developer
     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
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
Please register or sign in to reply
Loading