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
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 };
0022 }
0023
0024 #endif