Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions PWGLF/Tasks/Nuspex/antinucleiInJets.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ struct AntinucleiInJets {

// loop over reconstructed jets
bool isAtLeastOneJetSelected = false;
for (const auto& jet : jets) {
for (const auto& jet : jets) {

// jet must be fully contained in the acceptance
if ((std::fabs(jet.eta()) + rJet) > (maxEta - deltaEtaEdge))
Expand Down Expand Up @@ -695,7 +695,7 @@ struct AntinucleiInJets {
// loop over reconstructed jets
int njetsInAcc(0);
int njetsHighPt(0);
for (const auto& jet : jets) {
for (const auto& jet : jets) {

// jet must be fully contained in the acceptance
if ((std::fabs(jet.eta()) + rJet) > (maxEta - deltaEtaEdge))
Expand Down Expand Up @@ -1183,7 +1183,6 @@ struct AntinucleiInJets {
}
PROCESS_SWITCH(AntinucleiInJets, processJetsMCrec, "process jets MC rec", false);


// Process Systematics
void processSystematicsData(SelectedCollisions::iterator const& collision, FullNucleiTracks const& tracks)
{
Expand Down
Loading