Skip to content
Snippets Groups Projects

Adding ALLPV{X,Y,Z} functors

Closed Lukas Calefice requested to merge LC_ALLPVXYZ into master
4 unresolved threads

This MR is adding three separate functors F.ALLPVX(pvs), F.ALLPVY(pvs), F.ALLPVZ(pvs) for the vertex positions of all PVs in the event.

This branch is based on !2745 (closed) and requires Analysis!866 (merged) (as it adds support for tupling std::vector<SIMDWrapper::scalar::float_v> types).

Examples for the functors in DaVinci are added here: DaVinci!659 (closed)

FYI: @amathad

Edited by Abhijit Mathad

Merge request reports

Merge request pipeline #3900420 passed

Merge request pipeline passed for f5224d20

Approval is optional

Closed by Andre GuntherAndre Gunther 2 years ago (Apr 30, 2022 10:10am UTC)

Merge details

  • The changes were not merged into master.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
  • mentioned in issue Moore#390 (closed)

  • Lukas Calefice added 1 commit

    added 1 commit

    • 12c699db - removing duplicates from Composite.h and hardcoding of vertices data type

    Compare with previous version

  • Lukas Calefice added 1 commit

    added 1 commit

    Compare with previous version

  • Lukas Calefice resolved all threads

    resolved all threads

  • Lukas Calefice added 1 commit

    added 1 commit

    • 445e143b - removing data type hardcoding from other components

    Compare with previous version

  • Lukas Calefice added 1 commit

    added 1 commit

    Compare with previous version

  • Lukas Calefice mentioned in merge request !2745 (closed)

    mentioned in merge request !2745 (closed)

  • Abhijit Mathad
  • Abhijit Mathad
  • Abhijit Mathad
  • Edited by Software for LHCb
  • mentioned in issue Moore#397 (closed)

  • assigned to @lcalefic

  • mentioned in issue Moore#411 (closed)

  • mentioned in issue Moore#416 (closed)

    • Resolved by Lukas Calefice

      Thank you for this MR Lukas !

      I tried to use your updates to run Funtuple, and it seems that we need #include "Functors/PrimaryVertices.h" in Phys/FunctorCore/include/Functors/JIT_includes.h, otherwise FunTuple cannot find PrimaryVertices in Functors.

  • Lukas Calefice added 345 commits

    added 345 commits

    • bc7a9035...62c37b3d - 332 commits from branch master
    • 52eeabcd - adding functors for X,Y,Z positions of BPV
    • 4ba650c2 - Fixed formatting
    • b0a8a5fe - move BPV XYZ functors to PrimaryVertices.h and update naming
    • d5658431 - Fixed formatting
    • f83294c8 - adding functor for z position of all PVs
    • b47af08f - Fixed formatting
    • 6aa3bcf1 - adding x and y components for ALLPV functors
    • cffb9f49 - Fixed formatting
    • 4acc03de - removing duplicates from Composite.h and hardcoding of vertices data type
    • ca59a9fb - Fixed formatting
    • 71dc87c9 - removing data type hardcoding from other components
    • 2e5567a2 - Fixed formatting
    • a65a352c - adding PrimaryVertices.h to JIT_includes.h

    Compare with previous version

  • Lukas Calefice resolved all threads

    resolved all threads

  • 302 302 auto DeltaRhoToVertex( std::string vertex_location ) {
    303 303 return detail::DataDepWrapper<Function, detail::DeltaRhoToVertex, VContainer>{std::move( vertex_location )};
    304 304 }
    305
  • could you please update the description stating that it also adds the BPV{XYZ} functors? :sweat_smile:

  • 52 return ( endVertexPos( Sel::getBestPV( particle, vertices ) ) ).Y();
    53 }
    54 };
    55 /** BestPrimaryVertexZ */
    56 struct BestPrimaryVertexZ : public Function {
    57 /** This allows some error messages to be customised. It is not critical. */
    58 static constexpr auto name() { return "BestPrimaryVertexZ"; }
    59
    60 template <typename VContainer, typename Particle>
    61 auto operator()( VContainer const& vertices, Particle const& particle ) const {
    62 using Sel::Utils::endVertexPos;
    63 return ( endVertexPos( Sel::getBestPV( particle, vertices ) ) ).Z();
    64 }
    65 };
    66 /** AllPrimaryVerticesX */
    67 struct AllPrimaryVerticesX : public Function {
  • 25
    26 /** @namespace Functors::PrimaryVertices
    27 *
    28 * Functors that make sense for primary vertices.
    29 */
    30 namespace Functors::detail {
    31
    32 /** BestPrimaryVertexX */
    33 struct BestPrimaryVertexX : public Function {
    34 /** This allows some error messages to be customised. It is not critical. */
    35 static constexpr auto name() { return "BestPrimaryVertexX"; }
    36
    37 template <typename VContainer, typename Particle>
    38 auto operator()( VContainer const& vertices, Particle const& particle ) const {
    39 using Sel::Utils::endVertexPos;
    40 return ( endVertexPos( Sel::getBestPV( particle, vertices ) ) ).X();
    • Suggested change
      40 return ( endVertexPos( Sel::getBestPV( particle, vertices ) ) ).X();
      40 return ( endVertexPos( Sel::getBestPV( Sel::Utils::deref_if_ptr( particle) , vertices ) ) ).X();

      applies to all following

    • Please register or sign in to reply
  • Christoph Hasse mentioned in merge request !2683 (merged)

    mentioned in merge request !2683 (merged)

  • Andre Gunther mentioned in merge request !2867 (closed)

    mentioned in merge request !2867 (closed)

  • Andre Gunther added 44 commits

    added 44 commits

    • a65a352c...e6ff4576 - 31 commits from branch master
    • 534a36a3 - adding functors for X,Y,Z positions of BPV
    • 8e94c116 - Fixed formatting
    • 60b4742b - move BPV XYZ functors to PrimaryVertices.h and update naming
    • 3a5b77d2 - Fixed formatting
    • 2f0d6aab - adding functor for z position of all PVs
    • 0b1e5d16 - Fixed formatting
    • 54bf3ff9 - adding x and y components for ALLPV functors
    • bccd9494 - Fixed formatting
    • 20ccfd21 - removing duplicates from Composite.h and hardcoding of vertices data type
    • 2c6ab2f8 - Fixed formatting
    • 350fd4b2 - removing data type hardcoding from other components
    • 674239d1 - Fixed formatting
    • f5224d20 - adding PrimaryVertices.h to JIT_includes.h

    Compare with previous version

  • closing because this MR will be superseded by !2683 (merged)

  • closed

  • Please register or sign in to reply
    Loading