From 9b41ceaf696d1aa476eaf9646625fff9a78cff44 Mon Sep 17 00:00:00 2001 From: Karl Kosack Date: Wed, 23 Mar 2016 16:12:47 +0100 Subject: [PATCH] re-enabled calibration --- examples/read_hessio_single_tel.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/read_hessio_single_tel.py b/examples/read_hessio_single_tel.py index ddcaf64d7f9..0259bb7f746 100644 --- a/examples/read_hessio_single_tel.py +++ b/examples/read_hessio_single_tel.py @@ -40,8 +40,7 @@ def apply_mc_calibration(adcs, tel_id): apply basic calibration """ peds, gains = get_mc_calibration_coeffs(tel_id) - return adcs -# return (adcs - peds) * gains => DISABLED!! DOES NOT WORK + return (adcs - peds) * gains if __name__ == '__main__':