#include <C0HadLateHcalEc2.h>
Inheritance diagram for FastShower::C0HadLateHcalEc2:
Public Methods | |
C0HadLateHcalEc2 (IUpdatingGaussian *) | |
C0HadLateHcalEc2 (const IConfigurer *, const std::string &) | |
virtual ISampler * | clone () const |
ISampler Interface. | |
virtual void | sample (const PolyArgs &, CoreSamples &) const |
sample and fill CoreSamples. | |
virtual double | lastValue (const CoreSamples &) const |
read back last deposit - used by monitoring code. | |
virtual void | components (IDebug::Cpts &) const |
Private Attributes | |
SP< IUpdatingGaussian > | m_peak |
|
Definition at line 20 of file C0HadLateHcalEc2.cxx. Referenced by clone().
|
|
Definition at line 24 of file C0HadLateHcalEc2.cxx.
|
|
ISampler Interface.
Implements FastShower::ISampler. Definition at line 31 of file C0HadLateHcalEc2.cxx. References C0HadLateHcalEc2().
00031 {return new C0HadLateHcalEc2(*this);} |
|
sample and fill CoreSamples.
Implements FastShower::ISampler. Definition at line 33 of file C0HadLateHcalEc2.cxx. References FastShower::CoreSamples::fill(), and m_peak.
00033 { 00034 cs.fill(this,m_peak->sample(0.0, 0, 1.0, 100, pa)); 00035 } |
|
read back last deposit - used by monitoring code.
Implements FastShower::ISampler. Definition at line 36 of file C0HadLateHcalEc2.cxx. References FastShower::CoreSamples::give().
00036 { 00037 return cs.give(this); 00038 } |
|
Reimplemented from FastShower::DebugBase. Definition at line 39 of file C0HadLateHcalEc2.cxx. References m_peak.
00039 { 00040 v.push_back(m_peak); 00041 } |
|
Definition at line 75 of file C0HadLateHcalEc2.h. Referenced by components(), and sample(). |