ATLAS Offline Software
Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | List of all members
InDetGNNHardScatterSelection::PhotonsLoader Class Reference

#include <PhotonsLoader.h>

Inheritance diagram for InDetGNNHardScatterSelection::PhotonsLoader:
Collaboration diagram for InDetGNNHardScatterSelection::PhotonsLoader:

Public Member Functions

 PhotonsLoader (ConstituentsInputConfig)
 
std::tuple< std::string, FlavorTagDiscriminants::Inputs, std::vector< const xAOD::IParticle * > > getData (const xAOD::Vertex &vertex) const override
 
std::string getName () const override
 
ConstituentsType getType () const override
 

Protected Types

typedef xAOD::Vertex Vertex
 
typedef std::pair< std::string, double > NamedVar
 
typedef std::pair< std::string, std::vector< double > > NamedSeq
 
typedef std::vector< const xAOD::Photon * > Photons
 
typedef std::vector< const xAOD::IParticle * > Particles
 
typedef std::function< double(const xAOD::Photon *, const Vertex &)> PhotonSortVar
 
using AE = SG::AuxElement
 
using IPC = xAOD::PhotonContainer
 
using PartLinks = std::vector< ElementLink< IPC > >
 
using IPV = std::vector< const xAOD::Photon * >
 

Protected Member Functions

PhotonSortVar iparticleSortVar (ConstituentsSortOrder)
 
std::vector< const xAOD::Photon * > getPhotonsFromVertex (const xAOD::Vertex &vertex) const
 

Protected Attributes

PhotonSortVar m_iparticleSortVar
 
getter_utils::CustomSequenceGetter< xAOD::Photonm_customSequenceGetter
 
std::function< IPV(const Vertex &)> m_associator
 
ConstituentsInputConfig m_config
 
std::string m_name
 

Detailed Description

Definition at line 32 of file PhotonsLoader.h.

Member Typedef Documentation

◆ AE

Definition at line 51 of file PhotonsLoader.h.

◆ IPC

Definition at line 52 of file PhotonsLoader.h.

◆ IPV

Definition at line 54 of file PhotonsLoader.h.

◆ NamedSeq

typedef std::pair<std::string, std::vector<double> > InDetGNNHardScatterSelection::PhotonsLoader::NamedSeq
protected

Definition at line 43 of file PhotonsLoader.h.

◆ NamedVar

typedef std::pair<std::string, double> InDetGNNHardScatterSelection::PhotonsLoader::NamedVar
protected

Definition at line 42 of file PhotonsLoader.h.

◆ Particles

Definition at line 46 of file PhotonsLoader.h.

◆ PartLinks

Definition at line 53 of file PhotonsLoader.h.

◆ Photons

Definition at line 45 of file PhotonsLoader.h.

◆ PhotonSortVar

Definition at line 48 of file PhotonsLoader.h.

◆ Vertex

Definition at line 41 of file PhotonsLoader.h.

Constructor & Destructor Documentation

◆ PhotonsLoader()

InDetGNNHardScatterSelection::PhotonsLoader::PhotonsLoader ( ConstituentsInputConfig  cfg)

Definition at line 27 of file PhotonsLoader.cxx.

29  :
32  m_customSequenceGetter(getter_utils::CustomSequenceGetter<xAOD::Photon>(
33  cfg.inputs))
34  {
35  const SG::AuxElement::ConstAccessor<PartLinks> acc("photonLinks");
36  m_associator = [acc](const xAOD::Vertex& vertex) -> IPV {
37  IPV particles;
38  for (const ElementLink<IPC>& link : acc(vertex)){
39  if (!link.isValid()) {
40  throw std::logic_error("invalid particle link");
41  }
42  particles.push_back(*link);
43  }
44  return particles;
45  };
46  m_name = cfg.name;
47  }

Member Function Documentation

◆ getData()

std::tuple< std::string, FlavorTagDiscriminants::Inputs, std::vector< const xAOD::IParticle * > > InDetGNNHardScatterSelection::PhotonsLoader::getData ( const xAOD::Vertex vertex) const
overridevirtual

Implements InDetGNNHardScatterSelection::IConstituentsLoader.

Definition at line 65 of file PhotonsLoader.cxx.

66  {
67  Photons sorted_particles = getPhotonsFromVertex(vertex);
68  std::vector<const xAOD::IParticle*> sorted_particles_ip;
69  for (const auto& p: sorted_particles) {
70  sorted_particles_ip.push_back(p);
71  }
72  return std::make_tuple(m_config.output_name, m_customSequenceGetter.getFeats(vertex, sorted_particles), sorted_particles_ip);
73  }

◆ getName()

std::string InDetGNNHardScatterSelection::PhotonsLoader::getName ( ) const
overridevirtual

Implements InDetGNNHardScatterSelection::IConstituentsLoader.

Definition at line 75 of file PhotonsLoader.cxx.

75  {
76  return m_name;
77  }

◆ getPhotonsFromVertex()

std::vector< const xAOD::Photon * > InDetGNNHardScatterSelection::PhotonsLoader::getPhotonsFromVertex ( const xAOD::Vertex vertex) const
protected

Definition at line 49 of file PhotonsLoader.cxx.

52  {
53  std::vector<std::pair<double, const xAOD::Photon*>> particles;
54  for (const xAOD::Photon *tp : m_associator(vertex)) {
55  particles.push_back({m_iparticleSortVar(tp, vertex), tp});
56  }
57  std::sort(particles.begin(), particles.end(), std::greater<>());
58  std::vector<const xAOD::Photon*> only_particles;
59  for (const auto& particle: particles) {
60  only_particles.push_back(particle.second);
61  }
62  return only_particles;
63  }

◆ getType()

ConstituentsType InDetGNNHardScatterSelection::PhotonsLoader::getType ( ) const
overridevirtual

Implements InDetGNNHardScatterSelection::IConstituentsLoader.

Definition at line 78 of file PhotonsLoader.cxx.

78  {
79  return m_config.type;
80  }

◆ iparticleSortVar()

PhotonsLoader::PhotonSortVar InDetGNNHardScatterSelection::PhotonsLoader::iparticleSortVar ( ConstituentsSortOrder  config)
protected

Definition at line 13 of file PhotonsLoader.cxx.

15  {
16  typedef xAOD::Photon Ip;
17  typedef xAOD::Vertex Vertex;
18  switch(config) {
20  return [](const Ip* tp, const Vertex&) {return tp->pt();};
21  default: {
22  throw std::logic_error("Unknown sort function");
23  }
24  }
25  } // end of iparticle sort getter

Member Data Documentation

◆ m_associator

std::function<IPV(const Vertex&)> InDetGNNHardScatterSelection::PhotonsLoader::m_associator
protected

Definition at line 62 of file PhotonsLoader.h.

◆ m_config

ConstituentsInputConfig InDetGNNHardScatterSelection::IConstituentsLoader::m_config
protectedinherited

◆ m_customSequenceGetter

getter_utils::CustomSequenceGetter<xAOD::Photon> InDetGNNHardScatterSelection::PhotonsLoader::m_customSequenceGetter
protected

Definition at line 61 of file PhotonsLoader.h.

◆ m_iparticleSortVar

PhotonSortVar InDetGNNHardScatterSelection::PhotonsLoader::m_iparticleSortVar
protected

Definition at line 60 of file PhotonsLoader.h.

◆ m_name

std::string InDetGNNHardScatterSelection::IConstituentsLoader::m_name
protectedinherited

The documentation for this class was generated from the following files:
InDetGNNHardScatterSelection::ConstituentsInputConfig::output_name
std::string output_name
Definition: InnerDetector/InDetRecTools/InDetGNNHardScatterSelection/InDetGNNHardScatterSelection/ConstituentsLoader.h:47
Trk::ParticleSwitcher::particle
constexpr ParticleHypothesis particle[PARTICLEHYPOTHESES]
the array of masses
Definition: ParticleHypothesis.h:76
InDetGNNHardScatterSelection::PhotonsLoader::iparticleSortVar
PhotonSortVar iparticleSortVar(ConstituentsSortOrder)
Definition: PhotonsLoader.cxx:13
python.PerfMonSerializer.p
def p
Definition: PerfMonSerializer.py:743
InDetGNNHardScatterSelection::PhotonsLoader::Vertex
xAOD::Vertex Vertex
Definition: PhotonsLoader.h:41
ParticleTest.tp
tp
Definition: ParticleTest.py:25
SG::ConstAccessor
Helper class to provide constant type-safe access to aux data.
Definition: ConstAccessor.h:55
InDetGNNHardScatterSelection::ConstituentsInputConfig::type
ConstituentsType type
Definition: InnerDetector/InDetRecTools/InDetGNNHardScatterSelection/InDetGNNHardScatterSelection/ConstituentsLoader.h:49
config
Definition: PhysicsAnalysis/AnalysisCommon/AssociationUtils/python/config.py:1
InDetGNNHardScatterSelection::PhotonsLoader::m_iparticleSortVar
PhotonSortVar m_iparticleSortVar
Definition: PhotonsLoader.h:60
InDetGNNHardScatterSelection::PhotonsLoader::m_customSequenceGetter
getter_utils::CustomSequenceGetter< xAOD::Photon > m_customSequenceGetter
Definition: PhotonsLoader.h:61
InDetGNNHardScatterSelection::PhotonsLoader::IPV
std::vector< const xAOD::Photon * > IPV
Definition: PhotonsLoader.h:54
AthenaPoolTestRead.acc
acc
Definition: AthenaPoolTestRead.py:16
InDetGNNHardScatterSelection::PhotonsLoader::Photons
std::vector< const xAOD::Photon * > Photons
Definition: PhotonsLoader.h:45
InDetGNNHardScatterSelection::IConstituentsLoader::m_config
ConstituentsInputConfig m_config
Definition: InnerDetector/InDetRecTools/InDetGNNHardScatterSelection/InDetGNNHardScatterSelection/ConstituentsLoader.h:73
WriteCaloSwCorrections.cfg
cfg
Definition: WriteCaloSwCorrections.py:23
InDetGNNHardScatterSelection::PhotonsLoader::m_associator
std::function< IPV(const Vertex &)> m_associator
Definition: PhotonsLoader.h:62
InDetGNNHardScatterSelection::ConstituentsSortOrder::PT_DESCENDING
@ PT_DESCENDING
Trk::vertex
@ vertex
Definition: MeasurementType.h:21
xAOD::Vertex_v1
Class describing a Vertex.
Definition: Vertex_v1.h:42
xAOD::Photon_v1
Definition: Photon_v1.h:37
std::sort
void sort(typename std::reverse_iterator< DataModel_detail::iterator< DVL > > beg, typename std::reverse_iterator< DataModel_detail::iterator< DVL > > end, const Compare &comp)
Specialization of sort for DataVector/List.
Definition: DVL_algorithms.h:623
InDetGNNHardScatterSelection::IConstituentsLoader::m_name
std::string m_name
Definition: InnerDetector/InDetRecTools/InDetGNNHardScatterSelection/InDetGNNHardScatterSelection/ConstituentsLoader.h:74
LArG4FSStartPointFilter.particles
list particles
Definition: LArG4FSStartPointFilter.py:84
InDetGNNHardScatterSelection::PhotonsLoader::getPhotonsFromVertex
std::vector< const xAOD::Photon * > getPhotonsFromVertex(const xAOD::Vertex &vertex) const
Definition: PhotonsLoader.cxx:49
InDetGNNHardScatterSelection::IConstituentsLoader::IConstituentsLoader
IConstituentsLoader(ConstituentsInputConfig cfg)
Definition: InnerDetector/InDetRecTools/InDetGNNHardScatterSelection/InDetGNNHardScatterSelection/ConstituentsLoader.h:63