Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
athena
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Shaun Roe
athena
Commits
d00c1855
Commit
d00c1855
authored
5 years ago
by
Susumu Oda
Committed by
Vakhtang Tsulaia
5 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add atomic to mutable counters of TrackSelectionTool in InDetPhysValMonitoring
parent
31888005
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
InnerDetector/InDetValidation/InDetPhysValMonitoring/src/TrackSelectionTool.h
+3
-2
3 additions, 2 deletions
...alidation/InDetPhysValMonitoring/src/TrackSelectionTool.h
with
3 additions
and
2 deletions
InnerDetector/InDetValidation/InDetPhysValMonitoring/src/TrackSelectionTool.h
+
3
−
2
View file @
d00c1855
...
...
@@ -10,6 +10,7 @@
#include
"xAODTracking/TrackParticle.h"
#include
"AsgTools/AsgTool.h"
#include
<atomic>
class
TrackSelectionTool
:
public
virtual
::
IAsgSelectionTool
,
...
...
@@ -28,8 +29,8 @@ public:
private:
asg
::
AcceptInfo
m_accept
;
std
::
vector
<
std
::
pair
<
std
::
string
,
std
::
string
>
>
m_cuts
;
mutable
ULong64_t
m_numProcessed
;
// !< a counter of the number of tracks proccessed
mutable
ULong64_t
m_numPassed
;
// !< a counter of the number of tracks that passed all cuts
mutable
std
::
atomic
<
ULong64_t
>
m_numProcessed
;
// !< a counter of the number of tracks proccessed
mutable
std
::
atomic
<
ULong64_t
>
m_numPassed
;
// !< a counter of the number of tracks that passed all cuts
mutable
std
::
vector
<
ULong64_t
>
m_numPassedCuts
;
// !< tracks the number of tracks that passed each cut family
// Cut vales;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment