mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2024-11-10 08:55:37 +00:00
104 lines
2.7 KiB
C++
104 lines
2.7 KiB
C++
|
/*
|
||
|
* EffectiveMass.cpp, part of LatAnalyze 3
|
||
|
*
|
||
|
* Copyright (C) 2013 - 2020 Antonin Portelli
|
||
|
*
|
||
|
* LatAnalyze 3 is free software: you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation, either version 3 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* LatAnalyze 3 is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with LatAnalyze 3. If not, see <http://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
#include <LatAnalyze/Physics/EffectiveMass.hpp>
|
||
|
#include <LatAnalyze/includes.hpp>
|
||
|
|
||
|
using namespace std;
|
||
|
using namespace Latan;
|
||
|
|
||
|
// constructors ////////////////////////////////////////////////////////////////
|
||
|
EffectiveMass::EffectiveMass(const CorrelatorType type)
|
||
|
: type_(type)
|
||
|
{}
|
||
|
|
||
|
// access //////////////////////////////////////////////////////////////////////
|
||
|
CorrelatorType EffectiveMass::getType(void) const
|
||
|
{
|
||
|
return type_;
|
||
|
}
|
||
|
|
||
|
void EffectiveMass::setType(const CorrelatorType type)
|
||
|
{
|
||
|
type_ = type;
|
||
|
}
|
||
|
|
||
|
// compute effective mass //////////////////////////////////////////////////////
|
||
|
DVec EffectiveMass::operator()(const DVec &corr) const
|
||
|
{
|
||
|
Index nt = corr.size();
|
||
|
DVec em;
|
||
|
|
||
|
if (nt < 2)
|
||
|
{
|
||
|
LATAN_ERROR(Size, "input vector has less than 2 elements");
|
||
|
}
|
||
|
switch (type_)
|
||
|
{
|
||
|
case CorrelatorType::undefined:
|
||
|
LATAN_ERROR(Argument, "correlator type is undefined");
|
||
|
break;
|
||
|
case CorrelatorType::exp:
|
||
|
em.resize(nt - 1);
|
||
|
for (Index t = 1; t < nt; ++t)
|
||
|
{
|
||
|
em(t - 1) = log(corr(t - 1)/corr(t));
|
||
|
}
|
||
|
break;
|
||
|
case CorrelatorType::cosh:
|
||
|
em.resize(nt - 2);
|
||
|
for (Index t = 1; t < nt - 1; ++t)
|
||
|
{
|
||
|
em(t - 1) = acosh((corr(t - 1) + corr(t + 1))/(2.*corr(t)));
|
||
|
}
|
||
|
break;
|
||
|
case CorrelatorType::sinh:
|
||
|
em.resize(nt - 2);
|
||
|
for (Index t = 1; t < nt - 1; ++t)
|
||
|
{
|
||
|
em(t - 1) = acosh((corr(t - 1) + corr(t + 1))/(2.*corr(t)));
|
||
|
}
|
||
|
break;
|
||
|
case CorrelatorType::linear:
|
||
|
em.resize(nt - 1);
|
||
|
for (Index t = 0; t < nt - 1; ++t)
|
||
|
{
|
||
|
em(t) = corr(t) - corr(t - 1);
|
||
|
}
|
||
|
break;
|
||
|
case CorrelatorType::cst:
|
||
|
em = corr;
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
return em;
|
||
|
}
|
||
|
|
||
|
DMatSample EffectiveMass::operator()(const DMatSample &corr) const
|
||
|
{
|
||
|
DMatSample em(corr.size());
|
||
|
|
||
|
FOR_STAT_ARRAY(em, s)
|
||
|
{
|
||
|
em[s] = (*this)(corr[s]);
|
||
|
}
|
||
|
|
||
|
return em;
|
||
|
}
|