#include <C0HadLateHcalBar2.h>
Inheritance diagram for FastShower::C0HadLateHcalBar2:
Public Methods | |
C0HadLateHcalBar2 (IUpdatingGaussian *) | |
C0HadLateHcalBar2 (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 C0HadLateHcalBar2.cxx. Referenced by clone().
|
|
Definition at line 24 of file C0HadLateHcalBar2.cxx.
|
|
ISampler Interface.
Implements FastShower::ISampler. Definition at line 31 of file C0HadLateHcalBar2.cxx. References C0HadLateHcalBar2().
00031 { 00032 return new C0HadLateHcalBar2(*this); 00033 } |
|
sample and fill CoreSamples.
Implements FastShower::ISampler. Definition at line 35 of file C0HadLateHcalBar2.cxx. References FastShower::CoreSamples::fill(), and m_peak.
00035 { 00036 cs.fill(this,m_peak->sample(0.0, 100, 1.0, 100, pa)); 00037 } |
|
read back last deposit - used by monitoring code.
Implements FastShower::ISampler. Definition at line 38 of file C0HadLateHcalBar2.cxx. References FastShower::CoreSamples::give().
00038 { 00039 return cs.give(this); 00040 } |
|
Reimplemented from FastShower::DebugBase. Definition at line 41 of file C0HadLateHcalBar2.cxx. References m_peak.
00041 { 00042 v.push_back(m_peak); 00043 } |
|
Definition at line 75 of file C0HadLateHcalBar2.h. Referenced by components(), and sample(). |