ATLAS Offline Software
TrigJetConditionConfig_smc.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
6 
7 #include "GaudiKernel/StatusCode.h"
8 #include "./SMCCondition.h"
9 
11  const std::string& name,
12  const IInterface* parent) :
13  base_class(type, name, parent){
14 
15 }
16 
17 
19  CHECK(checkVals());
20  return StatusCode::SUCCESS;
21 }
22 
23 
25  auto a2d = ArgStrToDouble();
26  return std::make_unique<SMCCondition>(a2d(m_min), a2d(m_max));
27 }
28 
29 
31 
32  auto a2d = ArgStrToDouble();
33  if (a2d(m_min) > a2d(m_max)){
34  ATH_MSG_ERROR(" min smc > max smc");
35  return StatusCode::FAILURE;
36  }
37  return StatusCode::SUCCESS;
38 }
TrigJetConditionConfig_smc::m_min
Gaudi::Property< std::string > m_min
Definition: TrigJetConditionConfig_smc.h:28
ArgStrToDouble
Definition: ArgStrToDouble.h:13
SMCCondition.h
TrigJetConditionConfig_smc::initialize
virtual StatusCode initialize() override
Definition: TrigJetConditionConfig_smc.cxx:18
Condition
std::unique_ptr< ICondition > Condition
Definition: ConditionsDefs.h:19
TrigJetConditionConfig_smc::TrigJetConditionConfig_smc
TrigJetConditionConfig_smc(const std::string &type, const std::string &name, const IInterface *parent)
Definition: TrigJetConditionConfig_smc.cxx:10
TrigJetConditionConfig_smc.h
ATH_MSG_ERROR
#define ATH_MSG_ERROR(x)
Definition: AthMsgStreamMacros.h:33
TrigJetConditionConfig_smc::getCondition
virtual Condition getCondition() const override
Definition: TrigJetConditionConfig_smc.cxx:24
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
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
TrigJetConditionConfig_smc::m_max
Gaudi::Property< std::string > m_max
Definition: TrigJetConditionConfig_smc.h:31
python.CaloScaleNoiseConfig.type
type
Definition: CaloScaleNoiseConfig.py:78
TrigJetConditionConfig_smc::checkVals
StatusCode checkVals() const
Definition: TrigJetConditionConfig_smc.cxx:30