Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef NPSTAT_HISTONDFUNCTORINSTANCES_HH_
0002 #define NPSTAT_HISTONDFUNCTORINSTANCES_HH_
0003 
0004 /*!
0005 // \file HistoNDFunctorInstances.h
0006 //
0007 // \brief Typedefs for some common uses of the StorableHistoNDFunctor template
0008 //
0009 // Author: I. Volobouev
0010 //
0011 // September 2012
0012 */
0013 
0014 #include "JetMETCorrections/InterpolationTables/interface/StorableHistoNDFunctor.h"
0015 #include "JetMETCorrections/InterpolationTables/interface/DualHistoAxis.h"
0016 
0017 namespace npstat {
0018   typedef StorableHistoNDFunctor<double, DualHistoAxis> DoubleHistoNDFunctor;
0019 
0020   typedef StorableHistoNDFunctor<double, HistoAxis> DoubleUAHistoNDFunctor;
0021 
0022   typedef StorableHistoNDFunctor<double, NUHistoAxis> DoubleNUHistoNDFunctor;
0023 
0024   typedef StorableHistoNDFunctor<float, DualHistoAxis> FloatHistoNDFunctor;
0025 
0026   typedef StorableHistoNDFunctor<float, HistoAxis> FloatUAHistoNDFunctor;
0027 
0028   typedef StorableHistoNDFunctor<float, NUHistoAxis> FloatNUHistoNDFunctor;
0029 }  // namespace npstat
0030 
0031 #endif  // NPSTAT_HISTONDFUNCTORINSTANCES_HH_