#include <ElectronEcAcceptor.h>
Inheritance diagram for FastShower::ElectronEcAcceptor:
Public Methods | |
ElectronEcAcceptor () | |
ElectronEcAcceptor (const IConfigurer *, const std::string &) | |
virtual IAcceptor * | clone () const |
Implementation of the IAcceptor interface. | |
virtual bool | accept (const ParticleParameters &) const |
|
Definition at line 8 of file ElectronEcAcceptor.cxx. Referenced by clone().
00008 : 00009 IAcceptor(), DebugBase("ElectronEcAcceptor"){} |
|
|
|
Implementation of the IAcceptor interface.
Implements FastShower::IAcceptor. Definition at line 11 of file ElectronEcAcceptor.cxx. References ElectronEcAcceptor().
00011 { 00012 return new ElectronEcAcceptor(*this); 00013 } |
|
Implements FastShower::IAcceptor. Definition at line 15 of file ElectronEcAcceptor.cxx. References FastShower::ParticleParameters::isElectron(), and FastShower::ParticleParameters::region().
00015 {
00016 return (pp.isElectron() && pp.region()==1);
00017 }
|