00001 #ifndef UtilAlgos_NullPostProcessor_h 00002 #define UtilAlgos_NullPostProcessor_h 00003 /* \class helper::NullPostProcessor<OutputCollection> 00004 * 00005 * \author Luca Lista, INFN 00006 */ 00007 namespace helper { 00008 00009 template<typename OutputCollection> 00010 struct NullPostProcessor { 00011 NullPostProcessor( const edm::ParameterSet & ) { } 00012 void init( edm::EDFilter & ) { } 00013 void process( edm::OrphanHandle<OutputCollection>, edm::Event & ) { } 00014 }; 00015 00016 } 00017 00018 #endif