Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-10-13 09:14:53

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2025 Chun Yuen Tsang
0003 
0004 #pragma once
0005 
0006 namespace eicrecon {
0007 struct LGADHitCalibrationConfig {
0008   // parameters that convert ADC to EDep
0009   double c_slope = 1.175844e-6, c_intercept = 0;
0010   // parameters that convert TDC to hit time (ns)
0011   double t_slope = 0.024319882, t_intercept = 0.04314;
0012 };
0013 } // namespace eicrecon