mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
116 lines
2.4 KiB
C++
116 lines
2.4 KiB
C++
#include "SelectedOutput.h"
|
|
|
|
#if defined(PHREEQCI_GUI)
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
#endif
|
|
|
|
SelectedOutput::SelectedOutput(int n, PHRQ_io *io)
|
|
: cxxNumKeyword(io)
|
|
{
|
|
// file_name
|
|
this->Set_file_name(n);
|
|
|
|
// punch_ostream
|
|
this->punch_ostream = NULL;
|
|
|
|
// state vars
|
|
this->active = true;
|
|
this->new_def = false;
|
|
this->user_punch_new_def = false;
|
|
this->have_punch_name = false;
|
|
|
|
// as-is vars
|
|
//
|
|
this->user_punch = true;
|
|
this->high_precision = false;
|
|
this->inverse = true;
|
|
|
|
this->sim = true;
|
|
this->state = true;
|
|
this->soln = true;
|
|
this->dist = true;
|
|
this->time = true;
|
|
|
|
this->step = true;
|
|
this->ph = true;
|
|
this->pe = true;
|
|
this->rxn = false;
|
|
this->temp = false;
|
|
|
|
this->alk = false;
|
|
this->mu = false;
|
|
this->water = false;
|
|
this->charge_balance = false;
|
|
this->percent_error = false;
|
|
this->new_line = true;
|
|
|
|
// as-is set flags
|
|
//
|
|
this->set_user_punch = false;
|
|
this->set_high_precision = false;
|
|
this->set_inverse = false;
|
|
|
|
this->set_sim = false;
|
|
this->set_state = false;
|
|
this->set_soln = false;
|
|
this->set_dist = false;
|
|
this->set_time = false;
|
|
|
|
this->set_step = false;
|
|
this->set_ph = false;
|
|
this->set_pe = false;
|
|
this->set_rxn = false;
|
|
this->set_temp = false;
|
|
|
|
this->set_alk = false;
|
|
this->set_mu = false;
|
|
this->set_water = false;
|
|
this->set_charge_balance = false;
|
|
this->set_percent_error = false;
|
|
this->set_new_line = false;
|
|
}
|
|
|
|
SelectedOutput::~SelectedOutput(void)
|
|
{
|
|
if (this->punch_ostream != NULL)
|
|
{
|
|
delete this->punch_ostream;
|
|
}
|
|
this->punch_ostream = NULL;
|
|
}
|
|
|
|
void
|
|
SelectedOutput::Reset(bool value)
|
|
{
|
|
// as-is vars
|
|
Set_sim(value);
|
|
Set_state(value);
|
|
Set_soln(value);
|
|
Set_dist(value);
|
|
Set_time(value);
|
|
|
|
Set_step(value);
|
|
Set_ph(value);
|
|
Set_pe(value);
|
|
Set_rxn(value);
|
|
Set_temp(value);
|
|
|
|
Set_alk(value);
|
|
Set_mu(value);
|
|
Set_water(value);
|
|
Set_charge_balance(value);
|
|
Set_percent_error(value);
|
|
}
|
|
|
|
void
|
|
SelectedOutput::Set_file_name(int n)
|
|
{
|
|
std::ostringstream os;
|
|
os << "selected_output_" << n << ".sel";
|
|
file_name = os.str();
|
|
}
|