Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-27 07:03:00

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 Alex Jentsch, Jihee Kim, Brian Page
0003 //
0004 
0005 #pragma once
0006 
0007 namespace eicrecon {
0008 
0009     struct UndoAfterBurnerConfig {
0010 
0011         bool      m_pid_assume_pion_mass = false;
0012         double    m_crossing_angle       = -0.025;
0013         double    m_pid_purity           = 0.51;
0014         bool      m_correct_beam_FX      = true;
0015         bool      m_pid_use_MC_truth     = true;
0016 
0017     };
0018 
0019 }