CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CommonParams.h
Go to the documentation of this file.
1 #ifndef FWCore_Framework_CommonParams_h
2 #define FWCore_Framework_CommonParams_h
3 
4 /*----------------------------------------------------------------------
5 
6 Class to hold parameters used by the EventProcessor and also by subprocesses.
7 
8 ----------------------------------------------------------------------*/
9 
10 namespace edm {
11  //------------------------------------------------------------------
12  //
13 
14  struct CommonParams {
17  maxLumisInput_() {
18  }
19 
21  int maxLumis) :
22  maxEventsInput_(maxEvents),
23  maxLumisInput_(maxLumis) {
24  }
25 
28  }; // struct CommonParams
29 }
30 
31 #endif
CommonParams(int maxEvents, int maxLumis)
Definition: CommonParams.h:20