Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in
  • athena athena
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Locked Files
  • Jira
    • Jira
  • Merge requests 165
    • Merge requests 165
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Code review
    • Repository
  • Activity
  • Graph
  • Jobs
  • Commits
Collapse sidebar
  • atlasatlas
  • athenaathena
  • Merge requests
  • !43841
The source project of this merge request has been removed.

TrackDeposiInCaloTool - Add thread-safety check & refurbishment

Merged Johannes Junggeburth requested to merge (removed):refurbish_TrackDepositInCaloTool into master May 25, 2021
  • Overview 12
  • Pipelines 0
  • Changes 4

Hi,

this MR is a thorough refurbishment of the TrackDepositInCaloTool:

  • All while loops have been replaced by ranged for loops.
  • Nested branching in the code in the manner of if(my_condition) has been replaced by if (!my_condition) {continue;} to improve readability of the code and to ease the branching
  • Data dependency on AllCell has been added as the m_caloCellContainer variable was used in few places but actually never set.
  • Usage of smart pointers to get rid of delete statements
  • Added THREAD_SAFETY_CHECKER

Adding: @christos, @jburr

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: refurbish_TrackDepositInCaloTool