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) 2024 Souvik Paul
0003 
0004 #pragma once
0005 
0006 #include <edm4eic/unit_system.h>
0007 
0008 namespace eicrecon {
0009 
0010 struct SiliconPulseGenerationConfig {
0011   // Parameters of Silicon signal generation
0012   std::string pulse_shape_function = "LandauPulse"; // Pulse shape function
0013   std::vector<double> pulse_shape_params = {1.0, 0.1}; // Parameters of the pulse shape function
0014   double ignore_thres      = 10; // When EDep drops below this value pulse stops
0015   double timestep          = 0.2 * edm4eic::unit::ns; // Minimum digitization time step
0016   double min_sampling_time = 0 * edm4eic::unit::ns; // Minimum sampling time
0017   int    max_time_bins     = 10000;
0018 };
0019 
0020 } // namespace eicrecon