Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:19:19

0001 // -*- C++ -*-
0002 //
0003 // This file is part of LHAPDF
0004 // Copyright (C) 2012-2024 The LHAPDF collaboration (see AUTHORS for details)
0005 //
0006 #pragma once
0007 #ifndef LHAPDF_ErrExtrapolator_H
0008 #define LHAPDF_ErrExtrapolator_H
0009 
0010 #include "LHAPDF/Extrapolator.h"
0011 
0012 namespace LHAPDF {
0013 
0014   /// Extrapolates using the closest point on the Grid.
0015   class ErrExtrapolator : public Extrapolator {
0016   public:
0017 
0018     double extrapolateXQ2(int id, double x, double q2) const;
0019 
0020   };
0021 
0022 
0023 }
0024 #endif