ATLAS Offline Software
Loading...
Searching...
No Matches
PFData.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef EFLOWREC_PFDATA_H
6#define EFLOWREC_PFDATA_H
7
8#include "EtaPhiLUT.h"
9
11class eflowRecTrack;
12class eflowRecCluster;
13
14struct PFData
15 {
17 std::vector<eflowRecTrack *> tracks;
18 std::vector<eflowRecCluster *> clusters;
20
21 unsigned int nMatches = 0;
22 unsigned int nOrigCaloObj = 0;
23 };
24
25#endif
This class extends the information about a xAOD::CaloCluster.
This class extends the information about a xAOD::Track.
2D look up table for eflowRecClusters
Definition EtaPhiLUT.h:26
eflowCaloObjectContainer * caloObjects
Definition PFData.h:16
unsigned int nOrigCaloObj
Definition PFData.h:22
std::vector< eflowRecTrack * > tracks
Definition PFData.h:17
eflowRec::EtaPhiLUT clusterLUT
Definition PFData.h:19
unsigned int nMatches
Definition PFData.h:21
std::vector< eflowRecCluster * > clusters
Definition PFData.h:18