ATLAS Offline Software
Loading...
Searching...
No Matches
NTUPUnitInterpreter.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
6// NTUPUnitInterpreter.h, (c) ATLAS Detector software
8// Author: Thomas Gillam (thomas.gillam@cern.ch)
9// ExpressionParsing library
11
12#ifndef NTUP_UNIT_INTERPRETER_H
13#define NTUP_UNIT_INTERPRETER_H
14
16
17namespace ExpressionParsing {
19 public:
21 virtual ~NTUPUnitInterpreter();
22
23 private:
24 virtual const std::map<std::string, double> &unitMap() const;
25
26 private:
27 std::map<std::string, double> m_unitStringToValue;
28 };
29}
30
31#endif // NTUP_UNIT_INTERPRETER_H
virtual const std::map< std::string, double > & unitMap() const
std::map< std::string, double > m_unitStringToValue
Namespace holding all the expression evaluation code.