Warning, file /include/EICrecon/algorithms/reco/JetReconstructionConfig.h was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004 #pragma once
0005
0006 #include <string>
0007 #include <DD4hep/DD4hepUnits.h>
0008
0009 namespace eicrecon {
0010
0011 struct JetReconstructionConfig {
0012
0013 float rJet = 1.0;
0014 float pJet = -1.0;
0015 double minCstPt = 0.2 * dd4hep::GeV;
0016 double maxCstPt = 100. * dd4hep::GeV;
0017 double minJetPt = 1.0 * dd4hep::GeV;
0018 double ghostMaxRap = 3.5;
0019 double ghostArea = 0.01;
0020 int numGhostRepeat = 1;
0021 std::string jetAlgo = "antikt_algorithm";
0022 std::string recombScheme = "E_scheme";
0023 std::string areaType = "active_area";
0024 std::string jetContribAlgo = "Centauro";
0025
0026 };
0027
0028 }