/* * NoThermostat.cpp * * Created on: Aug 20, 2010 * Author: crueger */ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "CodePatterns/MemDebug.hpp" #include "NoThermostat.hpp" NoThermostat::NoThermostat() {} NoThermostat::~NoThermostat() {} const char *ThermostatTraits::name = "None"; std::string ThermostatTraits::getName(){ return ThermostatTraits::name; } Thermostat *ThermostatTraits::make(class ConfigFileBuffer * const fb){ return new NoThermostat(); } double NoThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::list) atoms){ return 0; } double NoThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::vector) atoms){ return 0; } double NoThermostat::scaleAtoms(unsigned int step,double ActualTemp,ATOMSET(std::set) atoms){ return 0; } std::string NoThermostat::name(){ return ThermostatTraits::name; } std::string NoThermostat::writeParams(){ return ""; }