AlcapDAQ  1
EvdE.h
Go to the documentation of this file.
1 #ifndef EvdE_h__
2 #define EvdE_h__
3 
4 #include "FillHistBase.h"
5 
6 class TGlobalData;
7 class TSetupData;
8 
9 class EvdE : public FillHistBase{
10  public:
11  EvdE(char *HistogramDirectoryName);
12  EvdE(char *HistogramDirectoryName, double t0, double t1);
13  ~EvdE();
14 
15  private:
16  double tCoincidence; // Time cut to look for a thin hit on either side of a thick
17  double tPP; // Pileup window time (no two muons allowed within this window of each other)
18  double tStop;
19  double tStart;
20  double adcCutThick[2];
21  double adcCutThin[2];
22  double eCutThick[2];
23  double eCutThin[2];
24  double slopeThick[2];
25  double offsetThick[2];
26  double slopeThin[2][4];
27  double offsetThin[2][4];
29 };
30 
31 #endif
32