2019-04-26 21:21:50 +02:00
|
|
|
# See LICENSE for licensing information.
|
|
|
|
|
#
|
2021-01-22 20:23:28 +01:00
|
|
|
# Copyright (c) 2016-2021 Regents of the University of California and The Board
|
2019-06-14 17:43:41 +02:00
|
|
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
|
|
|
|
# (acting for and on behalf of Oklahoma State University)
|
|
|
|
|
# All rights reserved.
|
2019-04-26 21:21:50 +02:00
|
|
|
#
|
2018-10-12 18:44:36 +02:00
|
|
|
|
|
|
|
|
class drc_value():
|
2020-04-15 20:24:28 +02:00
|
|
|
"""
|
2018-10-12 18:44:36 +02:00
|
|
|
A single DRC value.
|
|
|
|
|
"""
|
|
|
|
|
def __init__(self, value):
|
|
|
|
|
self.value = value
|
|
|
|
|
|
|
|
|
|
def __call__(self, *args):
|
|
|
|
|
"""
|
|
|
|
|
Return the value.
|
|
|
|
|
"""
|
|
|
|
|
return self.value
|
2020-11-03 15:29:17 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-12 18:44:36 +02:00
|
|
|
|