#ifndef TFgdStoppingProtonControlSample_h #define TFgdStoppingProtonControlSample_h #include "IGeomInfo.hxx" #include "IFGDGeom.hxx" #include "IFGDTimeBinner.hxx" #include "TH1F.h" #include // Class to select events that have protons that stop in FGD1 or FGD2. class IFgdStoppingProtonControlSample : public IControlSampleBase { public: IFgdStoppingProtonControlSample(); ~IFgdStoppingProtonControlSample(){} private: IFGDTimeBinner* fgdTimeBinner; bool IsEventSelectedInternal(COMET::ICOMETEvent& event) ; void InitHistograms(); double fProtonPullMax; double fOtherPullMin; }; #endif