Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-09-28 07:02:57

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 Daniel Brandenburg
0003 
0004 #pragma once
0005 
0006 #include <string>
0007 #include <DD4hep/DD4hepUnits.h>
0008 
0009 namespace eicrecon {
0010 
0011   struct ScatteredElectronsEMinusPzConfig {
0012 
0013     // For now these are wide open
0014     // In the future the cut should depend
0015     // on the generator settings
0016     float minEMinusPz = 0.0; // GeV
0017     float maxEMinusPz = 1000000.0; // GeV
0018 
0019   };
0020 
0021 }  // end eicrecon namespace