00001 #ifndef FORIA_DUMMYTRIGGERSELECTION_HH 00002 #define FORIA_DUMMYTRIGGERSELECTION_HH 00003 00004 #include "ForIA/AnalysisTools/ITriggerSelection.hh" 00005 00006 namespace ForIA{ 00007 00008 class DummyTriggerSelection: public ITriggerSelection{ 00009 00010 public: 00011 00012 bool passesEvent(const Event &evt){ 00013 return true; 00014 } 00015 00016 }; 00017 } 00018 00019 #endif