1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef HistoShifter_H
#define HistoShifter_H
#include "TH1F.h"
class HistoShifter {
public:
HistoShifter() {}
~HistoShifter() {}
bool insertAndShift(TH1F* in, const float& value);
bool insertAndShift(TH1F* in, const float& value, const float& error);
};
#endif
|