1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "FWCore/ServiceRegistry/interface/ModuleConsumesInfo.h"
namespace edm {
ModuleConsumesInfo::ModuleConsumesInfo(TypeID const& iType,
char const* iLabel,
char const* iInstance,
char const* iProcess,
BranchType iBranchType,
KindOfType iKindOfType,
bool iAlwaysGets,
bool iSkipCurrentProcess_)
: type_(iType),
label_(iLabel),
instance_(iInstance),
process_(iProcess),
branchType_(iBranchType),
kindOfType_(iKindOfType),
alwaysGets_(iAlwaysGets),
skipCurrentProcess_(iSkipCurrentProcess_) {}
} // namespace edm
|