Line data Source code
1 : //* This file is part of the MOOSE framework 2 : //* https://mooseframework.inl.gov 3 : //* 4 : //* All rights reserved, see COPYRIGHT for full restrictions 5 : //* https://github.com/idaholab/moose/blob/master/COPYRIGHT 6 : //* 7 : //* Licensed under LGPL 2.1, please see LICENSE for details 8 : //* https://www.gnu.org/licenses/lgpl-2.1.html 9 : 10 : #include "LikelihoodFunctionBase.h" 11 : 12 : InputParameters 13 684 : LikelihoodFunctionBase::validParams() 14 : { 15 684 : InputParameters params = MooseObject::validParams(); 16 684 : params.addClassDescription("Base class for likelihood functions"); 17 684 : params.registerBase("LikelihoodFunctionBase"); 18 684 : params.registerSystemAttributeName("LikelihoodFunctionBase"); 19 684 : return params; 20 0 : } 21 : 22 344 : LikelihoodFunctionBase::LikelihoodFunctionBase(const InputParameters & parameters) 23 344 : : MooseObject(parameters) 24 : { 25 344 : }