Belle II Software prerelease-11-00-00a
TOPWaveformFeatureExtractorModule.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8
9#pragma once
10
11#include <framework/core/Module.h>
12#include <string>
13
14namespace Belle2 {
19
29
30 public:
31
36
41 virtual void initialize() override;
42
46 virtual void event() override;
47
48 private:
49
51 int m_threshold = 0;
52 int m_hysteresis = 0;
54 bool m_setIntegral = false;
55
56 };
57
59} // Belle2 namespace
60
Module()
Constructor.
Definition Module.cc:30
int m_hysteresis
pulse height threshold hysteresis [ADC counts]
bool m_setIntegral
calculate and set integral for FW-extracted hits
std::string m_inputRawDigitsName
name of TOPRawDigit store array
int m_thresholdCount
minimal number of samples above threshold
virtual void initialize() override
Initialize the Module.
Abstract base class for different kinds of events.