Back to home page

EIC code displayed by LXR

 
 

    


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

0001 // SPDX-License-Identifier: LGPL-3.0-or-later
0002 // Copyright (C) 2024 Derek Anderson
0003 
0004 #pragma once
0005 
0006 #include <string>
0007 
0008 namespace eicrecon {
0009 
0010   struct TrackClusterMergeSplitterConfig {
0011 
0012     std::string idCalo = "HcalBarrel_ID";  // id of calorimeter to match projections to
0013 
0014     double minSigCut = -1.;  // min significance
0015     double avgEP     = 1.0;  // mean E/p
0016     double sigEP     = 1.0;  // rms of E/p
0017     double drAdd     = 0.4;  // window to add clusters
0018     double sampFrac  = 1.0;  // allows for sampling fraction correction
0019 
0020     // scale for hit-track distance
0021     double transverseEnergyProfileScale = 1.0;
0022 
0023   };  // end TrackClusterMergeSplitterConfig
0024 
0025 }  // end eicrecon namespace