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 }
24 
25 #endif
int deltaGctPhi(const CaloRegion &region, const CaloRegion &neighbor)
void slidingWindowJetFinder(const int, const std::vector< l1t::CaloRegion > *regions, std::vector< l1t::Jet > *uncalibjets)