Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-09-16 08:53:36

0001 // AUTOMATICALLY GENERATED FILE - DO NOT EDIT
0002 
0003 #ifndef EDM4HEP_VertexDATA_H
0004 #define EDM4HEP_VertexDATA_H
0005 
0006 #include "edm4hep/CovMatrix3f.h"
0007 #include "edm4hep/Vector3f.h"
0008 #include <cstdint>
0009 
0010 namespace edm4hep {
0011 
0012 
0013 /** @class VertexData
0014  *  Vertex
0015  *  @author: EDM4hep authors
0016  */
0017 class VertexData {
0018 public:
0019   std::uint32_t type{}; ///< Flagword that defines the type of the vertex, see reserved bits for more information
0020   float chi2{}; ///< chi-squared of the vertex fit
0021   std::int32_t ndf{}; ///< number of degrees of freedom of the vertex fit
0022   ::edm4hep::Vector3f position{}; ///< [mm] position of the vertex
0023   ::edm4hep::CovMatrix3f covMatrix{}; ///< covariance matrix of the position
0024   std::int32_t algorithmType{}; ///< type code for the algorithm that has been used to create the vertex
0025 
0026   unsigned int parameters_begin{};
0027   unsigned int parameters_end{};
0028   unsigned int particles_begin{};
0029   unsigned int particles_end{};
0030 };
0031 
0032 } // namespace edm4hep
0033 
0034 
0035 #endif