ATLAS Offline Software
Loading...
Searching...
No Matches
jJetSelect.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
3*/
4// jJetSelect.h
5// TopoCore
6
7#ifndef __TopoCore__jJetSelect__
8#define __TopoCore__jJetSelect__
9
12
13#include <iostream>
14#include <vector>
15
16namespace TCS {
17
18 class jJetSelect : public SortingAlg {
19 public:
20
21 // constructor
22 jJetSelect(const std::string & name);
23
24 // destructor
25 virtual ~jJetSelect();
26 virtual TCS::StatusCode initialize() override;
27 virtual TCS::StatusCode sort(const InputTOBArray & input, TOBArray & output) override final;
28
29 private:
30
34 parType_t m_et = { 0 };
35
36 };
37
38} // end of namespace TCS
39
40#endif /* defined(__TopoCore__SortingAlg__) */
const std::string & name() const
SortingAlg(const std::string &name)
Definition SortingAlg.h:21
parType_t m_maxEta
Definition jJetSelect.h:33
virtual ~jJetSelect()
parType_t m_numberOfJets
Definition jJetSelect.h:31
jJetSelect(const std::string &name)
parType_t m_et
Definition jJetSelect.h:34
parType_t m_minEta
Definition jJetSelect.h:32
virtual TCS::StatusCode sort(const InputTOBArray &input, TOBArray &output) override final
virtual TCS::StatusCode initialize() override
uint32_t parType_t
Definition Parameter.h:22