00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef HxIndxNJetHisto_H
00015 #define HxIndxNJetHisto_H
00016
00017 #include "HxIndxHisto.h"
00018
00019 class indexedNJetHisto : public indexedHisto<float,double> {
00020 public:
00021 void create(HxString indexFile, double scale)
00022 { indexedHisto<float,double>::create(indexFile, scale); }
00023
00024 double scale() const
00025 { return indexedHisto<float,double>::header(); }
00026
00027 };
00028
00029 #endif