File indexing completed on 2025-01-18 09:14:07
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #include <DD4hep/InstanceCount.h>
0016 #include <DDDigi/DigiSegmentation.h>
0017 #include <DDDigi/DigiRandomGenerator.h>
0018 #include <DDDigi/noise/DigiExponentialNoise.h>
0019
0020 using namespace dd4hep::digi;
0021
0022
0023 DigiExponentialNoise::DigiExponentialNoise(const DigiKernel& krnl, const std::string& nam)
0024 : DigiSignalProcessor(krnl, nam)
0025 {
0026 declareProperty("tau", m_tau);
0027 InstanceCount::increment(this);
0028 }
0029
0030
0031 DigiExponentialNoise::~DigiExponentialNoise() {
0032 InstanceCount::decrement(this);
0033 }
0034
0035
0036 double DigiExponentialNoise::operator()(DigiCellContext& context) const {
0037 return context.context.randomGenerator().exponential(m_tau);
0038 }