Skip to content

Commit efc0ca7

Browse files
authored
Switching matching workflows on by default (#8708)
1 parent 61141a6 commit efc0ca7

File tree

4 files changed

+4
-24
lines changed

4 files changed

+4
-24
lines changed

PWGJE/TableProducer/Matching/Duplicates/jetMatchingDuplicates.cxx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,6 @@ struct JetMatchingDuplicates {
5353
{
5454
}
5555

56-
void processDummy(aod::JetCollisions const&)
57-
{
58-
}
59-
PROCESS_SWITCH(JetMatchingDuplicates, processDummy, "Dummy process", true);
60-
6156
void processJets(aod::JetCollisions const& collisions,
6257
JetsBase const& jetsBase, JetsTag const& jetsTag,
6358
Tracks const& tracks, Candidates const& candidates)
@@ -89,5 +84,5 @@ struct JetMatchingDuplicates {
8984
jetsTagtoBaseMatchingTable(jetsTagtoBaseMatchingGeo[i], jetsTagtoBaseMatchingPt[i], jetsTagtoBaseMatchingHF[i]); // is (and needs to) be filled in order
9085
}
9186
}
92-
PROCESS_SWITCH(JetMatchingDuplicates, processJets, "Perform jet matching", false);
87+
PROCESS_SWITCH(JetMatchingDuplicates, processJets, "Perform jet matching", true);
9388
};

PWGJE/TableProducer/Matching/jetMatchingMC.cxx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,6 @@ struct JetMatchingMc {
6161
{
6262
}
6363

64-
void processDummy(aod::JetMcCollisions const&)
65-
{
66-
}
67-
PROCESS_SWITCH(JetMatchingMc, processDummy, "Dummy process", true);
68-
6964
void processJets(aod::JetMcCollisions const& mcCollisions, aod::JetCollisionsMCD const& collisions,
7065
JetsBase const& jetsBase, JetsTag const& jetsTag,
7166
aod::JetTracksMCD const& tracks,
@@ -105,7 +100,7 @@ struct JetMatchingMc {
105100
jetsTagtoBaseMatchingTable(jetsTagtoBaseMatchingGeo[i], jetsTagtoBaseMatchingPt[i], jetsTagtoBaseMatchingHF[i]); // is (and needs to) be filled in order
106101
}
107102
}
108-
PROCESS_SWITCH(JetMatchingMc, processJets, "Perform jet matching", false);
103+
PROCESS_SWITCH(JetMatchingMc, processJets, "Perform jet matching", true);
109104
};
110105

111106
/*using BplusChargedJetMatching = JetMatchingMc<soa::Join<aod::BplusChargedMCDetectorLevelJets, aod::BplusChargedMCDetectorLevelJetConstituents>,

PWGJE/TableProducer/Matching/jetMatchingMCSub.cxx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,6 @@ struct JetMatchingMcSub {
5555
{
5656
}
5757

58-
void processDummy(aod::JetCollisions const&)
59-
{
60-
}
61-
PROCESS_SWITCH(JetMatchingMcSub, processDummy, "Dummy process", true);
62-
6358
void processJets(aod::JetCollisions const& collisions,
6459
JetsBase const& jetsBase, JetsTag const& jetsTag,
6560
aod::JetTracks const& tracks,
@@ -93,7 +88,7 @@ struct JetMatchingMcSub {
9388
jetsTagtoBaseMatchingTable(jetsTagtoBaseMatchingGeo[i], jetsTagtoBaseMatchingPt[i], jetsTagtoBaseMatchingHF[i]); // is (and needs to) be filled in order
9489
}
9590
}
96-
PROCESS_SWITCH(JetMatchingMcSub, processJets, "Perform jet matching", false);
91+
PROCESS_SWITCH(JetMatchingMcSub, processJets, "Perform jet matching", true);
9792
};
9893

9994
/*using BplusChargedJetMatching = JetMatchingMcSub<soa::Join<aod::BplusChargedMCDetectorLevelJets, aod::BplusChargedMCDetectorLevelJetConstituents>,

PWGJE/TableProducer/Matching/jetMatchingSub.cxx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,6 @@ struct JetMatchingSub {
5555
{
5656
}
5757

58-
void processDummy(aod::JetCollisions const&)
59-
{
60-
}
61-
PROCESS_SWITCH(JetMatchingSub, processDummy, "Dummy process", true);
62-
6358
void processJets(aod::JetCollisions const& collisions,
6459
JetsBase const& jetsBase, JetsTag const& jetsTag,
6560
aod::JetTracks const& tracks, TracksTag const& tracksSub, Candidates const& candidates)
@@ -91,7 +86,7 @@ struct JetMatchingSub {
9186
jetsTagtoBaseMatchingTable(jetsTagtoBaseMatchingGeo[i], jetsTagtoBaseMatchingPt[i], jetsTagtoBaseMatchingHF[i]); // is (and needs to) be filled in order
9287
}
9388
}
94-
PROCESS_SWITCH(JetMatchingSub, processJets, "Perform jet matching", false);
89+
PROCESS_SWITCH(JetMatchingSub, processJets, "Perform jet matching", true);
9590
};
9691

9792
/*using BplusChargedJetMatching = JetMatchingSub<soa::Join<aod::BplusChargedJets, aod::BplusChargedJetConstituents>,

0 commit comments

Comments
 (0)