Skip to content

Commit

Permalink
Default type for occupancy should be int
Browse files Browse the repository at this point in the history
  • Loading branch information
ChunzhengLab committed Jul 24, 2024
1 parent d2194d1 commit 6d46f5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions DPG/Tasks/AOTTrack/qaMatchEff.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ struct qaMatchEff {
Configurable<float> centralityMaxCut{"centralityMaxCut", 100.0f, "Maximum centrality"};
} centralityCuts;
struct : ConfigurableGroup {
Configurable<float> minTracksInTimeRange{"minTracksInTimeRange", 0.0f, "Minimum number of tracks in the time range"};
Configurable<float> maxTracksInTimeRange{"maxTracksInTimeRange", 999999.9f, "Maximum number of tracks in the time range"};
Configurable<int> minTracksInTimeRange{"minTracksInTimeRange", 0, "Minimum number of tracks in the time range"};
Configurable<int> maxTracksInTimeRange{"maxTracksInTimeRange", 999999, "Maximum number of tracks in the time range"};
} occupancyCuts;
//
// Track selections
Expand Down

0 comments on commit 6d46f5f

Please sign in to comment.