ATLAS Offline Software
Loading...
Searching...
No Matches
AcceptAllCondition.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_ACCEPTALL_H
6#define TRIGHLTJETHYPO_ACCEPTALL_H
7
8/********************************************************************
9 *
10 * NAME: AcceptAllCondition.h
11 * PACKAGE: Trigger/TrigHypothesis/TrigHLTJetHypo
12 *
13 * AUTHOR: P. Sherwood
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 ~AcceptAllCondition() override {}
30
31 bool isSatisfied(const HypoJetVector&,
32 const std::unique_ptr<ITrigJetHypoInfoCollector>&) const override;
33
34 virtual unsigned int capacity() const override{return 0;}
35 std::string toString() const override;
36
37 private:
38
39};
40
41#endif
std::vector< pHypoJet > HypoJetVector
Definition HypoJetDefs.h:27
bool isSatisfied(const HypoJetVector &, const std::unique_ptr< ITrigJetHypoInfoCollector > &) const override
std::string toString() const override
virtual unsigned int capacity() const override