Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-04-03 08:49:41

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 Souvik Paul
0003 
0004 #pragma once
0005 
0006 #include <DD4hep/DD4hepUnits.h>
0007 
0008 namespace eicrecon {
0009 
0010 struct LGADChargeSharingConfig {
0011   // Parameters of AC-LGAD signal generation
0012   double sigma_sharingx;
0013   double sigma_sharingy;
0014 
0015   std::string readout;
0016   std::string same_sensor_condition;
0017   std::vector<std::string> neighbor_fields;
0018 };
0019 
0020 } // namespace eicrecon