Skip to content
Snippets Groups Projects
Commit 9eb8fb7e authored by BaM's avatar BaM
Browse files

git-svn-id: svn+ssh://svn.in2p3.fr/class@330 0e7d625b-0364-4367-a6be-d5be4a48d228
parent 1d6348a0
No related branches found
No related tags found
No related merge requests found
//
// XSModel.cxx
// CLASSSource
//
// Created by BaM on 04/05/2014.
// Copyright (c) 2014 BLG. All rights reserved.
//
#include "XSModel.hxx"
#include "CLASSHeaders.hxx"
using namespace std;
XSModel::XSModel(): CLASSObject()
{
}
#ifndef _XSMODEL_HXX
#define _XSMODEL_HXX
/*!
\file
\brief Header file for XSMODEL class.
@author BLG
@version 1.0
*/
#include "CLASSHeaders.hxx"
using namespace std;
//-----------------------------------------------------------------------------//
/*!
Define a XS Interpolator
This is the class for method related to XS prediction
see @/Models/XS/include/MLPXSModel.hxx
see @/Models/XS/include/ClosestXSModel.hxx
...
!!!!!!!!!!!!!!!!CAUTION!!!!!!!!!!!!!
Never instantiate XSModel in your CLASS input but it's derivated class
@author BLG
@version 1.0
*/
//________________________________________________________________________
class XSModel : public CLASSObject
{
public :
XSModel();
XSModel(CLASSLogger* log);
virtual EvolutionData GetCrossSections(IsotopicVector IV,double t=0) {return 0;}
};
#endif
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment