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