ATLAS Offline Software
Loading...
Searching...
No Matches
TrigJetConditionConfig_htfr.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 TRIGJETCONDITIONCONFIG_HTFR_H
6#define TRIGJETCONDITIONCONFIG_HTFR_H
7
8/*
9Condiguration AlgTool for ht conditions to be run in FastReduction
10PS
11*/
12
14#include "./ConditionsDefs.h"
16
17// #include "TrigHLTJetHypo/TrigHLTJetHypoUtils/ConditionsDefs.h"
18
20public extends<AthAlgTool, ITrigJetConditionConfig> {
21
22 public:
23
24 TrigJetConditionConfig_htfr(const std::string& type,
25 const std::string& name,
26 const IInterface* parent);
27
28 virtual StatusCode initialize() override;
29 virtual Condition getCondition() const override;
30
31 private:
32
33
34 Gaudi::Property<std::string>
35 m_min{this, "min", {}, "min HT"};
36
37 Gaudi::Property<std::string>
38 m_max{this, "max", {}, "max HT"};
39
40 StatusCode checkVals() const;
41};
42#endif
std::unique_ptr< ICondition > Condition
Gaudi::Property< std::string > m_min
virtual StatusCode initialize() override
virtual Condition getCondition() const override
Gaudi::Property< std::string > m_max
TrigJetConditionConfig_htfr(const std::string &type, const std::string &name, const IInterface *parent)