CMS 3D CMS Logo

CMSInsideOutAlgorithm.h
Go to the documentation of this file.
1 #ifndef RecoJets_JetAlgorithms_CMSInsideOutAlgorithm_h
2 #define RecoJets_JetAlgorithms_CMSInsideOutAlgorithm_h
3 
12 #include <list>
13 #include <algorithm>
14 
17 #include <limits>
18 #include <vector>
19 #include <list>
20 
21 #include "fastjet/PseudoJet.hh"
22 
24 public:
26  typedef std::list<fastjet::PseudoJet>::iterator inputListIter;
27  // binary predicate to sort a std::list of std::list<InputItem> iterators by increasing deltaR
28  // from a eta-phi point specified in the ctor
30  public:
31  ListIteratorLesserByDeltaR(const double& eta, const double& phi) : seedEta_(eta), seedPhi_(phi) {}
32  bool operator()(const inputListIter& A, const inputListIter& B) const {
33  double deltaR2A = reco::deltaR2((*A).eta(), seedEta_, (*A).phi(), seedPhi_);
34  double deltaR2B = reco::deltaR2((*B).eta(), seedEta_, (*B).phi(), seedPhi_);
35  return fabs(deltaR2A - deltaR2B) > std::numeric_limits<double>::epsilon()
36  ? deltaR2A < deltaR2B
37  : reco::deltaPhi((*A).phi(), seedPhi_) < reco::deltaPhi((*B).phi(), seedPhi_);
38  };
39 
40  private:
41  double seedEta_, seedPhi_;
42  };
43 
50  CMSInsideOutAlgorithm(double seedObjectPt, double growthParameter, double maxSize, double minSize)
51  : seedThresholdPt_(seedObjectPt),
52  growthParameterSquared_(growthParameter * growthParameter),
54  minSizeSquared_(minSize * minSize){};
55 
57  void run(const std::vector<fastjet::PseudoJet>& fInput, std::vector<fastjet::PseudoJet>& fOutput);
58 
59 private:
64 };
65 
66 #endif
CMSInsideOutAlgorithm
Definition: CMSInsideOutAlgorithm.h:23
CMSInsideOutAlgorithm::ListIteratorLesserByDeltaR::seedPhi_
double seedPhi_
Definition: CMSInsideOutAlgorithm.h:38
CMSInsideOutAlgorithm::maxSizeSquared_
double maxSizeSquared_
Definition: CMSInsideOutAlgorithm.h:62
CMSInsideOutAlgorithm::CMSInsideOutAlgorithm
CMSInsideOutAlgorithm(double seedObjectPt, double growthParameter, double maxSize, double minSize)
Definition: CMSInsideOutAlgorithm.h:50
reco::deltaPhi
constexpr double deltaPhi(double phi1, double phi2)
Definition: deltaPhi.h:26
CMSInsideOutAlgorithm::LorentzVector
reco::Particle::LorentzVector LorentzVector
Definition: CMSInsideOutAlgorithm.h:25
CMSInsideOutAlgorithm::ListIteratorLesserByDeltaR::ListIteratorLesserByDeltaR
ListIteratorLesserByDeltaR(const double &eta, const double &phi)
Definition: CMSInsideOutAlgorithm.h:31
reco::Particle::LorentzVector
math::XYZTLorentzVector LorentzVector
Lorentz vector.
Definition: Particle.h:21
geometryDiff.epsilon
int epsilon
Definition: geometryDiff.py:26
PVValHelper::eta
Definition: PVValidationHelpers.h:70
CMSInsideOutAlgorithm::run
void run(const std::vector< fastjet::PseudoJet > &fInput, std::vector< fastjet::PseudoJet > &fOutput)
Build from input candidate collection.
Definition: CMSInsideOutAlgorithm.cc:7
CMSInsideOutAlgorithm::ListIteratorLesserByDeltaR
Definition: CMSInsideOutAlgorithm.h:29
deltaR.h
reco::deltaR2
constexpr auto deltaR2(const T1 &t1, const T2 &t2) -> decltype(t1.eta())
Definition: deltaR.h:16
A
CMSInsideOutAlgorithm::minSizeSquared_
double minSizeSquared_
Definition: CMSInsideOutAlgorithm.h:63
DDAxes::phi
reco_skim_cfg_mod.maxSize
maxSize
Definition: reco_skim_cfg_mod.py:154
TtFullHadDaughter::B
static const std::string B
Definition: TtFullHadronicEvent.h:9
CMSInsideOutAlgorithm::growthParameterSquared_
double growthParameterSquared_
Definition: CMSInsideOutAlgorithm.h:61
CMSInsideOutAlgorithm::seedThresholdPt_
double seedThresholdPt_
Definition: CMSInsideOutAlgorithm.h:60
Candidate.h
CMSInsideOutAlgorithm::ListIteratorLesserByDeltaR::operator()
bool operator()(const inputListIter &A, const inputListIter &B) const
Definition: CMSInsideOutAlgorithm.h:32
CMSInsideOutAlgorithm::ListIteratorLesserByDeltaR::seedEta_
double seedEta_
Definition: CMSInsideOutAlgorithm.h:38
CMSInsideOutAlgorithm::inputListIter
std::list< fastjet::PseudoJet >::iterator inputListIter
Definition: CMSInsideOutAlgorithm.h:26