1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// -*- C++ -*-
//
// Package: FWCore/TestProcessor
// Class : LuminosityBlock
//
// Implementation:
// [Notes on implementation]
//
// Original Author: Chris Jones
// Created: Mon, 30 Apr 2018 18:51:33 GMT
//
#include "FWCore/TestProcessor/interface/LuminosityBlock.h"
namespace edm {
namespace test {
LuminosityBlock::LuminosityBlock(std::shared_ptr<LuminosityBlockPrincipal const> iPrincipal,
std::string iModuleLabel,
std::string iProcessName)
: principal_{std::move(iPrincipal)}, label_{std::move(iModuleLabel)}, processName_{std::move(iProcessName)} {}
} // namespace test
} // namespace edm
|