ATLAS Offline Software
xAODPhotonFilter.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef GENERATORFILTERS_XAODPHOTONFILTER_H
6 #define GENERATORFILTERS_XAODPHOTONFILTER_H
7 
9 
13 class xAODPhotonFilter : public GenFilter {
14 public:
15 
16  xAODPhotonFilter(const std::string& name, ISvcLocator* pSvcLocator);
17  virtual StatusCode filterEvent();
18 
19 private:
20 
21  double m_Ptmin;
22  double m_Ptmax;
23  double m_EtaRange;
25 
26 };
27 
28 #endif
GenFilter.h
xAODPhotonFilter::filterEvent
virtual StatusCode filterEvent()
Definition: xAODPhotonFilter.cxx:25
GenFilter
Base class for event generator filtering modules.
Definition: GenFilter.h:30
EL::StatusCode
::StatusCode StatusCode
StatusCode definition for legacy code.
Definition: PhysicsAnalysis/D3PDTools/EventLoop/EventLoop/StatusCode.h:22
xAODPhotonFilter::m_EtaRange
double m_EtaRange
Definition: xAODPhotonFilter.h:23
xAODPhotonFilter
Filters and looks for photons.
Definition: xAODPhotonFilter.h:13
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
xAODPhotonFilter::m_NPhotons
int m_NPhotons
Definition: xAODPhotonFilter.h:24
xAODPhotonFilter::m_Ptmax
double m_Ptmax
Definition: xAODPhotonFilter.h:22
xAODPhotonFilter::m_Ptmin
double m_Ptmin
Definition: xAODPhotonFilter.h:21
xAODPhotonFilter::xAODPhotonFilter
xAODPhotonFilter(const std::string &name, ISvcLocator *pSvcLocator)
Definition: xAODPhotonFilter.cxx:12