Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:17:41

0001 
0002 // Copyright 2020, Jefferson Science Associates, LLC.
0003 // Subject to the terms in the LICENSE file found in the top-level directory.
0004 
0005 #ifndef JANA2_JTESTCALIBRATIONSERVICE_H
0006 #define JANA2_JTESTCALIBRATIONSERVICE_H
0007 
0008 #include <JANA/JService.h>
0009 
0010 struct JTestCalibrationService: JService {
0011 
0012     Parameter<double> m_calibration_value{this, "calibration_value", 7.0, "Dummy calibration value"};
0013 
0014     double getCalibration() {
0015         return *m_calibration_value;
0016     }
0017 
0018 };
0019 
0020 #endif //JANA2_JTESTCALIBRATIONSERVICE_H