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#include <vector>
10
12class eflowRecTrack;
13class eflowRecCluster;
14
15struct PFData
16 {
18 std::vector<eflowRecTrack *> tracks;
19 std::vector<eflowRecCluster *> clusters;
21
22 unsigned int nMatches = 0;
23 unsigned int nOrigCaloObj = 0;
24 };
25
26#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:17
unsigned int nOrigCaloObj
Definition PFData.h:23
std::vector< eflowRecTrack * > tracks
Definition PFData.h:18
eflowRec::EtaPhiLUT clusterLUT
Definition PFData.h:20
unsigned int nMatches
Definition PFData.h:22
std::vector< eflowRecCluster * > clusters
Definition PFData.h:19