AlcapDAQ  1
Normalization.h
Go to the documentation of this file.
1 #ifndef Normalization_h__
2 #define Normalization_h__
3 
4 #include "FillHistBase.h"
5 
6 #include <vector>
7 
8 class TGlobalData;
9 class TSetupData;
10 
11 class Normalization : public FillHistBase{
12  public:
13  Normalization(char *HistogramDirectoryName, int threshold);
15 
16  private:
17  static unsigned int N_MU;
18 
19  unsigned int fNMuons;
21 
22  public:
24  static unsigned int GetMuonCount();
25 
26  private:
27  bool IsOverThreshold(std::vector<TPulseIsland*>::iterator&);
28 };
29 
30 #endif
31