Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:09:46

0001 #ifndef HistoShifter_H
0002 #define HistoShifter_H
0003 
0004 #include "TH1F.h"
0005 
0006 class HistoShifter {
0007 public:
0008   HistoShifter() {}
0009   ~HistoShifter() {}
0010   bool insertAndShift(TH1F* in, const float& value);
0011   bool insertAndShift(TH1F* in, const float& value, const float& error);
0012 };
0013 
0014 #endif