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