⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 h5diagg.cpp

📁 pic 模拟程序!面向对象
💻 CPP
字号:
//h5diagg.cpp#include "h5diagg.h"     //=================== DiagParams ClassH5DiagParams::H5DiagParams()              : ParameterGroup(){  name = "H5Diagnostics";      VarName.setNameAndDescription("VarName",  "Name of Variable to be plotted");  VarName.setValue("NULL");  parameterList.add(&VarName);    dumpPeriod.setNameAndDescription("dumpPeriod",  "Period of diagnostic dump.");  dumpPeriod.setValue("0");  // value of zero => dump at same times as dump file  parameterList.add(&dumpPeriod);    fileName.setNameAndDescription("fileName",  "Name of diagnostic HDF5 dump file.");  fileName.setValue("Diagnostics");  // will later set this to be <inputfilebase>.h5  parameterList.add(&fileName);  };

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -