GENIEGenerator
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
UnitUtils.h
Go to the documentation of this file.
1 //____________________________________________________________________________
2 /*!
3 
4 \namespace genie::utils::units
5 
6 \brief Simple unit system utilities
7 
8 \author Costas Andreopoulos <c.andreopoulos \at cern.ch>
9  University of Liverpool
10 
11 \created May 06, 2004
12 
13 \cpright Copyright (c) 2003-2024, The GENIE Collaboration
14  For the full text of the license visit http://copyright.genie-mc.org
15 */
16 //____________________________________________________________________________
17 
18 #ifndef _UNIT_UTILS_H_
19 #define _UNIT_UTILS_H_
20 
21 #include <string>
22 using std::string;
23 
24 namespace genie {
25 namespace utils {
26 
27 namespace units {
28 
29  double UnitFromString(string u);
30 
31 } // namespace units
32 } // namespace utils
33 } // namespace genie
34 
35 #endif // _UNIT_UTILS_H_
double UnitFromString(string u)
Definition: UnitUtils.cxx:18