ComPWA
Common Partial-Wave-Analysis Framework
ChiOneD.cpp
Go to the documentation of this file.
1 // Copyright (c) 2013 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 #include "ChiOneD.hpp"
6 
7 #include "Core/Function.hpp"
8 
9 namespace ComPWA {
10 
11 namespace Estimator {
12 namespace ChiOneD {
13 
14 ChiOneD::ChiOneD(std::shared_ptr<ComPWA::Intensity> Intensity_,
15  const Data::DataSet &DataSample_)
16  : Intensity(Intensity_), DataSample(DataSample_) {}
17 
18 double ChiOneD::evaluate() noexcept {
19  throw std::runtime_error("ChiOneD::evaluate: currently not implemented!");
20 }
21 
22 } /* namespace ChiOneD */
23 } /* namespace Estimator */
24 } /* namespace ComPWA */
This class template provides the interface to implementations, which estimate the "closeness" of a Fu...
Definition: Estimator.hpp:23
This class calculates a simple of a intensity and a dataset.
Interface template for a general Function of the form OutputType Function(InputTypes) The concept clo...
Definition: Function.hpp:24