ATLAS Offline Software
Loading...
Searching...
No Matches
AcceptAllCondition.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2021 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#include <string>
17#include "./ICondition.h"
18
19namespace HypoJet{
20 class IJet;
21}
22
24
26 public:
27 ~AcceptAllCondition() override {}
28
29 bool isSatisfied(const HypoJetVector&,
30 const std::unique_ptr<ITrigJetHypoInfoCollector>&) const override;
31
32 virtual unsigned int capacity() const override{return 0;}
33 std::string toString() const override;
34
35 private:
36
37};
38
39#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