00001 /* 00002 * BlindCutCollection.h 00003 * 00004 * Created on: 10-mar-2009 00005 * Author: Nicola Mori 00006 */ 00007 00010 #ifndef BLINDCUTCOLLECTION_H_ 00011 #define BLINDCUTCOLLECTION_H_ 00012 00013 #include "../../PamCutBase/PamCutBase.h" 00014 00020 class BlindCutCollection: public PamCutCollection { 00021 public: 00026 BlindCutCollection(const char *collectionName) : 00027 PamCutCollection(collectionName) { 00028 } 00029 00031 ~BlindCutCollection() { 00032 } 00033 00044 int Check(PamLevel2 *event); 00045 00056 int ApplyCut(PamLevel2 *event); 00057 //void OnGood(PamLevel2 *event){cout << "BlindCutCollection::OnGood" << endl;} 00058 //void OnBad(PamLevel2 *event, int selectionResult){cout << "BlndCutCollection::OnBad, SelectionResult=" << selectionResult << endl;} 00059 00060 }; 00061 00062 #endif /* BLINDCUTCOLLECTION_H_ */