00001 #ifndef HistoShifter_H 00002 #define HistoShifter_H 00003 00004 #include "TH1F.h" 00005 00006 class HistoShifter { 00007 public: 00008 HistoShifter (){} 00009 ~HistoShifter(){} 00010 bool insertAndShift(TH1F * in, const float& value); 00011 bool insertAndShift(TH1F * in, const float& value, const float& error); 00012 }; 00013 00014 #endif