1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
// -*- C++ -*-
//
// Package: CommonTools/Utils
// Class : reco::formula::ConstantEvaluator
//
// Implementation:
// [Notes on implementation]
//
// Original Author: Christopher Jones
// Created: Wed, 23 Sep 2015 18:06:29 GMT
//
// system include files
// user include files
#include "formulaConstantEvaluator.h"
namespace reco {
namespace formula {
double ConstantEvaluator::evaluate(double const* /*iVariables*/, double const* /*iParameters*/) const {
return m_value;
}
std::vector<std::string> ConstantEvaluator::abstractSyntaxTree() const {
return std::vector<std::string>{1, std::to_string(m_value)};
}
} // namespace formula
} // namespace reco
|