ATLAS Offline Software
Loading...
Searching...
No Matches
TrigJetConditionConfig_dijet_mass.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_DIJET_MASS_H
6#define TRIGJETCONDITIONCONFIG_DIJET_MASS_H
7
8
10#include "./ConditionsDefs.h"
12
14public extends<AthAlgTool, ITrigJetConditionConfig> {
15
16 public:
17
18 TrigJetConditionConfig_dijet_mass(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", {}, "min mass for each dijet_mass"};
29
30 Gaudi::Property<std::string>
31 m_max{this, "max", {}, "max mass for each dijet_mass"};
32
33 StatusCode checkVals() const;
34};
35#endif
std::unique_ptr< ICondition > Condition
virtual Condition getCondition() const override
TrigJetConditionConfig_dijet_mass(const std::string &type, const std::string &name, const IInterface *parent)