Skip to content

Commit 9c43b85

Browse files
committed
PWGJE: fix linter errors
1 parent 96176f6 commit 9c43b85

1 file changed

Lines changed: 0 additions & 29 deletions

File tree

PWGJE/Tasks/recoilJets.cxx

Lines changed: 0 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -872,19 +872,11 @@ struct RecoilJets {
872872
bool bIsBaseJetRecoil, TracksTable const& tracks, float weight = 1.)
873873
{
874874

875-
<<<<<<< HEAD
876-
bool bIsThereMatchedJet = partJet.has_matchedJetGeo();
877-
878-
if (bIsThereMatchedJet) {
879-
const auto& jetsMatched =
880-
partJet.template matchedJetGeo_as<std::decay_t<DetJet>>();
881-
=======
882875
float partJetPt = partJet.pt();
883876
bool bIsThereMatchedJet = partJet.has_matchedJetGeo();
884877

885878
if (bIsThereMatchedJet) {
886879
const auto& jetsMatched = partJet.template matchedJetGeo_as<std::decay_t<DetJet>>();
887-
>>>>>>> 31538b807 (PWGJE: add selection of events based on multiplicity)
888880

889881
for (const auto& jetMatched : jetsMatched) {
890882

@@ -897,26 +889,6 @@ struct RecoilJets {
897889
if (bIsBaseJetRecoil)
898890
spectra.fill(HIST("hMissedJets_pT_RecoilJets"), partJetPt, weight);
899891
} else {
900-
<<<<<<< HEAD
901-
spectra.fill(HIST("hNumberMatchedJetsPerOneBaseJet"),
902-
jetsMatched.size(), jetMatched.pt(), weight);
903-
spectra.fill(HIST("hJetPt_DetLevel_vs_PartLevel"), jetMatched.pt(),
904-
partJet.pt(), weight);
905-
spectra.fill(HIST("hJetPt_resolution"),
906-
(partJet.pt() - jetMatched.pt()) / partJet.pt(),
907-
partJet.pt(), weight);
908-
spectra.fill(HIST("hJetPhi_resolution"),
909-
partJet.phi() - jetMatched.phi(), partJet.pt(), weight);
910-
911-
if (bIsBaseJetRecoil) {
912-
spectra.fill(HIST("hJetPt_DetLevel_vs_PartLevel_RecoilJets"),
913-
jetMatched.pt(), partJet.pt(), weight);
914-
spectra.fill(HIST("hJetPt_resolution_RecoilJets"),
915-
(partJet.pt() - jetMatched.pt()) / partJet.pt(),
916-
partJet.pt(), weight);
917-
spectra.fill(HIST("hJetPhi_resolution_RecoilJets"),
918-
partJet.phi() - jetMatched.phi(), partJet.pt(), weight);
919-
=======
920892
float detJetPt = jetMatched.pt();
921893

922894
spectra.fill(HIST("hNumberMatchedJetsPerOneBaseJet"), jetsMatched.size(), detJetPt, weight);
@@ -928,7 +900,6 @@ struct RecoilJets {
928900
spectra.fill(HIST("hJetPt_DetLevel_vs_PartLevel_RecoilJets"), detJetPt, partJetPt, weight);
929901
spectra.fill(HIST("hJetPt_resolution_RecoilJets"), (partJetPt - detJetPt) / partJetPt, partJetPt, weight);
930902
spectra.fill(HIST("hJetPhi_resolution_RecoilJets"), partJet.phi() - jetMatched.phi(), partJetPt, weight);
931-
>>>>>>> 31538b807 (PWGJE: add selection of events based on multiplicity)
932903
}
933904
}
934905
}

0 commit comments

Comments
 (0)