ATLAS Offline Software
DirectPhotonFilter.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
3 */
4 #ifndef GENERATORFILTERS_DIRECTPHOTONFILTER_H
5 #define GENERATORFILTERS_DIRECTPHOTONFILTER_H
6 
8 
11 class DirectPhotonFilter : public GenFilter {
12 public:
13 
14  DirectPhotonFilter(const std::string& name, ISvcLocator* pSvcLocator);
15  virtual StatusCode filterInitialize();
16  virtual StatusCode filterEvent();
17 
18 private:
19 
20  std::vector<double> m_Ptmin;
21  std::vector<double> m_Ptmax;
22  double m_EtaRange;
23  size_t m_NPhotons;
26 
27 };
28 
29 #endif
DirectPhotonFilter::DirectPhotonFilter
DirectPhotonFilter(const std::string &name, ISvcLocator *pSvcLocator)
Definition: DirectPhotonFilter.cxx:10
DirectPhotonFilter::m_Ptmax
std::vector< double > m_Ptmax
Definition: DirectPhotonFilter.h:21
DirectPhotonFilter::m_AllowSUSYDecay
bool m_AllowSUSYDecay
Definition: DirectPhotonFilter.h:24
GenFilter.h
DirectPhotonFilter::m_OrderPhotons
bool m_OrderPhotons
Definition: DirectPhotonFilter.h: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
DirectPhotonFilter::filterEvent
virtual StatusCode filterEvent()
Definition: DirectPhotonFilter.cxx:57
DirectPhotonFilter
Definition: DirectPhotonFilter.py:1
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
DirectPhotonFilter::m_NPhotons
size_t m_NPhotons
Definition: DirectPhotonFilter.h:23
DirectPhotonFilter::m_EtaRange
double m_EtaRange
Definition: DirectPhotonFilter.h:22
DirectPhotonFilter::filterInitialize
virtual StatusCode filterInitialize()
Definition: DirectPhotonFilter.cxx:22
DirectPhotonFilter::m_Ptmin
std::vector< double > m_Ptmin
Definition: DirectPhotonFilter.h:20