Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-04 08:02:14

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2025 Simon Gardner
0003 
0004 #pragma once
0005 
0006 namespace eicrecon {
0007 
0008 struct PulseNoiseConfig {
0009 
0010   // Number of poles in the noise filter
0011   size_t poles = 5;
0012 
0013   // Noise variance
0014   double variance = 1;
0015 
0016   // Noise alpha
0017   double alpha = 0.5;
0018 
0019   // Noise scale
0020   double scale = 1000;
0021 
0022 };
0023 
0024 } // namespace eicrecon