Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:13:10

0001 // -*- C++ -*-
0002 //
0003 // Package:     FWCore/TestProcessor
0004 // Class  :     Run
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/Run.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     Run::Run(std::shared_ptr<RunPrincipal const> iPrincipal, std::string iModuleLabel, std::string iProcessName)
0033         : principal_{std::move(iPrincipal)}, label_{std::move(iModuleLabel)}, processName_{std::move(iProcessName)} {}
0034 
0035     //
0036     // member functions
0037     //
0038 
0039     //
0040     // const member functions
0041     //
0042 
0043     //
0044     // static member functions
0045     //
0046 
0047   }  // namespace test
0048 }  // namespace edm