CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
JetFinderMethods.h
Go to the documentation of this file.
1 // JetFinderMethods.h
2 // Author: Alex Barbieri
3 //
4 // This file should contain the different algorithms used to find jets.
5 // Currently the standard is the sliding window method, used by both
6 // HI and PP.
7 
8 #ifndef JETFINDERMETHODS_H
9 #define JETFINDERMETHODS_H
10 
13 
15 
16 #include <vector>
17 
18 namespace l1t {
19 
20  int deltaGctPhi(const CaloRegion & region, const CaloRegion & neighbor);
21  void slidingWindowJetFinder(const int, const std::vector<l1t::CaloRegion> * regions,
22  std::vector<l1t::Jet> * uncalibjets);
23  void TwelveByTwelveFinder(const int, const std::vector<l1t::CaloRegion> * regions,
24  std::vector<l1t::Jet> * uncalibjets);
25  void passThroughJets(const std::vector<l1t::CaloRegion> * regions,
26  std::vector<l1t::Jet> * uncalibjets);
27  void TwoByTwoFinder(const int, const int, const std::vector<l1t::CaloRegion> * regions,
28  std::vector<l1t::Jet> * uncalibjets);
29 }
30 
31 #endif
void TwelveByTwelveFinder(const int, const std::vector< l1t::CaloRegion > *regions, std::vector< l1t::Jet > *uncalibjets)
void TwoByTwoFinder(const int, const int, const std::vector< l1t::CaloRegion > *regions, std::vector< l1t::Jet > *uncalibjets)
void passThroughJets(const std::vector< l1t::CaloRegion > *regions, std::vector< l1t::Jet > *uncalibjets)
int deltaGctPhi(const CaloRegion &region, const CaloRegion &neighbor)
void slidingWindowJetFinder(const int, const std::vector< l1t::CaloRegion > *regions, std::vector< l1t::Jet > *uncalibjets)