CMS 3D CMS Logo

L1GctTdrJetFinder.h
Go to the documentation of this file.
1 #ifndef L1GCTTDRJETFINDER_H_
2 #define L1GCTTDRJETFINDER_H_
3 
5 
6 #include <vector>
7 
46 /*
47  * \author Jim Brooke & Robert Frazier
48  * \date March 2006
49  */
50 
52 public:
54  L1GctTdrJetFinder(int id);
55 
56  ~L1GctTdrJetFinder() override;
57 
59  friend std::ostream& operator<<(std::ostream& os, const L1GctTdrJetFinder& algo);
60 
62  void fetchInput() override;
63 
65  void process() override;
66 
67 protected:
68  // Each jetFinder must define the constants as private and copy the
69  // function definitions below.
70  unsigned maxRegionsIn() const override { return MAX_REGIONS_IN; }
71  unsigned centralCol0() const override { return CENTRAL_COL0; }
72  unsigned int nCols() const override { return N_COLS; }
73 
74 private:
76  static const unsigned int MAX_REGIONS_IN;
77  static const unsigned int N_COLS;
78  static const unsigned int CENTRAL_COL0;
79 
81  void findJets();
82 
84  bool detectJet(const UShort centreIndex, const bool boundary = false) const;
85 
87  ULong calcJetEnergy(const UShort centreIndex, const bool boundary = false) const;
88 
90  L1CaloRegionDetId calcJetPosition(const UShort centreIndex) const;
91 
93  bool calcJetTauVeto(const UShort centreIndex, const bool boundary = false) const;
94 };
95 
96 std::ostream& operator<<(std::ostream& os, const L1GctTdrJetFinder& algo);
97 
98 #endif /*L1GCTTDRJETFINDER_H_*/
bool detectJet(const UShort centreIndex, const bool boundary=false) const
Returns true if region index is the centre of a jet. Set boundary = true if at edge of HCAL...
3*3 sliding window algorithm jet finder.
static const unsigned int MAX_REGIONS_IN
The real jetFinders must define these constants.
bool calcJetTauVeto(const UShort centreIndex, const bool boundary=false) const
Returns combined tauVeto of the 9 regions centred (physically) about centreIndex. Set boundary = true...
friend std::ostream & operator<<(std::ostream &os, const L1GctTdrJetFinder &algo)
Overload << operator.
std::ostream & operator<<(std::ostream &os, const L1GctTdrJetFinder &algo)
unsigned long int ULong
~L1GctTdrJetFinder() override
void findJets()
Here is the TDR 3x3 sliding window jet finder algorithm.
unsigned maxRegionsIn() const override
unsigned int nCols() const override
ULong calcJetEnergy(const UShort centreIndex, const bool boundary=false) const
Returns energy sum of the 9 regions centred (physically) about centreIndex. Set boundary = true if at...
Base class to allow implementation of jetFinder algorithms.
L1CaloRegionDetId calcJetPosition(const UShort centreIndex) const
returns the encoded (eta, phi) position of the centre region
static const unsigned int CENTRAL_COL0
void process() override
process the data, fill output buffers
unsigned short int UShort
unsigned centralCol0() const override
void fetchInput() override
get input data from sources
static const unsigned int N_COLS
L1GctTdrJetFinder(int id)
id is 0-8 for -ve Eta jetfinders, 9-17 for +ve Eta, for increasing Phi.