Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2025-04-22 06:27:18

0001 #ifndef FWCore_Framework_CommonParams_h
0002 #define FWCore_Framework_CommonParams_h
0003 
0004 /*----------------------------------------------------------------------
0005 
0006 Class to hold parameters used by the EventProcessor.
0007 
0008 ----------------------------------------------------------------------*/
0009 
0010 namespace edm {
0011 
0012   struct CommonParams {
0013     CommonParams() : maxEventsInput_(), maxLumisInput_(), maxSecondsUntilRampdown_() {}
0014 
0015     CommonParams(int maxEvents, int maxLumis, int maxSecondsUntilRampdown)
0016         : maxEventsInput_(maxEvents), maxLumisInput_(maxLumis), maxSecondsUntilRampdown_(maxSecondsUntilRampdown) {}
0017 
0018     int maxEventsInput_;
0019     int maxLumisInput_;
0020     int maxSecondsUntilRampdown_;
0021   };  // struct CommonParams
0022 }  // namespace edm
0023 
0024 #endif