Changes in external/fastjet/CompositeJetStructure.hh [1d208a2:273e668] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
external/fastjet/CompositeJetStructure.hh
r1d208a2 r273e668 1 1 //FJSTARTHEADER 2 // $Id: CompositeJetStructure.hh 4047 2016-03-03 13:21:49Z soyez$2 // $Id: CompositeJetStructure.hh 3652 2014-09-03 13:31:13Z salam $ 3 3 // 4 4 // Copyright (c) 2005-2014, Matteo Cacciari, Gavin P. Salam and Gregory Soyez … … 64 64 65 65 /// description 66 virtual std::string description() const FASTJET_OVERRIDE;66 virtual std::string description() const; 67 67 68 68 // things reimplemented from the base structure … … 70 70 /// true unless the jet has no pieces (see also the description of 71 71 /// constituents() below) 72 virtual bool has_constituents() const FASTJET_OVERRIDE;72 virtual bool has_constituents() const; 73 73 74 74 /// return the constituents (i.e. the union of the constituents of each piece) … … 78 78 /// Note that as a consequence, a composite jet with no pieces will 79 79 /// have an empty vector as constituents 80 virtual std::vector<PseudoJet> constituents(const PseudoJet &jet) const FASTJET_OVERRIDE;80 virtual std::vector<PseudoJet> constituents(const PseudoJet &jet) const; 81 81 82 82 //------------------------------------------------------------------- … … 84 84 //------------------------------------------------------------------- 85 85 /// true if it has pieces (always the case) 86 virtual bool has_pieces(const PseudoJet & /*jet*/) const FASTJET_OVERRIDE{return true;}86 virtual bool has_pieces(const PseudoJet & /*jet*/) const {return true;} 87 87 88 88 /// returns the pieces 89 virtual std::vector<PseudoJet> pieces(const PseudoJet &jet) const FASTJET_OVERRIDE;89 virtual std::vector<PseudoJet> pieces(const PseudoJet &jet) const; 90 90 91 91 // area-related material … … 93 93 94 94 /// check if it has a well-defined area 95 virtual bool has_area() const FASTJET_OVERRIDE;95 virtual bool has_area() const; 96 96 97 97 /// return the jet (scalar) area. 98 virtual double area(const PseudoJet &reference) const FASTJET_OVERRIDE;98 virtual double area(const PseudoJet &reference) const; 99 99 100 100 /// return the error (uncertainty) associated with the determination … … 102 102 /// 103 103 /// Be conservative: return the sum of the errors 104 virtual double area_error(const PseudoJet &reference) const FASTJET_OVERRIDE;104 virtual double area_error(const PseudoJet &reference) const; 105 105 106 106 /// return the jet 4-vector area. 107 virtual PseudoJet area_4vector(const PseudoJet &reference) const FASTJET_OVERRIDE;107 virtual PseudoJet area_4vector(const PseudoJet &reference) const; 108 108 109 109 /// true if this jet is made exclusively of ghosts. 110 110 /// 111 111 /// In this case, it will be true if all pieces are pure ghost 112 virtual bool is_pure_ghost(const PseudoJet &reference) const FASTJET_OVERRIDE;112 virtual bool is_pure_ghost(const PseudoJet &reference) const; 113 113 114 114 //unused: // allows one to modify the area information
Note:
See TracChangeset
for help on using the changeset viewer.