Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-03-17 11:10:16

0001 #ifndef IOMC_RandomEngine_cloneEngine_h
0002 #define IOMC_RandomEngine_cloneEngine_h
0003 // -*- C++ -*-
0004 //
0005 // Package:     IOMC/RandomEngine
0006 // Class  :     cloneEngine
0007 //
0008 /**\function cloneEngine cloneEngine.h "IOMC/RandomEngine/interface/cloneEngine.h"
0009 
0010  Description: Function used to clone a random number engine
0011 
0012  Usage:
0013     <usage>
0014 
0015 */
0016 //
0017 // Original Author:  Christopher Jones
0018 //         Created:  Fri, 02 Dec 2022 19:32:10 GMT
0019 //
0020 #include <memory>
0021 
0022 namespace CLHEP {
0023   class HepRandomEngine;
0024 }
0025 
0026 namespace edm {
0027   std::unique_ptr<CLHEP::HepRandomEngine> cloneEngine(CLHEP::HepRandomEngine const&);
0028 };
0029 
0030 #endif