ComPWA
Common Partial-Wave-Analysis Framework
Value.cpp
Go to the documentation of this file.
1 // Copyright (c) 2013, 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 #include "Value.hpp"
6 
7 namespace ComPWA {
8 namespace FunctionTree {
9 
10 template class Value<std::complex<double>>;
11 template class Value<double>;
12 template class Value<int>;
13 template class Value<std::vector<std::complex<double>>>;
14 template class Value<std::vector<double>>;
15 template class Value<std::vector<int>>;
16 
17 } // namespace FunctionTree
18 } // namespace ComPWA
Template implementation of Parameter for simple values.