File indexing completed on 2024-04-06 12:19:21
0001 #ifndef NPSTAT_HISTONDFUNCTORINSTANCES_HH_
0002 #define NPSTAT_HISTONDFUNCTORINSTANCES_HH_
0003
0004
0005
0006
0007
0008
0009
0010
0011
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 }
0030
0031 #endif