Skip to content

Commit

Permalink
Merge pull request #78 from skyriacoCMS/CMSSW_8_0_X_V3
Browse files Browse the repository at this point in the history
Cmssw 8 0 x v3
  • Loading branch information
dmajumder committed May 1, 2017
2 parents cc45304 + 4b7d628 commit d739a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/BoostedJetToolboxUserData.cc
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ void BoostedJetToolboxUserData::produce( edm::Event& iEvent, const edm::EventSet
min_dR = temp_dR;
TLorentzVector puppi_softdrop, puppi_softdrop_subjet;
TLorentzVector puppi_softdrop_corr, puppi_softdrop_subjet_corr;
auto const & sbSubjetsPuppi = puppiSDJet.subjets("SoftDropPuppi");
auto const & sbSubjetsPuppi = puppiSDJet.subjets("SoftDrop");
for ( auto const & it : sbSubjetsPuppi ) {
puppi_softdrop_subjet.SetPtEtaPhiM(it->correctedP4(0).pt(),it->correctedP4(0).eta(),it->correctedP4(0).phi(),it->correctedP4(0).mass());
puppi_softdrop+=puppi_softdrop_subjet;
Expand Down
2 changes: 1 addition & 1 deletion src/PhotonJets.cc
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ void PhotonJets::produce( edm::Event& iEvent, const edm::EventSetup& iSetup) {

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

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

0 comments on commit d739a2f

Please sign in to comment.