Fork me on GitHub

Changeset 8d4d51b in git for modules


Ignore:
Timestamp:
Dec 5, 2017, 8:36:29 PM (7 years ago)
Author:
Michele Selvaggi (michele.selvaggi@…>
Branches:
ImprovedOutputFile, Timing, dual_readout, llp, master
Children:
6d1fff5
Parents:
27cd45c (diff), 6965fe1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of github.com:delphes/delphes

Location:
modules
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • modules/FastJetFinder.cc

    r27cd45c r8d4d51b  
    520520      candidate->NSubJetsSoftDropped = softdrop_jet.pieces().size();
    521521
     522      candidate->SoftDroppedJet = candidate->SoftDroppedP4[0];
     523
    522524      for (size_t i = 0; i < subjets.size()  and i < 4; i++)
    523525      {
    524526            if(subjets.at(i).pt() < 0) continue ;
    525527            candidate->SoftDroppedP4[i+1].SetPtEtaPhiM(subjets.at(i).pt(), subjets.at(i).eta(), subjets.at(i).phi(), subjets.at(i).m());
     528            if(i==0) candidate->SoftDroppedSubJet1 = candidate->SoftDroppedP4[i+1];
     529            if(i==1) candidate->SoftDroppedSubJet2 = candidate->SoftDroppedP4[i+1];
    526530      }
    527531    }
  • modules/TreeWriter.cc

    r27cd45c r8d4d51b  
    681681    entry->NSubJetsSoftDropped = candidate->NSubJetsSoftDropped;
    682682
     683    entry->SoftDroppedJet     = candidate->SoftDroppedJet ;
     684    entry->SoftDroppedSubJet1 = candidate->SoftDroppedSubJet1 ;
     685    entry->SoftDroppedSubJet2 = candidate->SoftDroppedSubJet2;
     686
     687
    683688    for(i = 0; i < 5; i++)
    684689    {
Note: See TracChangeset for help on using the changeset viewer.