Skip to content

Commit

Permalink
Common: add better mft counters
Browse files Browse the repository at this point in the history
  • Loading branch information
ddobrigk committed Dec 13, 2024
1 parent a0667c3 commit 0544ca7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Common/TableProducer/Converters/trackQA002Converter.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ using namespace o2::framework;
struct TrackQAConverter002 {
Produces<aod::TracksQA_002> tracksQA_002;

void process000(aod::TracksQA_000 const& tracksQA_002)
void process000(aod::TracksQA_000 const& tracksQA_001)
{
for (const auto& trackQA : tracksQA_000) {
for (const auto& trackQA : tracksQA_001) {
tracksQA_002(
trackQA.trackId(),
trackQA.tpcTime0(),
Expand Down Expand Up @@ -54,7 +54,7 @@ struct TrackQAConverter002 {
}
PROCESS_SWITCH(TrackQAConverter002, process000, "process v000-to-v002 conversion", false);

void process001(aod::TracksQA_001 const& tracksQA_002)
void process001(aod::TracksQA_001 const& tracksQA_001)
{
for (const auto& trackQA : tracksQA_001) {
tracksQA_002(
Expand Down
3 changes: 1 addition & 2 deletions Common/TableProducer/multiplicityTable.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ static constexpr int kFT0MultZeqs = 10;
static constexpr int kFDDMultZeqs = 11;
static constexpr int kPVMultZeqs = 12;
static constexpr int kMultMCExtras = 13;
static constexpr int kMFTMults = 14;
static constexpr int nTables = 15;
static constexpr int nTables = 14;

// Checking that the Zeq tables are after the normal ones
static_assert(kFV0Mults < kFV0MultZeqs);
Expand Down

0 comments on commit 0544ca7

Please sign in to comment.