CbmRoot
Loading...
Searching...
No Matches
LandauTable.h
Go to the documentation of this file.
1/* Copyright (C) 2023 FIAS Frankfurt Institute for Advanced Studies, Frankfurt / Main
2 SPDX-License-Identifier: GPL-3.0-only
3 Authors: Felix Weiglhofer [committer] */
4#ifndef CBM_ALGO_DATA_STS_LANDAUTABLE_H
5#define CBM_ALGO_DATA_STS_LANDAUTABLE_H
6
7#include "Definitions.h"
8#include "compat/Filesystem.h"
9
10#include <vector>
11
12namespace cbm::algo::sts
13{
14
15 struct LandauTable {
16
17 static LandauTable FromFile(fs::path path);
18
19 std::vector<f32> values;
21 };
22
23} // namespace cbm::algo::sts
24
25#endif // CBM_ALGO_DATA_STS_LANDAUTABLE_H
float f32
Definition Definitions.h:24
static LandauTable FromFile(fs::path path)
std::vector< f32 > values
Definition LandauTable.h:19