ComPWA
Common Partial-Wave-Analysis Framework
GenevaResult.hpp
Go to the documentation of this file.
1 // Copyright (c) 2015, 2017 The ComPWA Team.
2 // This file is part of the ComPWA framework, check
3 // https://github.com/ComPWA/ComPWA/license.txt for details.
4 
5 #ifndef COMPWA_OPTIMIZER_GENEVARESULT_HPP_
6 #define COMPWA_OPTIMIZER_GENEVARESULT_HPP_
7 
8 #include "Core/FitResult.hpp"
9 
10 namespace ComPWA {
11 namespace Optimizer {
12 namespace Geneva {
13 
14 struct GenevaResult : public FitResult {
15  GenevaResult() = default;
16  GenevaResult(FitResult Result) : FitResult(Result) {}
17  // TODO: add more properties here
18 };
19 
20 } // namespace Geneva
21 } // namespace Optimizer
22 } // namespace ComPWA
23 
24 #endif
Data structure which resembles a general fit result.
Definition: FitResult.hpp:19