- Timestamp:
- Dec 5, 2017, 8:36:29 PM (7 years ago)
- 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. - Location:
- modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/FastJetFinder.cc
r27cd45c r8d4d51b 520 520 candidate->NSubJetsSoftDropped = softdrop_jet.pieces().size(); 521 521 522 candidate->SoftDroppedJet = candidate->SoftDroppedP4[0]; 523 522 524 for (size_t i = 0; i < subjets.size() and i < 4; i++) 523 525 { 524 526 if(subjets.at(i).pt() < 0) continue ; 525 527 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]; 526 530 } 527 531 } -
modules/TreeWriter.cc
r27cd45c r8d4d51b 681 681 entry->NSubJetsSoftDropped = candidate->NSubJetsSoftDropped; 682 682 683 entry->SoftDroppedJet = candidate->SoftDroppedJet ; 684 entry->SoftDroppedSubJet1 = candidate->SoftDroppedSubJet1 ; 685 entry->SoftDroppedSubJet2 = candidate->SoftDroppedSubJet2; 686 687 683 688 for(i = 0; i < 5; i++) 684 689 {
Note:
See TracChangeset
for help on using the changeset viewer.