ATLAS Offline Software
ZtoLeptonFilter.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #ifndef GENERATORFILTERS_ZTOLEPTONFILTER_H
6 #define GENERATORFILTERS_ZTOLEPTONFILTER_H
7 
9 
12 class ZtoLeptonFilter : public GenFilter {
13 public:
14 
15  ZtoLeptonFilter(const std::string& name, ISvcLocator* pSvcLocator);
16  virtual StatusCode filterEvent();
17 
18 private:
19 
20  double m_Ptmin;
21  double m_EtaRange;
22 
23 };
24 
25 #endif
GenFilter.h
ZtoLeptonFilter::m_EtaRange
double m_EtaRange
Definition: ZtoLeptonFilter.h:21
ZtoLeptonFilter::ZtoLeptonFilter
ZtoLeptonFilter(const std::string &name, ISvcLocator *pSvcLocator)
Definition: ZtoLeptonFilter.cxx:8
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
ZtoLeptonFilter::m_Ptmin
double m_Ptmin
Definition: ZtoLeptonFilter.h:20
name
std::string name
Definition: Control/AthContainers/Root/debug.cxx:195
ZtoLeptonFilter::filterEvent
virtual StatusCode filterEvent()
Definition: ZtoLeptonFilter.cxx:16
ZtoLeptonFilter
Filter and look for Z's decaying to leptons.
Definition: ZtoLeptonFilter.h:12