EICrecon
JANA based reconstruction for the EPIC detector
Loading...
Searching...
No Matches
PulseNoiseConfig.h
Go to the documentation of this file.
1// SPDX-License-Identifier: LGPL-3.0-or-later
2// Copyright (C) 2025 Simon Gardner, Minho Kim
3
4#pragma once
5
6namespace eicrecon {
7
9
10 // Number of poles in the noise filter
11 std::size_t poles = 5;
12
13 // Noise variance
14 double variance = 1;
15
16 // Noise alpha
17 double alpha = 0.5;
18
19 // Noise scale
20 double scale = 1000;
21
22 // Noise offset
23 double pedestal = 0;
24};
25
26} // namespace eicrecon
-client
Definition CalorimeterClusterRecoCoG.cc:37
Definition PulseNoiseConfig.h:8
double scale
Definition PulseNoiseConfig.h:20
double alpha
Definition PulseNoiseConfig.h:17
std::size_t poles
Definition PulseNoiseConfig.h:11
double pedestal
Definition PulseNoiseConfig.h:23
double variance
Definition PulseNoiseConfig.h:14