![]() |
|
|||
File indexing completed on 2024-04-06 12:13:10
0001 // -*- C++ -*- 0002 // 0003 // Package: FWCore/TestProcessor 0004 // Class : Event 0005 // 0006 // Implementation: 0007 // [Notes on implementation] 0008 // 0009 // Original Author: Chris Jones 0010 // Created: Mon, 30 Apr 2018 18:51:33 GMT 0011 // 0012 0013 // system include files 0014 0015 // user include files 0016 #include "FWCore/TestProcessor/interface/Event.h" 0017 0018 namespace edm { 0019 namespace test { 0020 0021 // 0022 // constants, enums and typedefs 0023 // 0024 0025 // 0026 // static data member definitions 0027 // 0028 0029 // 0030 // constructors and destructor 0031 // 0032 Event::Event(EventPrincipal const& iPrincipal, std::string iModuleLabel, std::string iProcessName, bool modulePassed) 0033 : principal_{&iPrincipal}, 0034 label_{std::move(iModuleLabel)}, 0035 processName_{std::move(iProcessName)}, 0036 modulePassed_(modulePassed) {} 0037 0038 // 0039 // member functions 0040 // 0041 0042 // 0043 // const member functions 0044 // 0045 0046 // 0047 // static member functions 0048 // 0049 0050 } // namespace test 0051 } // namespace edm
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |
![]() ![]() |