ATLAS Offline Software
Loading...
Searching...
No Matches
CleanCondition.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef TRIGHLTJETHYPO_CLEANCONDITION_H
6#define TRIGHLTJETHYPO_CLEANCONDITION_H
7
8/********************************************************************
9 *
10 * NAME: CleanCondition.h
11 * PACKAGE: Trigger/TrigHypothesis/TrigHLTJetHypo
12 *
13 * AUTHOR: M. Valente
14 *********************************************************************/
15
16
17#include "./ICondition.h"
18#include <string>
19#include <memory>
20
21namespace HypoJet{
22 class IJet;
23}
24
26
28 public:
29 CleanCondition(const std::string& cName);
30
31 bool isSatisfied(const HypoJetVector &,
32 const std::unique_ptr<ITrigJetHypoInfoCollector> &) const override;
33
34 virtual unsigned int capacity() const override { return s_capacity; }
35
36 std::string toString() const override;
37 private:
38
39 std::string m_cName;
40 bool isSatisfied(const pHypoJet&,
41 const std::unique_ptr<ITrigJetHypoInfoCollector>&) const;
42
43 const static unsigned int s_capacity{1};
44
45};
46
47#endif
std::vector< pHypoJet > HypoJetVector
Definition HypoJetDefs.h:27
std::shared_ptr< const HypoJet::IJet > pHypoJet
Definition HypoJetDefs.h:25
bool isSatisfied(const HypoJetVector &, const std::unique_ptr< ITrigJetHypoInfoCollector > &) const override
CleanCondition(const std::string &cName)
std::string toString() const override
std::string m_cName
virtual unsigned int capacity() const override
static const unsigned int s_capacity