ATLAS Offline Software
Loading...
Searching...
No Matches
TrigJetConditionConfig_moment.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_MOMENT_H
6#define TRIGJETCONDITIONCONFIG_MOMENT_H
7
10#include "./ConditionsDefs.h"
11
13public extends<AthAlgTool, ITrigJetConditionConfig> {
14
15 public:
16
17 TrigJetConditionConfig_moment(const std::string& type,
18 const std::string& name,
19 const IInterface* parent);
20
21 virtual StatusCode initialize() override;
22 virtual Condition getCondition() const override;
23
24 private:
25
26 Gaudi::Property<std::string>
27 m_min{this, "min", {}, "jet moment min cut"};
28
29 Gaudi::Property<std::string>
30 m_max{this, "max", {}, "jet moment max cut"};
31
32 Gaudi::Property<std::string>
33 m_moment{this, "moment", {}, "jet moment name"};
34
35 StatusCode checkVals() const;
36
37};
38#endif
std::unique_ptr< ICondition > Condition
Gaudi::Property< std::string > m_min
Gaudi::Property< std::string > m_max
Gaudi::Property< std::string > m_moment
TrigJetConditionConfig_moment(const std::string &type, const std::string &name, const IInterface *parent)
virtual Condition getCondition() const override