Skip to content

Commit d739a2f

Browse files
authored
Merge pull request #78 from skyriacoCMS/CMSSW_8_0_X_V3
Cmssw 8 0 x v3
2 parents cc45304 + 4b7d628 commit d739a2f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/BoostedJetToolboxUserData.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ void BoostedJetToolboxUserData::produce( edm::Event& iEvent, const edm::EventSet
9191
min_dR = temp_dR;
9292
TLorentzVector puppi_softdrop, puppi_softdrop_subjet;
9393
TLorentzVector puppi_softdrop_corr, puppi_softdrop_subjet_corr;
94-
auto const & sbSubjetsPuppi = puppiSDJet.subjets("SoftDropPuppi");
94+
auto const & sbSubjetsPuppi = puppiSDJet.subjets("SoftDrop");
9595
for ( auto const & it : sbSubjetsPuppi ) {
9696
puppi_softdrop_subjet.SetPtEtaPhiM(it->correctedP4(0).pt(),it->correctedP4(0).eta(),it->correctedP4(0).phi(),it->correctedP4(0).mass());
9797
puppi_softdrop+=puppi_softdrop_subjet;

src/PhotonJets.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ void PhotonJets::produce( edm::Event& iEvent, const edm::EventSetup& iSetup) {
247247

248248
fastjet::JetDefinition jet_def_kt8(fastjet::kt_algorithm,0.8);
249249
fastjet::ClusterSequence clust_seq_08(FJparticles, jet_def_kt8);
250-
std::vector<fastjet::PseudoJet> jetnew = sorted_by_pt(clust_seq_08.exclusive_jets_up_to(1));
250+
std::vector<fastjet::PseudoJet> jet_new = sorted_by_pt(clust_seq_08.exclusive_jets_up_to(1));
251251

252252
Pruner pruner(fastjet::kt_algorithm,0.1,0.5);
253253
PseudoJet jetnew = pruner(jet_new[0]);

0 commit comments

Comments
 (0)