00001 /* 00002 * TofTopS1Cut.h 00003 * 00004 * Created on: 13-mar-2009 00005 * Author: Nicola Mori 00006 */ 00007 00010 #ifndef TOFTOPS1CUT_H_ 00011 #define TOFTOPS1CUT_H_ 00012 00013 #include "../../PamCutBase/PamCutBase.h" 00014 00015 00020 class TofTopS1Cut: public PamCut { 00021 00022 public: 00024 TofTopS1Cut(const char *cutName): PamCut(cutName){ 00025 } 00027 ~TofTopS1Cut() { 00028 } 00029 00036 int Check(PamLevel2 *event); 00037 00038 private: 00039 00040 int _nHitPmtPl[2]; // Number of hit PMT on each layer of S1 00041 00042 }; 00043 00044 #endif /* TOFTOPS1CUT_H_ */