00001 #ifndef FWCore_Framework_OutputModuleDescription_h 00002 #define FWCore_Framework_OutputModuleDescription_h 00003 00004 /*---------------------------------------------------------------------- 00005 00006 OutputModuleDescription : the stuff that is needed to configure an 00007 output module that does not come in through the ParameterSet 00008 00009 $Id: OutputModuleDescription.h,v 1.2 2008/02/21 22:47:51 wdd Exp $ 00010 ----------------------------------------------------------------------*/ 00011 namespace edm { 00012 00013 struct OutputModuleDescription { 00014 OutputModuleDescription() : maxEvents_(-1) {} 00015 OutputModuleDescription(int maxEvents) : 00016 maxEvents_(maxEvents) 00017 {} 00018 int maxEvents_; 00019 }; 00020 } 00021 00022 #endif