Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-05-12 08:02:27

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2025 Simon Gardner
0003 
0004 #pragma once
0005 
0006 #include <edm4eic/unit_system.h>
0007 
0008 namespace eicrecon {
0009 
0010 struct PulseCombinerConfig {
0011   double minimum_separation =
0012       50 * edm4eic::unit::ns; // Minimum distance between pulses to keep separate
0013   std::string readout       = "";
0014   std::string combine_field = "";
0015 };
0016 
0017 } // namespace eicrecon