blob: 8d88b1794b0710a18050685d9655f772da15fa95 [file] [log] [blame]
/*
* TTS.hh
*
* Created on: Feb 2, 2012
* Author: cferenba
*
* Copyright (c) 2012, Los Alamos National Security, LLC.
* All rights reserved.
* Use of this source code is governed by a BSD-style open-source
* license; see top-level LICENSE file for full license text.
*/
#ifndef TTS_HH_
#define TTS_HH_
#include "Vec2.hh"
// forward declarations
class InputFile;
class Hydro;
class TTS {
public:
// parent hydro object
Hydro* hydro;
double alfa; // alpha coefficient for TTS model
double ssmin; // minimum sound speed
TTS(const InputFile* inp, Hydro* h);
~TTS();
}; // class TTS
#endif /* TTS_HH_ */