Simpatico  v1.10
tools/config/ConfigWriter.cpp
1 /*
2 * Simpatico - Simulation Package for Polymeric and Molecular Liquids
3 *
4 * Copyright 2010 - 2017, The Regents of the University of Minnesota
5 * Distributed under the terms of the GNU General Public License.
6 */
7 
8 #include "ConfigWriter.h"
9 
10 namespace Tools
11 {
12 
13  using namespace Util;
14 
15  /*
16  * Constructor.
17  */
19  : configurationPtr_(0)
20  { setClassName("ConfigWriter"); }
21 
22  /*
23  * Constructor.
24  */
26  : configurationPtr_(&configuration),
27  needsAuxiliaryFile_(needsAuxiliaryFile)
28  { setClassName("ConfigWriter"); }
29 
30  /*
31  * Destructor.
32  */
34  {}
35 
36 }
An instantaneous molecular dynamics configuration.
Definition: Configuration.h:40
virtual ~ConfigWriter()
Destructor.
Utility classes for scientific computation.
Definition: accumulators.mod:1
Single-processor classes for pre- and post-processing MD trajectories.
bool needsAuxiliaryFile() const
Return true if an auxiliary file is needed.
void setClassName(const char *className)
Set class name string.
ConfigWriter()
Default constructor.