Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-09-11 09:08:32

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2026 Derek Anderson, Dmitry Kalinkin
0003 
0004 #pragma once
0005 
0006 namespace eicrecon {
0007 
0008 struct TrackClusterMergeSplitterConfig {
0009 
0010   ///! any clusters below this will be merged
0011   double minSigCut = -1.0;
0012 
0013   ///! average of E/p distribution
0014   double avgEP = 1.0;
0015 
0016   ///! RMS of E/p distribution
0017   double sigEP = 1.0;
0018 
0019   ///! window to merge clusters
0020   double drAdd = 0.4;
0021 
0022   ///! index of surface to use for track projections
0023   uint64_t surfaceToUse = 1;
0024 
0025   ///! scale for hit-track distance
0026   double transverseEnergyProfileScale = 1.0;
0027 
0028 }; // end TrackClusterMergeSplitterConfig
0029 
0030 } // namespace eicrecon