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