Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2026-04-17 08:20:51

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4EIC_JetDATA_H
0004 #define EDM4EIC_JetDATA_H
0005 
0006 #include "edm4hep/Vector3f.h"
0007 #include <cstdint>
0008 
0009 namespace edm4eic {
0010 
0011 
0012 /** @class JetData
0013  *  A reconstructed jet, inspired by the FastJet PseudoJet
0014  *  @author: D. Anderson
0015  */
0016 class JetData {
0017 public:
0018   std::uint32_t type{}; ///< Jet type as enumerated in fastjet::JetAlgorithm
0019   float area{}; ///< Jet area
0020   float energy{}; ///< Jet energy [GeV]
0021   float backgroundEnergyDensity{}; ///< Background energy density [GeV/area]
0022   ::edm4hep::Vector3f momentum{}; ///< Jet 3-momentum [GeV]
0023 
0024   unsigned int constituents_begin{};
0025   unsigned int constituents_end{};
0026 };
0027 
0028 
0029 namespace v890 {
0030 using JetData = edm4eic::JetData;
0031 } // namespace v890
0032 
0033 
0034 } // namespace edm4eic
0035 
0036 
0037 #endif