Changeset b9ae4c3 in git for external/fastjet/ClusterSequenceActiveArea.hh
- Timestamp:
- Sep 2, 2016, 3:46:14 PM (8 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- fa068d3
- Parents:
- ec5e04b (diff), 23389ff (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. - git-author:
- Pavel Demin <pavel-demin@…> (09/02/16 15:46:14)
- git-committer:
- GitHub <noreply@…> (09/02/16 15:46:14)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/ClusterSequenceActiveArea.hh
rec5e04b rb9ae4c3 1 1 //FJSTARTHEADER 2 // $Id: ClusterSequenceActiveArea.hh 3619 2014-08-13 14:17:19Z salam$2 // $Id: ClusterSequenceActiveArea.hh 4047 2016-03-03 13:21:49Z soyez $ 3 3 // 4 4 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 74 74 const bool & writeout_combinations = false) ; 75 75 76 virtual double area (const PseudoJet & jet) const {76 virtual double area (const PseudoJet & jet) const FASTJET_OVERRIDE { 77 77 return _average_area[jet.cluster_hist_index()];}; 78 virtual double area_error (const PseudoJet & jet) const {78 virtual double area_error (const PseudoJet & jet) const FASTJET_OVERRIDE { 79 79 return _average_area2[jet.cluster_hist_index()];}; 80 80 81 virtual PseudoJet area_4vector (const PseudoJet & jet) const {81 virtual PseudoJet area_4vector (const PseudoJet & jet) const FASTJET_OVERRIDE { 82 82 return _average_area_4vector[jet.cluster_hist_index()];}; 83 83 … … 110 110 /// 111 111 /// The selector passed as an argument needs to apply jet by jet. 112 virtual double empty_area(const Selector & selector) const ;112 virtual double empty_area(const Selector & selector) const FASTJET_OVERRIDE; 113 113 114 114 /// return the true number of empty jets (replaces 115 115 /// ClusterSequenceAreaBase::n_empty_jets(...)) 116 virtual double n_empty_jets(const Selector & selector) const ;116 virtual double n_empty_jets(const Selector & selector) const FASTJET_OVERRIDE; 117 117 118 118 protected:
Note:
See TracChangeset
for help on using the changeset viewer.