Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:19:21

0001 #ifndef NPSTAT_INTERPOLATIONFUNCTORINSTANCES_HH_
0002 #define NPSTAT_INTERPOLATIONFUNCTORINSTANCES_HH_
0003 
0004 /*!
0005 // \file InterpolationFunctorInstances.h
0006 //
0007 // \brief Typedefs for some common uses of the StorableInterpolationFunctor
0008 //        template
0009 //
0010 // Author: I. Volobouev
0011 //
0012 // September 2012
0013 */
0014 
0015 #include "JetMETCorrections/InterpolationTables/interface/StorableInterpolationFunctor.h"
0016 #include "JetMETCorrections/InterpolationTables/interface/DualAxis.h"
0017 
0018 namespace npstat {
0019   typedef StorableInterpolationFunctor<double, DualAxis> DoubleInterpolationFunctor;
0020 
0021   typedef StorableInterpolationFunctor<double, UniformAxis> DoubleUAInterpolationFunctor;
0022 
0023   typedef StorableInterpolationFunctor<double, GridAxis> DoubleNUInterpolationFunctor;
0024 
0025   typedef StorableInterpolationFunctor<float, DualAxis> FloatInterpolationFunctor;
0026 
0027   typedef StorableInterpolationFunctor<float, UniformAxis> FloatUAInterpolationFunctor;
0028 
0029   typedef StorableInterpolationFunctor<float, GridAxis> FloatNUInterpolationFunctor;
0030 }  // namespace npstat
0031 
0032 #endif  // NPSTAT_INTERPOLATIONFUNCTORINSTANCES_HH_