EICrecon
JANA based reconstruction for the EPIC detector
Loading...
Searching...
No Matches
JetReconstructionConfig.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2// Copyright (C) 2023 Derek Anderson, Zhongling Ji, John Lajoie
3
4#pragma once
5
6#include <string>
7#include <DD4hep/DD4hepUnits.h>
8
9namespace eicrecon {
10
12
13 float rJet = 1.0; // jet resolution parameter
14 float pJet = -1.0; // exponent for generalized kt algorithms
15 double minCstPt = 0.2 * dd4hep::GeV; // minimum pT of objects fed to cluster sequence
16 double maxCstPt = 100. * dd4hep::GeV; // maximum pT of objects fed to clsuter sequence
17 double minJetPt = 1.0 * dd4hep::GeV; // minimum jet pT
18 double ghostMaxRap = 3.5; // maximum rapidity of ghosts
19 double ghostArea = 0.01; // area per ghost
20 int numGhostRepeat = 1; // number of times a ghost is reused per grid site
21 std::string jetAlgo = "antikt_algorithm"; // jet finding algorithm
22 std::string recombScheme = "E_scheme"; // particle recombination scheme
23 std::string areaType = "active_area"; // type of area calculated
24 std::string jetContribAlgo = "Centauro"; // contributed algorithm name
25};
26
27} // namespace eicrecon
-client
Definition CalorimeterClusterRecoCoG.cc:37
Definition JetReconstructionConfig.h:11
std::string jetContribAlgo
Definition JetReconstructionConfig.h:24
std::string areaType
Definition JetReconstructionConfig.h:23
float pJet
Definition JetReconstructionConfig.h:14
std::string jetAlgo
Definition JetReconstructionConfig.h:21
std::string recombScheme
Definition JetReconstructionConfig.h:22
double ghostArea
Definition JetReconstructionConfig.h:19
double minCstPt
Definition JetReconstructionConfig.h:15
double maxCstPt
Definition JetReconstructionConfig.h:16
int numGhostRepeat
Definition JetReconstructionConfig.h:20
float rJet
Definition JetReconstructionConfig.h:13
double ghostMaxRap
Definition JetReconstructionConfig.h:18
double minJetPt
Definition JetReconstructionConfig.h:17