Skip to content

Commit d389945

Browse files
committed
update command line help text
1 parent 4cb890c commit d389945

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/picongpu/include/plugins/radiation/Radiation.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,16 +195,16 @@ class Radiation : public ISimulationPlugin
195195
desc.add_options()
196196
((analyzerPrefix + ".period").c_str(), po::value<uint32_t > (&notifyFrequency), "enable analyser [for each n-th step]")
197197
((analyzerPrefix + ".dump").c_str(), po::value<uint32_t > (&dumpPeriod)->default_value(0), "dump integrated radiation from last dumped step [for each n-th step] (0 = only print data at end of simulation)")
198-
((analyzerPrefix + ".lastRadiation").c_str(), po::bool_switch(&lastRad), "enable(1)/disable(0) calculation integrated radiation from last dumped step")
198+
((analyzerPrefix + ".lastRadiation").c_str(), po::bool_switch(&lastRad), "enable calculation of integrated radiation from last dumped step")
199199
((analyzerPrefix + ".folderLastRad").c_str(), po::value<std::string > (&folderLastRad)->default_value("lastRad"), "folder in which the integrated radiation from last dumped step is written")
200-
((analyzerPrefix + ".totalRadiation").c_str(), po::bool_switch(&totalRad), "enable(1)/disable(0) calculation integrated radiation from start of simulation")
200+
((analyzerPrefix + ".totalRadiation").c_str(), po::bool_switch(&totalRad), "enable calculation of integrated radiation from start of simulation")
201201
((analyzerPrefix + ".folderTotalRad").c_str(), po::value<std::string > (&folderTotalRad)->default_value("totalRad"), "folder in which the integrated radiation from start of simulation is written")
202202
((analyzerPrefix + ".start").c_str(), po::value<uint32_t > (&radStart)->default_value(2), "time index when radiation should start with calculation")
203203
((analyzerPrefix + ".end").c_str(), po::value<uint32_t > (&radEnd)->default_value(0), "time index when radiation should end with calculation")
204204
((analyzerPrefix + ".omegaList").c_str(), po::value<std::string > (&pathOmegaList)->default_value("_noPath_"), "path to file containing all frequencies to calculate")
205-
((analyzerPrefix + ".radPerGPU").c_str(), po::bool_switch(&radPerGPU), "enable(1)/disable(0) radiation output from each GPU individually")
205+
((analyzerPrefix + ".radPerGPU").c_str(), po::bool_switch(&radPerGPU), "enable radiation output from each GPU individually")
206206
((analyzerPrefix + ".folderRadPerGPU").c_str(), po::value<std::string > (&folderRadPerGPU)->default_value("radPerGPU"), "folder in which the radiation of each GPU is written")
207-
((analyzerPrefix + ".compression").c_str(), po::bool_switch(&compressionOn), "enable(1)/disable(0) compression of hdf5 output");
207+
((analyzerPrefix + ".compression").c_str(), po::bool_switch(&compressionOn), "enable compression of hdf5 output");
208208
}
209209

210210

0 commit comments

Comments
 (0)