Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
EngineFactory.h
이 파일의 문서화 페이지로 가기
1 // $Id:$
2 // -*- C++ -*-
3 //
4 // -----------------------------------------------------------------------
5 // HEP Random
6 // --- EngineFactory ---
7 // class header file
8 // -----------------------------------------------------------------------
9 
10 // Class generating new engines from streamed saves.
11 
12 // =======================================================================
13 // M Fischler - Created: 12/21/04
14 // =======================================================================
15 
16 #ifndef EngineFactory_h
17 #define EngineFactory_h 1
18 
20 
21 namespace CLHEP {
22 
24 public:
25  static HepRandomEngine* newEngine(std::istream & is);
26  static HepRandomEngine* newEngine(std::vector<unsigned long> const & v);
27 };
28 
29 } // namespace CLHEP
30 
31 #endif
32 
static HepRandomEngine * newEngine(std::istream &is)