ATLAS Offline Software
Public Member Functions | Private Member Functions | Private Attributes | List of all members
TrigJetConditionConfig_htfr Class Reference

#include <TrigJetConditionConfig_htfr.h>

Inheritance diagram for TrigJetConditionConfig_htfr:
Collaboration diagram for TrigJetConditionConfig_htfr:

Public Member Functions

 TrigJetConditionConfig_htfr (const std::string &type, const std::string &name, const IInterface *parent)
 
virtual StatusCode initialize () override
 
virtual Condition getCondition () const override
 

Private Member Functions

StatusCode checkVals () const
 

Private Attributes

Gaudi::Property< std::string > m_min {this, "min", {}, "min HT"}
 
Gaudi::Property< std::string > m_max {this, "max", {}, "max HT"}
 

Detailed Description

Definition at line 19 of file TrigJetConditionConfig_htfr.h.

Constructor & Destructor Documentation

◆ TrigJetConditionConfig_htfr()

TrigJetConditionConfig_htfr::TrigJetConditionConfig_htfr ( const std::string &  type,
const std::string &  name,
const IInterface *  parent 
)

Definition at line 13 of file TrigJetConditionConfig_htfr.cxx.

15  :
16  base_class(type, name, parent){
17 
18 }

Member Function Documentation

◆ checkVals()

StatusCode TrigJetConditionConfig_htfr::checkVals ( ) const
private

Definition at line 34 of file TrigJetConditionConfig_htfr.cxx.

34  {
35  auto a2d = ArgStrToDouble();
36  if (a2d(m_min) > a2d(m_max)){
37  ATH_MSG_ERROR("htMin > htMax");
38  return StatusCode::FAILURE;
39  }
40  return StatusCode::SUCCESS;
41 }

◆ getCondition()

Condition TrigJetConditionConfig_htfr::getCondition ( ) const
overridevirtual

Definition at line 28 of file TrigJetConditionConfig_htfr.cxx.

28  {
29  auto a2d = ArgStrToDouble();
30  return std::make_unique<HTConditionFastReduction>(a2d(m_min), a2d(m_max));
31 }

◆ initialize()

StatusCode TrigJetConditionConfig_htfr::initialize ( )
overridevirtual

Definition at line 21 of file TrigJetConditionConfig_htfr.cxx.

21  {
22  CHECK(checkVals());
23 
24  return StatusCode::SUCCESS;
25 }

Member Data Documentation

◆ m_max

Gaudi::Property<std::string> TrigJetConditionConfig_htfr::m_max {this, "max", {}, "max HT"}
private

Definition at line 38 of file TrigJetConditionConfig_htfr.h.

◆ m_min

Gaudi::Property<std::string> TrigJetConditionConfig_htfr::m_min {this, "min", {}, "min HT"}
private

Definition at line 35 of file TrigJetConditionConfig_htfr.h.


The documentation for this class was generated from the following files:
TrigJetConditionConfig_htfr::checkVals
StatusCode checkVals() const
Definition: TrigJetConditionConfig_htfr.cxx:34
ArgStrToDouble
Definition: ArgStrToDouble.h:13
TrigJetConditionConfig_htfr::m_max
Gaudi::Property< std::string > m_max
Definition: TrigJetConditionConfig_htfr.h:38
TrigJetConditionConfig_htfr::m_min
Gaudi::Property< std::string > m_min
Definition: TrigJetConditionConfig_htfr.h:35
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
test_pyathena.parent
parent
Definition: test_pyathena.py:15
CHECK
#define CHECK(...)
Evaluate an expression and check for errors.
Definition: Control/AthenaKernel/AthenaKernel/errorcheck.h:422
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78