Simpatico  v1.10
generatorFactory.h
1 #ifndef MCMD_GENERATOR_FACTORY_H
2 #define MCMD_GENERATOR_FACTORY_H
3 
4 /*
5 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
6 *
7 * Copyright 2010 - 2017, The Regents of the University of Minnesota
8 * Distributed under the terms of the GNU General Public License.
9 */
10 
11 namespace Simp
12 {
13  class Species;
14 }
15 
16 namespace McMd
17 {
18 
19  class Generator;
20  class McSystem;
21  class MdSystem;
22 
23  using namespace Simp;
24 
36  Generator* generatorFactory(Species& species, McSystem& system);
37 
49  Generator* generatorFactory(Species& species, MdSystem& system);
50 
51 }
52 #endif
Classes used by all simpatico molecular simulations.
Generator * generatorFactory(Species &species, McSystem &system)
Instantiates generator for on species in an McSystem.
Single-processor Monte Carlo (MC) and molecular dynamics (MD).
A Species represents a set of chemically similar molecules.