void formatter::PhysicalFmt::adjust_formatter(bool left) {
auto context = this->context_.c_str();
(strcmp(context, "double_w20_f10") == 0)
||(strcmp(context, "energy") == 0)
this->p_formatter_->set_width(20);
this->p_formatter_->set_precision(GlobalV::precision_ener);
this->p_formatter_->set_fillChar(' ');
this->p_formatter_->set_fixed(true);
this->p_formatter_->set_right(!left);