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 00042 int Check(PamLevel2 *event); 00043 00054 int ApplyCut(PamLevel2 *event); 00055 //void OnGood(PamLevel2 *event){cout << "BlindCutCollection::OnGood" << endl;} 00056 //void OnBad(PamLevel2 *event, int selectionResult){cout << "BlndCutCollection::OnBad, SelectionResult=" << selectionResult << endl;} 00057 00058 }; 00059 00060 #endif /* BLINDCUTCOLLECTION_H_ */