Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-07-05 08:15:17

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 Xin Dong
0003 
0004 #pragma once
0005 
0006 #include <string>
0007 #include <DD4hep/DD4hepUnits.h>
0008 
0009 namespace eicrecon {
0010 
0011 struct PrimaryVerticesConfig {
0012 
0013   // For now these are wide open
0014   // In the future the cut should depend
0015   // on the generator settings
0016   float maxVr   = 50.0;    // mm
0017   float maxVz   = 500.0;   // mm
0018   float maxChi2 = 10000.0; //
0019   int minNtrk   = 1;       // >=
0020   int maxNtrk   = 1000000; // <=
0021 };
0022 
0023 } // namespace eicrecon